diff options
Diffstat (limited to 'python/Dawn/templates')
| -rw-r--r-- | python/Dawn/templates/counterparties.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/python/Dawn/templates/counterparties.html b/python/Dawn/templates/counterparties.html index f0b0f60a..39883e02 100644 --- a/python/Dawn/templates/counterparties.html +++ b/python/Dawn/templates/counterparties.html @@ -19,6 +19,7 @@ <td>Valuation Contact3</td> <td>Valuation Contact4</td> <td>Valuation Note</td> + <td>Instructions</td> </tr> </thead> {% for cp in counterparties %} @@ -38,8 +39,9 @@ <a href="mailto:{{cp.valuation_email3}}">{{cp.valuation_contact3}}</a>{% endif %}</td> <td>{% if cp.valuation_contact4 %} <a href="mailto:{{cp.valuation_email4}}">{{cp.valuation_contact4}}</a>{% endif %}</td> - <td>{{cp.notes if cp.notes}}</td> - <td> + <td style="width:50px">{{cp.notes if cp.notes}}</td> + <td>{%if cp.instructions %}<a href="{{url_for('list_counterparties', instr = cp.instructions)}}"> + <span class="glyphicon glyphicon-file"></span></a>{% endif %}</td> </tr> {% endfor %} </table> |
