youyesyet/resources/templates/auto/list-followupactions-Followupactions.html

104 lines
2 KiB
HTML

{% extends "base.html" %}
<!-- File list-followupactions-Followupactions.html generated 2018-07-03T23:08:20.078Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block content %}
<form id='content' class='list'>
<div class='big-link-container'>
<a href='form-followupactions-Followupaction'>
Add a new Followupaction
</a>
</div>
<table caption='followupactions'>
<thead>
<tr>
<th>
id
</th>
<th>
request_id
</th>
<th>
actor
</th>
<th>
date
</th>
<th>
notes
</th>
<th>
closed
</th>
</tr>
<tr>
<th>
<input id='id' type='text' name='id' value='{{ params.id }}'/>
</th>
<th>
<input id='request_id_expanded' type='text' name='request_id_expanded' value='{{ params.request_id_expanded }}'/>
</th>
<th>
<input id='actor_expanded' type='text' name='actor_expanded' value='{{ params.actor_expanded }}'/>
</th>
<th>
<input id='date' type='date' name='date' value='{{ params.date }}'/>
</th>
<th>
<input id='notes' type='text' name='notes' value='{{ params.notes }}'/>
</th>
<th>
<input id='closed' type='text' name='closed' value='{{ params.closed }}'/>
</th>
<th>
<input type='submit' id='search' value='Search'/>
</th>
</tr>
</thead>
<tbody>
{% for record in records %}
<tr>
<td>
{{ record.id }}
</td>
<td>
<a href='form-followuprequests-Followuprequest?id={{ record.request_id }}'>
{{ record.request_id_expanded }}
</a>
</td>
<td>
<a href='form-canvassers-Canvasser?id={{ record.actor }}'>
{{ record.actor_expanded }}
</a>
</td>
<td>
{{ record.date }}
</td>
<td>
{{ record.notes }}
</td>
<td>
{{ record.closed }}
</td>
<td>
<a href='form-followupactions-Followupaction?id={{ record.id }}'>
View
</a>
</td>
</tr>
{% endfor %}
</tbody>
<tfoot>
<div class='back-link-container'>
<input id='page' name='page' disabled='{% ifequal offset 0 %} false {% else %} true {% endifequal %}' value='Previous'/>
</div>
<div class='big-link-container'>
<input id='page' name='page' disabled='false' value='Next'/>
</div>
</tfoot>
</table>
</form>
{% endblock %}