poli_planning/polyclinic_scheduling/templates/singup.html

12 lines
329 B
HTML

{% extends 'base.html' %} <!-- Add this for inheritance -->
{% load i18n %}
{% block title %}{% trans "Signup" %}{% endblock %}
{% block pagetitle %}{% trans "Signup" %}{% endblock %}
{% block content %}
<p>
<strong>{% trans "Signup" %}</strong>
<br />
{% blocktrans %}Please contact x@y.z{% endblocktrans %}
</p>
{% endblock %}