fee983045b
Fix some other tests by the way.
21 lines
489 B
HTML
21 lines
489 B
HTML
{% extends 'base.html' %}
|
||
|
||
{% load i18n %}
|
||
|
||
{% block title %}{% trans 'Version' %} – {{ block.super }}{% endblock %}
|
||
|
||
{% block content %}
|
||
<h1>{% trans 'Version' %}</h1>
|
||
<ul>
|
||
{% for module in modules %}
|
||
<li>
|
||
{{ module.verbose_name }}
|
||
{% if module.description %}
|
||
({{ module.description }})
|
||
{% endif %}
|
||
– {% trans 'Version' %} {{ module.version }}
|
||
</li>
|
||
{% endfor %}
|
||
</ul>
|
||
{% endblock %}
|