Work listing page
Add a page to list works.
In this section
Work listing view
from django.views.generic import ListView
from .models import Work
class WorkListView(ListView):
model = Work<html>
<head><title>All my works</title></head>
<body>
<h1>Cape Town By-laws</h1>
<table>
{% for work in work_list %}
<tr>
<td>{{ work.title }}</td>
<td>{{ work.frbr_uri }}</td>
</tr>
{% endfor %}
</table>
</body>Linking to an expression
Last updated