mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-09 16:01:24 -04:00
Fairly self-explanatory. Uses the same pattern of breaking things up into functions as the jobs page.
28 lines
477 B
HTML
28 lines
477 B
HTML
{% from "components/ajax-block.html" import ajax_block %}
|
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
{% block service_page_title %}
|
|
{{ user_number }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="dashboard">
|
|
|
|
<div class="bottom-gutter js-stick-at-top-when-scrolling">
|
|
<h1 class="heading-large">
|
|
{{ user_number }}
|
|
</h1>
|
|
</div>
|
|
|
|
{{ ajax_block(
|
|
partials,
|
|
updates_url,
|
|
'messages',
|
|
) }}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|