Re-add IDs for each notification to the jobs page

The functional tests use this for the sending a CSV flow here:
4ee47db851/tests/pages/pages.py (L365)
This commit is contained in:
Chris Hill-Scott
2017-06-23 10:44:43 +01:00
parent 1797162248
commit 27a212ad15
2 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@
field_headings_visible=False
) %}
{% call row_heading() %}
<a class="file-list-filename" href="{{ url_for('.view_notification', service_id=current_service.id, notification_id=item.id) }}">{{ item.to }}</a>
<a class="file-list-filename" href="{{ url_for('.view_notification', service_id=current_service.id, notification_id=item.id) }}" id="{{ item.id }}">{{ item.to }}</a>
<p class="file-list-hint">
{{ item.preview_of_content }}
</p>

View File

@@ -17,7 +17,7 @@
) %}
{% call row_heading() %}
<a class="file-list-filename" href="{{ url_for('.view_notification', service_id=current_service.id, notification_id=item.id) }}">{{ item.to }}</a>
<a class="file-list-filename" href="{{ url_for('.view_notification', service_id=current_service.id, notification_id=item.id) }}" id="{{ item.id }}">{{ item.to }}</a>
<p class="file-list-hint">
{{ item.preview_of_content }}
</p>