add join notify link

This commit is contained in:
Beverly Nguyen
2025-01-03 11:48:45 -08:00
parent c65352166d
commit 3b2fa4314b
2 changed files with 23 additions and 1 deletions

View File

@@ -38,7 +38,10 @@
{% set navigation = [] %}
{% if FEATURE_ABOUT_PAGE_ENABLED %}
{% set navigation = navigation + [{"href": url_for('main.about_notify'), "text": "About Notify", "active": request.path == '/about'}] %}
{% set navigation = navigation + [
{"href": url_for('main.about_notify'), "text": "About Notify", "active": request.path == '/about'},
{"href": url_for('main.join_notify'), "text": "Join Notify", "active": request.path == '/join-notify'}
] %}
{% endif %}
{% endif %}

View File

@@ -0,0 +1,19 @@
<div class="ajax-block-container">
sdsadadadadadsadsdsad
<div class="grid-row grid-gap">
<div id="total-sms" class="grid-col-12 margin-top-2">
<span class="big-number-with-status display-block margin-bottom-2">
<a class="usa-button usa-button--outline" href="{{ url_for('.view_notifications', service_id=service_id, message_type='sms', status='sending,delivered,failed') }}">
sdsadadadadadsadsdsad
</a>
<div id="totalMessageChartContainer" data-sms-sent="{{ sms_sent }}" data-sms-allowance-remaining="{{ sms_allowance_remaining }}">
<h2 id="chartTitle">Total messages</h2>
<svg id="totalMessageChart"></svg>
<div id="message"></div>
</div>
<div id="totalMessageTable" class="margin-0"></div>
</span>
</div>
</div>
</div>