nk20/apps/registration/templates/registration/future_user_list.html

15 lines
310 B
HTML
Raw Normal View History

2020-08-22 08:13:48 +00:00
{% extends "base_search.html" %}
{% comment %}
SPDX-License-Identifier: GPL-3.0-or-later
{% endcomment %}
2020-04-05 04:40:03 +00:00
{% load i18n %}
{% block content %}
2020-08-22 08:13:48 +00:00
<a class="btn btn-block btn-success mb-3" href="{% url 'registration:signup' %}">
{% trans "New user" %}
</a>
2020-04-05 04:40:03 +00:00
2020-08-22 08:13:48 +00:00
{# Search panel #}
{{ block.super }}
2020-04-05 04:40:03 +00:00
{% endblock %}