2018-11-26 21:09:04 +00:00
|
|
|
{% extends "administration/base.html" %}
|
2018-11-16 08:10:35 +00:00
|
|
|
|
|
|
|
{% load i18n %}
|
2018-11-26 21:09:04 +00:00
|
|
|
{% load utils %}
|
2018-12-26 16:17:24 +00:00
|
|
|
{% load admin_reflection %}
|
2018-11-16 08:10:35 +00:00
|
|
|
|
2018-11-26 21:09:04 +00:00
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
2018-11-26 21:29:59 +00:00
|
|
|
<h1>{% trans "Sources" %}</h1>
|
2018-11-26 21:09:04 +00:00
|
|
|
<div class="dropdown">
|
|
|
|
<button class="btn btn-primary dropdown-toggle" type="button" id="createDropdown" data-toggle="dropdown">
|
|
|
|
{% trans 'Create...' %}
|
|
|
|
<span class="caret"></span>
|
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu" role="menu" aria-labelledby="createDropdown">
|
|
|
|
{% for type, name in types.items %}
|
|
|
|
<li role="presentation"><a role="menuitem" tabindex="-1" href="{% url 'passbook_admin:source-create' %}?type={{ type }}">{{ name }}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<table class="table table-striped table-bordered">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{% trans 'Name' %}</th>
|
|
|
|
<th>{% trans 'Class' %}</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for source in object_list %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ source.name }}</td>
|
2018-11-30 14:50:45 +00:00
|
|
|
<td>{{ source|fieldtype }}</td>
|
|
|
|
<td>
|
|
|
|
<a class="btn btn-default btn-sm" href="{% url 'passbook_admin:source-update' pk=source.uuid %}?back={{ request.get_full_path }}">{% trans 'Edit' %}</a>
|
|
|
|
<a class="btn btn-default btn-sm" href="{% url 'passbook_admin:source-delete' pk=source.uuid %}?back={{ request.get_full_path }}">{% trans 'Delete' %}</a>
|
2018-12-26 16:17:24 +00:00
|
|
|
{% get_links source as links %}
|
|
|
|
{% for name, href in links %}
|
|
|
|
<a class="btn btn-default btn-sm" href="{{ href }}?back={{ request.get_full_path }}">{% trans name %}</a>
|
|
|
|
{% endfor %}
|
2018-11-30 14:50:45 +00:00
|
|
|
</td>
|
2018-11-26 21:09:04 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2018-11-16 08:10:35 +00:00
|
|
|
</div>
|
2018-12-18 12:27:01 +00:00
|
|
|
{% endblock %}
|