1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 06:57:53 +00:00
Files
matomo/plugins/Marketplace/templates/subscription-overview.twig
dizzy 309332f211 [Vue] remove angularjs from marketplace (#19416)
* start removing angularjs from Marketplace plugin

* finish removing angularjs from marketplace and some twig templates in CorePluginsAdmin

* built vue files

* fixing UI tests locally

* add missing translations

* couple small UI test fixes

* move UploadPluginDialog to CorePluginsAdmin so it will be available when internet access is not available and the Marketplace plugin is deactivated

* revert last tweak

* styling tweak

* Allow composer plugins for dev dependency codesniffer to fix travis builds.

* styling tweaks

* comma spacing tweak

* update screenshots + fix v-show condition

* remove duplicate tokens

* remove use of unneeded twig escape filter html_attr

* apply review feedback + fix some other issues found while testing quickly

* updates expected test files

Co-authored-by: sgiehl <stefan@matomo.org>
2022-08-16 12:03:54 +02:00

17 خطوط
543 B
Twig

{% extends mode is defined and mode == 'user' ? "user.twig" : "admin.twig" %}
{% import '@Marketplace/macros.twig' as marketplaceMacro %}
{% set title %}{{ 'Marketplace_Marketplace'|translate }}{% endset %}
{% block content %}
<div
vue-entry="Marketplace.SubscriptionOverview"
login-url="{{ loginUrl|json_encode }}"
num-users="{{ numUsers|json_encode }}"
has-license-key="{{ hasLicenseKey|default(false)|json_encode }}"
subscriptions="{{ subscriptions|json_encode }}"
></div>
{% endblock %}