13 lines
295 B
HTML
13 lines
295 B
HTML
|
{% extends 'base.html' %} <!-- Add this for inheritance -->
|
||
|
{% load i18n %}
|
||
|
|
||
|
{% block title %}{% trans "Singup" %}{% endblock %}
|
||
|
{% block pagetitle %}{% trans "Singup" %}{% endblock %}
|
||
|
{% block content %}
|
||
|
<p>
|
||
|
<strong>{% trans "Singup" %}</strong>
|
||
|
<br />
|
||
|
Please contact x@y.z
|
||
|
</p>
|
||
|
|
||
|
{% endblock %}
|