mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 12:49:01 +02:00

I'd like to be upgrading to 1.8 but that causes problems with South, and we're not quite ready to dispense with our existing migrations yet. Part of the implementation for [YOCTO #9620]. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
19 lines
289 B
HTML
19 lines
289 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
{% if account %}
|
|
|
|
<p>{% trans "Account successfully activated" %}</p>
|
|
|
|
<p><a href="{% url "auth_login" %}">{% trans "Log in" %}</a></p>
|
|
|
|
{% else %}
|
|
|
|
<p>{% trans "Account activation failed" %}</p>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|