mirror of
https://github.com/Damillora/Altessimo
synced 2024-11-22 13:57:31 +00:00
9 lines
267 B
HTML
9 lines
267 B
HTML
|
{% extends 'layouts/base.html' %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>[{{ branch.acronym }}] {{ branch.name }}</h1>
|
||
|
<h2>Description</h2>
|
||
|
<p>{{ branch.description }}</p>
|
||
|
<h2>Songs</h2>
|
||
|
{% include 'components/song-table.html' with songs=songs %}
|
||
|
{% endblock %}
|