mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-23 13:11:04 -05:00
19 lines
428 B
HTML
19 lines
428 B
HTML
{% extends "admin/index.html" %}
|
|
|
|
{% block sidebar %}
|
|
{{ block.super }}
|
|
|
|
{% if custom_list %}
|
|
<div class="module" style="float: left; width: 498px">
|
|
<table style="width: 100%">
|
|
<caption>Djrill</caption>
|
|
<tbody>
|
|
{% for path, name in custom_list %}
|
|
<tr><td><a href="{{ path }}">{{ name }}</a></td></tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|