mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-04-30 06:01:06 -04:00
Link to each recipient on activity and job pages
We have a page for individual notifications now. On the job and activity pages each row of the table represents an individual notification. So it makes sense for these things to be linked together, so that a user can navigate from one to the other. This will make more sense once we make some more changes to the individual notification page.
This commit is contained in:
@@ -48,7 +48,9 @@
|
||||
field_headings_visible=False
|
||||
) %}
|
||||
{% call row_heading() %}
|
||||
<p>{{ item.to }}</p>
|
||||
<p>
|
||||
<a href="{{ url_for('.view_notification', service_id=current_service.id, notification_id=item.id) }}">{{ item.to }}</a>
|
||||
</p>
|
||||
{% endcall %}
|
||||
{{ notification_status_field(item) }}
|
||||
{% endcall %}
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
{% call row_heading() %}
|
||||
<p>
|
||||
{{ item.to }}
|
||||
<a href="{{ url_for('.view_notification', service_id=current_service.id, notification_id=item.id) }}">{{ item.to }}</a>
|
||||
</p>
|
||||
<p class="hint">
|
||||
{% if item.job and item.job.original_file_name == 'Report' %}
|
||||
|
||||
Reference in New Issue
Block a user