forked from CGM_Public/pretix_original
* Show links to plugin views and settings in plugin list and in success message after activating a plugin * Fix menu highlighting in payment provider settings * Specify settings_links and navigation_links for built-in plugins * Add link to payment plugins from payment settings * Add client-side search and "View only active plugins" for plugins page
137 lines
9.1 KiB
HTML
137 lines
9.1 KiB
HTML
{% extends "pretixcontrol/event/settings_base.html" %}
|
||
{% load i18n %}
|
||
{% load static %}
|
||
{% load bootstrap3 %}
|
||
{% block inside %}
|
||
<h1>{% trans "Available plugins" %}</h1>
|
||
<p>
|
||
{% blocktrans trimmed %}
|
||
On this page, you can choose plugins you want to enable for your event. Plugins might bring additional
|
||
software functionality, connect your event to third-party services, or apply other forms of customizations.
|
||
{% endblocktrans %}
|
||
</p>
|
||
{% if "success" in request.GET %}
|
||
<div class="alert alert-success">
|
||
{% trans "Your changes have been saved." %}
|
||
</div>
|
||
{% endif %}
|
||
<div class="row">
|
||
<div class="col-lg-10">
|
||
<p><input type="search" id="plugin_search_input" class="form-control" placeholder="{% trans "Search" %}"></p>
|
||
</div>
|
||
<div class="col-lg-2 text-right">
|
||
<p class="btn-group btn-group-flex" data-toggle="buttons">
|
||
<label class="btn btn-primary-if-active active"><input type="radio" name="plugin_state_filter" value="all" checked> {% trans "All" %}</label>
|
||
<label class="btn btn-primary-if-active"><input type="radio" name="plugin_state_filter" value="active"> {% trans "Active" %}</label>
|
||
</p>
|
||
</div>
|
||
</div>
|
||
<form action="" method="post" class="form-horizontal form-plugins">
|
||
{% csrf_token %}
|
||
<div id="plugin_search_results" class="panel panel-default collapse">
|
||
<div class="panel-heading">
|
||
<button type="button" class="close" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||
{% trans "Search results" %}
|
||
</div>
|
||
<div class="panel-body">
|
||
<div class="plugin-list"></div>
|
||
</div>
|
||
</div>
|
||
<div id="plugin_tabs"><div class="tabbed-form">
|
||
{% for cat, catlabel, plist, has_pictures in plugins %}
|
||
<fieldset data-plugin-category="{{ cat }}" data-plugin-category-label="{{ catlabel }}">
|
||
<legend>{{ catlabel }}</legend>
|
||
<div class="plugin-list">
|
||
{% for plugin, is_active, settings_links, navigation_links in plist %}
|
||
<div class="plugin-container {% if plugin.featured %}featured-plugin{% endif %}" id="plugin_{{ plugin.module }}" data-plugin-module="{{ plugin.module }}" data-plugin-name="{{ plugin.name }}">
|
||
{% if plugin.featured %}
|
||
<div class="panel panel-default">
|
||
<div class="panel-body">
|
||
{% endif %}
|
||
<div class="plugin-text">
|
||
{% if plugin.featured or plugin.experimental %}
|
||
<p class="text-muted">
|
||
{% if plugin.featured %}
|
||
<span class="fa fa-thumbs-up" aria-hidden="true"></span>
|
||
{% trans "Top recommendation" %}
|
||
{% endif %}
|
||
{% if plugin.experimental %}
|
||
<span class="fa fa-flask" aria-hidden="true"></span>
|
||
{% trans "Experimental feature" %}
|
||
{% endif %}
|
||
</p>
|
||
{% endif %}
|
||
{% if plugin.picture %}
|
||
<p><img src="{% static plugin.picture %}" class="plugin-picture"></p>
|
||
{% endif %}
|
||
<h4>
|
||
{{ plugin.name }}
|
||
{% if show_meta %}
|
||
<span class="text-muted text-sm">{{ plugin.version }}</span>
|
||
{% endif %}
|
||
{% if is_active %}
|
||
<span class="label label-success" data-is-active>
|
||
<span class="fa fa-check" aria-hidden="true"></span>
|
||
{% trans "Active" %}
|
||
</span>
|
||
{% endif %}
|
||
</h4>
|
||
{% include "pretixcontrol/event/fragment_plugin_description.html" with plugin=plugin %}
|
||
</div>
|
||
{% if plugin.app.compatibility_errors %}
|
||
<div class="plugin-action">
|
||
<span class="text-muted">{% trans "Incompatible" %}</span>
|
||
</div>
|
||
{% elif plugin.restricted and plugin.module not in request.event.settings.allowed_restricted_plugins %}
|
||
<div class="plugin-action">
|
||
<span class="text-muted">{% trans "Not available" %}</span>
|
||
</div>
|
||
{% elif is_active %}
|
||
<div class="plugin-action flip">
|
||
{% if navigation_links %}
|
||
<div class="btn-group">
|
||
<button type="button" class="btn btn-default dropdown-toggle{% if plugin.featured %} btn-lg{% endif %}" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" title="{% trans "Open plugin settings" %}">
|
||
<span class="fa fa-compass"></span> {% trans "Go to" %} <span class="caret"></span>
|
||
</button>
|
||
<ul class="dropdown-menu">
|
||
{% for link in navigation_links %}
|
||
<li><a href="{{ link.0 }}">{{ link.1 }}</a></li>
|
||
{% endfor %}
|
||
</ul>
|
||
</div>
|
||
{% endif %}
|
||
{% if settings_links %}
|
||
<div class="btn-group">
|
||
<button type="button" class="btn btn-default dropdown-toggle{% if plugin.featured %} btn-lg{% endif %}" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" title="{% trans "Open plugin settings" %}">
|
||
<span class="fa fa-cog"></span> {% trans "Settings" %} <span class="caret"></span>
|
||
</button>
|
||
<ul class="dropdown-menu">
|
||
{% for link in settings_links %}
|
||
<li><a href="{{ link.0 }}">{{ link.1 }}</a></li>
|
||
{% endfor %}
|
||
</ul>
|
||
</div>
|
||
{% endif %}
|
||
<button class="btn btn-default{% if plugin.featured %} btn-lg{% endif %}" name="plugin:{{ plugin.module }}"
|
||
value="disable">{% trans "Disable" %}</button>
|
||
</div>
|
||
{% else %}
|
||
<div class="plugin-action flip">
|
||
<button class="btn btn-primary{% if plugin.featured %} btn-lg{% endif %}" name="plugin:{{ plugin.module }}"
|
||
value="enable">{% trans "Enable" %}</button>
|
||
</div>
|
||
{% endif %}
|
||
{% if plugin.featured %}
|
||
</div>
|
||
</div>
|
||
{% endif %}
|
||
</div>
|
||
{% endfor %}
|
||
</div>
|
||
</fieldset>
|
||
{% endfor %}
|
||
</div></div>
|
||
</form>
|
||
<script type="text/javascript" src="{% static "pretixcontrol/js/ui/plugins.js" %}"></script>
|
||
{% endblock %}
|