Skip to content
Snippets Groups Projects
Commit a45f52fe authored by Jacek Lebioda's avatar Jacek Lebioda
Browse files

Corrected field names

parent c1b7f5b5
No related branches found
No related tags found
No related merge requests found
......@@ -94,13 +94,13 @@
{% for app in loApp %}
<tr>
<td>{{ forloop.counter }}</td>
<td>{{ app.appointmentType }}</td>
<td>{{ app.appDateTime | date:"d-M-Y" }}</td>
<td>{{ app.appDateTime | time:"H:i" }}</td>
<td>{{ app.appLength }}</td>
<td>{{ app.appointment_type }}</td>
<td>{{ app.datetime_when | date:"d-M-Y" }}</td>
<td>{{ app.datetime_when | time:"H:i" }}</td>
<td>{{ app.length }}</td>
<td>
{% if app.flyingTeam %}{{ app.workerAssigned.first_name }} {{app.workerAssigned.last_name}}
{% else %} {{ app.flyingTeam }}
{% if app.flying_team %}{{ app.worker_assigned.first_name }} {{app.worker_assigned.last_name}}
{% else %} {{ app.flying_team }}
{% endif %}
</td>
<td> <a href="" type="button" class="btn btn-block btn-default">TODO</a> </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