arrowcounter/counter/templates/counter/list.html

40 lines
854 B
HTML

{% extends "base.html" %}
{% block title %}Counts{% endblock %}
{% block content %}
<h1 class="center">Counts</h1>
<table class="centered">
<thead>
<tr>
<th>Date</th>
<th>Arrow count</th>
<th>Edit</th>
</tr>
</thead>
<tbody>
{% for c in counts %}
<tr>
<td>{{ c.date|date }}</td>
<td>{{ c.count }}</td>
<td>
<a href="{% url "count_edit" c.id %}" class="btn waves-effect waves-light">
Edit<i class="material-icons right">edit</i>
</a>
</td>
</tr>
{% empty %}
<tr>
<td colspan="2">No counts saved</td>
</tr>
{% endfor %}
</tbody>
</table>
<div class="fixed-action-btn">
<a class="btn-floating btn-large waves-effect waves-light red"
href="{% url "count_new" %}">
<i class="material-icons">add</i>
</a>
</div>
{% endblock %}