mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 20:59:01 +02:00
19 lines
287 B
HTML
19 lines
287 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 %}
|