remove service

This commit is contained in:
Beverly Nguyen
2025-01-16 18:20:32 -08:00
parent 79e8f02ec6
commit 839bd0b3a9
2 changed files with 1 additions and 2 deletions

View File

@@ -73,7 +73,6 @@ def service_dashboard(service_id):
service_data_retention_days=service_data_retention_days, service_data_retention_days=service_data_retention_days,
sms_sent=sms_sent, sms_sent=sms_sent,
sms_allowance_remaining=sms_allowance_remaining, sms_allowance_remaining=sms_allowance_remaining,
service_id=service_id,
) )

View File

@@ -21,7 +21,7 @@
{% set notification = job.notifications[0] %} {% set notification = job.notifications[0] %}
<tr id="{{ job.id }}"> <tr id="{{ job.id }}">
<td class="table-field jobid" role="rowheader"> <td class="table-field jobid" role="rowheader">
<a class="usa-link" href="{{ url_for('.view_job', service_id=service_id, job_id=job.id )}}"> <a class="usa-link" href="{{ url_for('.view_job', service_id=current_service.id, job_id=job.id )}}">
{{ job.id[:8] if job.id else 'Manually entered number' }} {{ job.id[:8] if job.id else 'Manually entered number' }}
</a> </a>
</td> </td>