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

change for list of approaching appointments

it contains subject name, type of appointment, date
parent 7f67e061
No related branches found
No related tags found
1 merge request!1Appointments dev
...@@ -66,10 +66,9 @@ ...@@ -66,10 +66,9 @@
<table id="approaching_table" class="table table-bordered table-striped"> <table id="approaching_table" class="table table-bordered table-striped">
<thead> <thead>
<tr> <tr>
<th>Subject name</th> <th>Subject</th>
<th>Full information</th> <th>Type</th>
<th>Date</th> <th>Date</th>
<th>Time</th>
<th>Details</th> <th>Details</th>
</tr> </tr>
</thead> </thead>
...@@ -78,13 +77,18 @@ ...@@ -78,13 +77,18 @@
{% for approach in approaching_list %} {% for approach in approaching_list %}
<tr> <tr>
<td> <td>
{{ approach.visit.subject.first_name }} {{ approach.visit.subject.last_name }} {% if approach.visit.subject.screening_number == "---" %}
N/A
{% else %}
{{ approach.visit.subject.first_name }} {{ approach.visit.subject.last_name }}
{% endif %}
</td> </td>
<td> <td>
<a href="{% url 'web.views.subject_details' approach.visit.subject.id %}" type="button" class="btn btn-block btn-default">Subject's details</a> {% for type in approach.appointment_types.all %}
</td> {{ type.code }},
<td>{{ approach.datetime_when | date:"d-M-Y" }}</td> {% endfor %}
<td>{{ approach.datetime_when | time:"H:i" }}</td> </td>
<td>{{ approach.datetime_when | date:"d-M-Y H:i" }}</td>
<td> <td>
<a href="{% url 'web.views.appointment_details' approach.id %}" type="button" class="btn btn-block btn-default">Details</a> <a href="{% url 'web.views.appointment_details' approach.id %}" type="button" class="btn btn-block btn-default">Details</a>
</td> </td>
......
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