27 lines
727 B
HTML
27 lines
727 B
HTML
{% load i18n sizeformat %}
|
|
{% load url from future %}
|
|
|
|
<h3>{% trans "Plugin" %}</h3>
|
|
|
|
<div class="status row-fluid detail">
|
|
<h4>{% trans "Overview" %}</h4>
|
|
<hr class="header_rule">
|
|
<dl>
|
|
<dt>{% trans "Name" %}</dt>
|
|
<dd>{{plugin.name}}</dd>
|
|
<dt>{% trans "Version" %}</dt>
|
|
<dd>{{plugin.version}}</dd>
|
|
<dt>{% trans "uuid" %}</dt>
|
|
<dd>{{plugin.uuid}}</dd>
|
|
<dt>{% trans "Description" %}</dt>
|
|
<dd>{{plugin.description}}</dd>
|
|
<dt>{% trans "Subscribed events" %}</dt>
|
|
{% for event in plugin.subscribed_events %}
|
|
<dd>{{event}}</dd>
|
|
{% endfor %}
|
|
<dt>{% trans "Task methods" %}</dt>
|
|
{% for method in plugin.methods %}
|
|
<dd>{{method}}</dd>
|
|
{% endfor %}
|
|
</dl>
|
|
</div> |