mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 09:12:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			411 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			411 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base_search.html" %}
 | 
						|
{% comment %}
 | 
						|
SPDX-License-Identifier: GPL-3.0-or-later
 | 
						|
{% endcomment %}
 | 
						|
{% load i18n perms %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
{% if can_manage_registrations %}
 | 
						|
<a class="btn btn-block btn-secondary mb-3" href="{% url 'registration:future_user_list' %}">
 | 
						|
    <i class="fa fa-user-plus"></i> {% trans "Registrations" %}
 | 
						|
</a>
 | 
						|
{% endif %}
 | 
						|
 | 
						|
{# Search panel #}
 | 
						|
{{ block.super }}
 | 
						|
{% endblock %}
 |