2020-05-13 15:54:40 +02:00
|
|
|
{% extends 'base.html' %} <!-- Add this for inheritance -->
|
|
|
|
{% load i18n %}
|
|
|
|
|
2020-05-14 15:20:19 +02:00
|
|
|
{% block title %}{% trans "Signup" %}{% endblock %}
|
|
|
|
{% block pagetitle %}{% trans "Signup" %}{% endblock %}
|
2020-05-13 15:54:40 +02:00
|
|
|
{% block content %}
|
|
|
|
<p>
|
2020-05-14 15:20:19 +02:00
|
|
|
<strong>{% trans "Signup" %}</strong>
|
2020-05-13 15:54:40 +02:00
|
|
|
<br />
|
2020-05-14 15:20:19 +02:00
|
|
|
{% blocktrans %}Please contact x@y.z{% endblocktrans %}
|
2020-05-13 15:54:40 +02:00
|
|
|
</p>
|
|
|
|
{% endblock %}
|