Skip to content

Commit

Permalink
add join notify link
Browse files Browse the repository at this point in the history
  • Loading branch information
Beverly Nguyen authored and Beverly Nguyen committed Jan 3, 2025
1 parent c653521 commit 3b2fa43
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/templates/components/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}

Expand Down
19 changes: 19 additions & 0 deletions app/templates/views/dashboard/_activity.html
Original file line number Diff line number Diff line change
@@ -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>

0 comments on commit 3b2fa43

Please sign in to comment.