Fix link to financial verification page

This commit is contained in:
Patrick Smith
2018-08-08 19:21:46 -04:00
parent 1338e36b1c
commit 115c84680c
3 changed files with 9 additions and 2 deletions

View File

@@ -88,7 +88,7 @@
{% for r in requests %}
<tr>
<th scope="row">
<a class='icon-link icon-link--large' href="{{ url_for('requests.requests_form_update', screen=1, request_id=r['order_id']) if r["status"] != "approved" else url_for('requests.financial_verification', request_id=r['order_id']) }}">{{ r['order_id'] }}</a>
<a class='icon-link icon-link--large' href="{{ r['edit_link'] }}">{{ r['order_id'] }}</a>
{% if r['is_new'] %}<span class="usa-label">New</span>
</th>
{% endif %}