You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
916 B

{% extends 'base.html' %}
{% block title %}Menus{% endblock %}
{% block header %}<h1>Menus</h1>{% endblock %}
{% block content %}
<table class="menu-list">
<tr>
<td colspan="99" class="centered-td">
<a class="btn" href="{% url 'mensaviewer:menu_create' %}">Add Menu</a>
</td>
</tr>
<tr>
<th>Name</th>
<th>Location</th>
<th>Day</th>
<th>Edit</th>
<th>Delete</th>
</tr>
{% for menu in object_list %}
<tr>
<td><a href="{% url 'mensaviewer:menu_detail' menu.pk %}">{{ menu.name }}</a></td>
<td><a href="{% url 'mensaviewer:location_detail' menu.location.pk %}">{{ menu.location.name }}</a></td>
<td>{{ menu.day }}</td>
<td class="fit-width"><a href="{% url 'mensaviewer:menu_update' menu.pk %}">Edit</a></td>
<td class="fit-width"><a href="{% url 'mensaviewer:menu_delete' menu.pk %}">Delete</a></td>
</tr>
{% endfor %}
</table>
{% endblock %}