قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 06:57:53 +00:00

* 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>
17 خطوط
543 B
Twig
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 %}
|