mirror of
https://github.com/Damillora/Altessimo
synced 2024-11-22 13:57:31 +00:00
26 lines
720 B
HTML
26 lines
720 B
HTML
{% extends 'layouts/base.html' %}
|
|
|
|
{% block title %}Branches{% endblock %}
|
|
{% block content %}
|
|
<h1>Branches</h1>
|
|
<table class="table">
|
|
<thead>
|
|
<th>Acronym</th>
|
|
<th>Logo</th>
|
|
<th>Name</th>
|
|
</thead>
|
|
<tbody>
|
|
{% for branch in branches %}
|
|
<tr>
|
|
<td>{{ branch.acronym }}</td>
|
|
<td>
|
|
{% if branch.logo %}
|
|
<img src="{{ branch.logo.path }}" width=24>
|
|
{% endif %}
|
|
</td>
|
|
<td><a href="/taxonomy/branches/{{ branch.acronym }}">{{ branch.name }} [{{ branch.acronym }}]</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %} |