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

When clicking on an activation link, after verification, the registration application tries to show the activation_complete page. The template was missing, so I added a basic skeleton. Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
15 lines
169 B
HTML
15 lines
169 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
{% blocktrans %}
|
|
|
|
Activation is complete.
|
|
<br/>
|
|
You can log in now.
|
|
|
|
{% endblocktrans %}
|
|
|
|
{% endblock %}
|