mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-08-24 05:05:39 +01:00
40 lines
984 B
HTML
40 lines
984 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item active" aria-current="page">Activity Series</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
<h1>Activity Series</h1>
|
|
|
|
<hr>
|
|
|
|
<table class="table table-borderless">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{% for activity_series in activity_series_list.all %}
|
|
<tr>
|
|
<td>{{ activity_series }}</td>
|
|
<td>
|
|
<a class="btn btn-sm btn-info"
|
|
href="{% url 'activities:activity-series.detail' pk=activity_series.pk %}">Details</a>
|
|
</td>
|
|
</tr>
|
|
|
|
{% empty %}
|
|
<tr>
|
|
<td>No records</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% endblock %}
|