Skip to content
Snippets Groups Projects
Commit 3c3e9265 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

list of subjects contains info about resigned and dead arg

parent 52b83530
No related branches found
No related tags found
1 merge request!1Appointments dev
......@@ -347,7 +347,7 @@ desired effect
{% block footer %}
<!-- To the right -->
<div class="pull-right hidden-xs">
Version: <strong>preview 0.1.1</strong> (20 Feb 2017)
Version: <strong>preview 0.1.2</strong> (1 Mar 2017)
</div>
<!-- Default to the left -->
......
......@@ -37,9 +37,10 @@
<th>Country</th>
<th data-sorter="false" data-filter="false">Languages</th>
<th class="filter-select filter-exact" data-placeholder="Select location">Default location</th>
<th>Dead</th>
<th>Resigned</th>
<th>Details</th>
<th>Edit</th>
<th>Delete</th>
</tr>
</thead>
......@@ -61,9 +62,10 @@
{% endautoescape %}
</td>
<td>{{ subject.get_default_appointment_location_display }}</td>
<td>{% if subject.dead %} YES {% else %} NO {% endif %} </td>
<td>{% if subject.resigned %} YES {% else %} NO {% endif %} </td>
<td><a href="{% url 'web.views.subject_details' subject.id %}" type="button" class="btn btn-block btn-default">Details</a></td>
<td><a href="{% url 'web.views.subject_edit' subject.id %}" type="button" class="btn btn-block btn-default">Edit</a></td>
<td><a href="{% url 'web.views.subject_delete' subject.id %}" type="button" class="btn btn-block btn-default">Delete</a></td>
</tr>
{% endfor %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment