mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-30 03:08:56 -04:00
This changeset pulls in all of the notification_utils code directly into the admin and removes it as an external dependency. We are doing this to cut down on operational maintenance of the project and will begin removing parts of it no longer needed for the admin. Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
34 lines
688 B
Django/Jinja
34 lines
688 B
Django/Jinja
</head>
|
|
<body>
|
|
<div id="logo">
|
|
{% if logo_file_name %}
|
|
<img src="{{admin_base_url}}/static/images/letter-template/{{logo_file_name}}" class="{{ logo_class }}"/>
|
|
{% endif %}
|
|
</div>
|
|
<div id="to">
|
|
<div id="mdi">
|
|
000_000_0000000_000000_0000_00000
|
|
</div>
|
|
<ul>
|
|
{%- for line in address -%}
|
|
<li>{{ line }}</li>
|
|
{%- endfor -%}
|
|
</ul>
|
|
</div>
|
|
<div id="barcode">
|
|
</div>
|
|
<div id="qrcode">
|
|
</div>
|
|
<div id="from">
|
|
{{ contact_block }}
|
|
</div>
|
|
<div id="content">
|
|
<p>
|
|
{{ date }}
|
|
</p>
|
|
<h1>{{ subject }}</h1>
|
|
{{ message }}
|
|
</div>
|
|
</body>
|
|
</html>
|