Changeset 587bb95 for remit/remit_templates
- Timestamp:
- Feb 3, 2010, 3:36:28 PM (15 years ago)
- Branches:
- master, client
- Children:
- 84b3640
- Parents:
- e2f2aa9
- git-author:
- Alex Dehnert <adehnert@…> (02/03/10 15:36:28)
- git-committer:
- Alex Dehnert <adehnert@…> (02/03/10 15:36:28)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
remit/remit_templates/vouchers/ReimbursementRequest_review.html
rdb191ee r587bb95 1 1 {% extends "base.html" %} 2 {% load misc %} 2 3 3 4 {% block title %}Review reimbursement request for "{{ rr.name }}"{% endblock %} … … 47 48 </tr> 48 49 <tr> 49 <th>Approval Time</th>50 <td>{{ rr.approval_time}}</td>50 <th>Approval Status (Time)</th> 51 <td>{{ rr.approval_status|approval_status }} ({{ rr.approval_time }})</td> 51 52 </tr> 52 53 <tr> … … 56 57 </table> 57 58 58 {% if perms.vouchers.can_approve %} 59 <form method="post"> 60 <input type="submit" name="approve" value="Approve" /> 59 {% if approve_form %} 60 <h3>Request Approval</h3> 61 {% if approve_message %} 62 <p>{{ approve_message }}</p> 63 {% endif %} 64 <form method="post" action=""> 65 <table class='pretty-table'> 66 {{ approve_form.as_table }} 67 68 <tr> 69 <th colspan='2'><input type="submit" name="approve" value="Approve" /></td> 70 </tr> 71 </table> 61 72 </form> 62 73 {% endif %}
Note: See TracChangeset
for help on using the changeset viewer.