mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-12-03 15:04:09 +03:00
19 lines
426 B
HTML
19 lines
426 B
HTML
{% raw %}{% extends "account/base.html" %}
|
|
|
|
{% load url from future %}
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% trans "Sign Up Closed" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-5">
|
|
<h2>{% trans "Sign Up Closed" %}</h2>
|
|
|
|
<p>{% trans "We are sorry, but the sign up is currently closed." %}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% endraw %} |