{% extends "base.html" %} {% load i18n %} {% block title %}{% trans 'Register' %} | {{ block.super }}{% endblock %} {% block section_title %} {% trans "Need an account?" %} {% endblock %} {%block content %} {% if user.is_authenticated %} {% url auth_logout as logout_url %} {% if logout_url %}
{% trans "You'll need to" %} {% trans 'logout' %} {% trans "first." %}
{% else %}{% trans "You'll need to logout first." %}
{% endif %} {% else %}{% trans 'Great! We just need a few details to get you started:' %}
{% include "form_snippet.html" %} {% endif %} {%endblock content %}