mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2024-11-30 13:51:58 +00:00
9c671e8ef0
Profiles are Person model instances, and are linked to django's built in User model by a one to one foreign key. We are using the django-registration and django-profiles pluggables.
13 lines
534 B
HTML
13 lines
534 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
registration_complete.html | {{ block.super }}
|
|
{% endblock %}
|
|
|
|
{% block header %}
|
|
<h1>registration_complete.html</h1>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
Thank you for signing up, {{ user.username }}. An email with the activation code has been sent to your inbox. Please <a href={% url profiles_create_profile %}> create your profile</a>. If you have been on the expedition in the past, this step allows existing expedition data to be linked to your new account.
|
|
{% endblock %} |