mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-13 23:14:32 -05:00
- Deleted /stylesheets folder - Removed sass build from gulpfile - Changed gov links to usa links - Changed other govuk styles, like breadcrumbs - Changed name of uk_components file to us_components - Fixed a few tests that broke on account of the changes
18 lines
792 B
HTML
18 lines
792 B
HTML
<div class="ajax-block">
|
|
{% if current_service.inbound_sms_summary != None %}
|
|
<a id="total-received" class="usa-link banner-dashboard" class="banner-dashboard" href="{{ url_for('.inbox', service_id=current_service.id) }}">
|
|
<span class="banner-dashboard-count">
|
|
{{ current_service.inbound_sms_summary.count|format_thousands }}
|
|
</span>
|
|
<span class="banner-dashboard-count-label">
|
|
{{ current_service.inbound_sms_summary.count|message_count_label('sms', suffix='received') }}
|
|
</span>
|
|
{% if current_service.inbound_sms_summary.most_recent %}
|
|
<span class="banner-dashboard-meta">
|
|
latest message {{ current_service.inbound_sms_summary.most_recent | format_delta }}
|
|
</span>
|
|
{% endif %}
|
|
</a>
|
|
{% endif %}
|
|
</div>
|