mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 09:12:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load render_table from django_tables2 %}
 | 
						|
{% load i18n %}
 | 
						|
{% load perms %}
 | 
						|
 | 
						|
{% if not object.profile.email_confirmed and "member.change_profile_email_confirmed"|has_perm:user.profile %}
 | 
						|
    <div class="alert alert-warning">
 | 
						|
        {% trans "This user doesn't have confirmed his/her e-mail address." %}
 | 
						|
        <a href="{% url "registration:email_validation_resend" pk=user.pk %}">{% trans "Click here to resend a validation link." %}</a>
 | 
						|
    </div>
 | 
						|
{% endif %}
 | 
						|
 | 
						|
<div class="card">
 | 
						|
    <div class="card-header position-relative" id="clubListHeading">
 | 
						|
        <a class="font-weight-bold">
 | 
						|
            <i class="fa fa-users"></i> {% trans "View my memberships" %}
 | 
						|
        </a>
 | 
						|
    </div>
 | 
						|
    {% render_table club_list %}
 | 
						|
</div>
 | 
						|
 | 
						|
<hr>
 | 
						|
 | 
						|
<div class="card">
 | 
						|
    <div class="card-header position-relative" id="historyListHeading">
 | 
						|
            <a class="stretched-link font-weight-bold" {% if "note.view_note"|has_perm:user.note %} href="{% url 'note:transactions' pk=user.note.pk %}" {% endif %}>
 | 
						|
            <i class="fa fa-euro"></i> {% trans "Transaction history" %}
 | 
						|
        </a>
 | 
						|
    </div>
 | 
						|
    <div id="history_list">
 | 
						|
        {% render_table history_list %}
 | 
						|
    </div>
 | 
						|
</div>
 |