13 lines
400 B
HTML
13 lines
400 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %} - {% trans "Service Unavailable"%}{% endblock %}
|
|
{% block pageclass %}unavailable{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="page_head">
|
|
<h2 id="page_heading">{% trans "Service Unavailable"%}</h2>
|
|
<p id="page_description">{% trans "This service is temporarily unavailable. Please check back soon."%}</p>
|
|
</div>
|
|
{% endblock %}
|