2020-12-17 00:36:29 +07:00
|
|
|
{% extends 'layouts/base.html' %}
|
|
|
|
|
|
|
|
{% block title %}Branches{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Branches</h1>
|
2020-12-17 14:12:26 +07:00
|
|
|
{% for branch in branches %}
|
|
|
|
<div class="row song-row branch-{{ branch.acronym }}">
|
|
|
|
<div class="col col-md-3">
|
|
|
|
{% if branch.logo %}
|
|
|
|
<img src="{{ branch.logo.url }}" class="img-fluid">
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="col col-md-9">
|
|
|
|
<div class="row h-100 align-items-center">
|
|
|
|
<p class="h2"><a href="/taxonomy/branches/{{ branch.acronym }}">{{ branch.name }} [{{ branch.acronym }}]</a></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2020-12-17 00:36:29 +07:00
|
|
|
{% endblock %}
|