Ignore:
Timestamp:
May 31, 2010, 5:45:02 AM (15 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, client
Children:
e1086bd
Parents:
f52f909
git-author:
Alex Dehnert <adehnert@…> (05/31/10 05:45:02)
git-committer:
Alex Dehnert <adehnert@…> (05/31/10 05:45:02)
Message:

Allow filtering by approval_status (Trac: #8)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • remit/remit_templates/vouchers/reimbursementrequest_list.html

    rf52f909 r5e6ab71  
    1515<form>
    1616<table class='pretty-table'>
     17<tr>
     18    <th>Approval Status</th>
     19    <td><select name='approval_status'>
     20    <option value='all'{%ifequal approval_status "all"%} selected='selected'{%endifequal%}>All</option>
     21    {% for id,label in approval_states %}
     22    <option value='{{id}}'{%ifequal approval_status id%} selected='selected'{%endifequal%}>{{label}}</option>
     23    {% endfor %}
     24    </select></td>
     25</tr>
    1726<tr>
    1827    <th>Order</th>
Note: See TracChangeset for help on using the changeset viewer.