mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2024-11-24 00:01:58 +00:00
c24359cb87
- Import is now non-destructive - Parsers write output to a log file (path be specified in settings) - databaseReset.py content been divided into separate functions which can be called for varying levels of deletion and importing - control panel (view, template, urlpattern) added for deleting and importing - Logins and signup fixed - CaveArea model updated, view, hierarchical url patterns, and beginning of template added - New site style
20 lines
683 B
HTML
20 lines
683 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
New troggle account registered
|
|
{% endblock %}
|
|
|
|
{% block header %}
|
|
<h1>activate.html</h1>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<p>
|
|
Hello, {{user}}! Your account is now activated. You've also been logged in automatically for your convenience. Use the links in the upper right to control this in the future.
|
|
</p>
|
|
|
|
<p>
|
|
If you have been on the expedition in the past, you already have a profile in the system; <a href={% url profiles_select_profile %}>click here </a> to find it and link it to your account. Otherwise, please <a href={% url profiles_create_profile %}> create yourself a new profile</a>.
|
|
</p>
|
|
{% endblock %} |