mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-03 08:58:47 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			439 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			439 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
{% load render_table from django_tables2 %}
 | 
						|
{% block content %}
 | 
						|
 | 
						|
{% render_table  table %}
 | 
						|
 | 
						|
<a class="btn btn-primary" href="{% url 'member:club_create' %}">New Club</a>
 | 
						|
 | 
						|
{% endblock %}
 | 
						|
{% block extrajavascript %}
 | 
						|
<script type="text/javascript">
 | 
						|
 | 
						|
$(document).ready(function($) {
 | 
						|
    $(".table-row").click(function() {
 | 
						|
        window.document.location = $(this).data("href");
 | 
						|
    });
 | 
						|
});
 | 
						|
 | 
						|
</script>
 | 
						|
{% endblock %}
 |