* Status WIP * feat: Status * fix: Status tests * feat: status redirect * chore: Status tests * chore: Status tests * feat: Status tests * chore: Status playwright tests * fix: PR feedback, mostly Vue and copyright dates * fix: Status model migration tidy up * chore: Status - one migration * feat: status on doc/html pages * chore: Resetting Status migration * chore: removing unused FieldError * fix: Update Status test to remove 'by' * chore: fixing API test to exclude 'status' * chore: fixing status_page test * feat: Site Status PR feedback. URL coverage debugging * Adding ietf.status to Tastypie omitted apps * feat: Site Status PR feedback * chore: correct copyright year on newly created files * chore: repair merge damage * chore: repair more merge damage * fix: reconcile the api init refactor with ignoring apps --------- Co-authored-by: Matthew Holloway <Matthew Holloway> Co-authored-by: Robert Sparks <rjsparks@nostrum.com>
19 lines
748 B
HTML
19 lines
748 B
HTML
{% load origin %}
|
|
{% load ietf_filters static %}
|
|
{% origin %}
|
|
<meta name="color-scheme" content="light dark">
|
|
<style type="text/css">
|
|
{# this template doesn't inherit from base.html so it has its own styles #}
|
|
body {background:transparent;font-family:sans-serif}
|
|
h1{font-size:18px;display:inline}
|
|
p{font-size:14px;display:inline}
|
|
.unimportant{opacity:0.6}
|
|
</style>
|
|
<!-- This page is intended to be iframed, and is only for non-JavaScript browsers. -->
|
|
{% if title %}
|
|
<h1>{{ title }}</h1>
|
|
<p>{{ body }} <a href="{{ url }}" target="_top" aria-label="read more about {{title}}">read more</a><br /><span class="unimportant">{{ date }}</span></p>
|
|
{% else %}
|
|
<p class="unimportant">No site status message.</p>
|
|
{% endif %}
|