{% extends "rest_framework/base.html" %} {% load i18n %} {% block title %}{{ block.super }} | {% trans 'Login' %}{% endblock %} {% block searchbar %}{% endblock %} {% block content %}

{% trans 'Login' %}

{% if next %} {% if user.is_authenticated %}

{% blocktranslate %} Your account doesn't have access to this page. To proceed, please login with an account that has access. {% endblocktranslate %}

{% else %}

{% trans 'Please login to continue.' %}

{% endif %} {% endif %} {% include 'rest_framework/components/form.html' %}
{% endblock %}