18 lines
585 B
HTML
18 lines
585 B
HTML
{% extends "databrowse/base.html" %}
|
|
|
|
{% block title %}Browsable fields in {{ model.verbose_name_plural|escape }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div id="breadcrumbs"><a href="{{ root_url }}">Home</a> / <a href="{{ model.url }}">{{ model.verbose_name_plural|capfirst }}</a> / Fields</div>
|
|
|
|
<h1>Browsable fields in {{ model.verbose_name_plural }}</h1>
|
|
|
|
<ul class="objectlist">
|
|
{% for field in field_list %}
|
|
<li class="{% cycle odd,even %}"><a href="{{ field.name }}/">{{ model.verbose_name_plural|capfirst }} by {{ field.verbose_name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %}
|