mirror of
https://gitlab.crans.org/bde/nk20
synced 2024-11-27 10:53:02 +00:00
17 lines
383 B
HTML
17 lines
383 B
HTML
{% extends "base_search.html" %}
|
|
{% comment %}
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
{% endcomment %}
|
|
{% load render_table from django_tables2 %}
|
|
{% load crispy_forms_tags %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<a class="btn btn-block btn-success mb-3" href="{% url 'registration:signup' %}">
|
|
{% trans "New user" %}
|
|
</a>
|
|
|
|
{# Search panel #}
|
|
{{ block.super }}
|
|
{% endblock %}
|