mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 11:27:09 +00:00
12 lines
350 B
HTML
Executable File
12 lines
350 B
HTML
Executable File
{% extends "account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% trans "Sign Up Closed" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{% trans "Sign Up Closed" %}</h1>
|
|
|
|
<p>{% blocktrans with project_long_name=settings.PROJECT_LONG_NAME %}Signing up to {{ project_long_name }} is currently not permitted.{% endblocktrans %}</p>
|
|
{% endblock %}
|