Anthony Michon 8c62c71c2b Initial commit
Change-Id: Ifb776811eb67fa60e85bbb06d0e4496cda4dda6d
2015-05-11 14:57:13 +02:00

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>