mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-03 08:58:47 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
{% load render_table from django_tables2 %}
 | 
						|
{% load i18n %}
 | 
						|
{% block content %}
 | 
						|
<div class="row justify-content-center mb-4">
 | 
						|
    <div class="col-md-10 text-center">
 | 
						|
        <h4>
 | 
						|
            {% trans "search clubs" %}
 | 
						|
        </h4>
 | 
						|
        <input class="form-control mx-auto w-25" type="text" id="search_field"/>
 | 
						|
        <hr>
 | 
						|
        <a class="btn btn-primary text-center my-4" href="{% url 'member:club_create' %}">{% trans "Create club" %}</a>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
<div class="row justify-content-center">   
 | 
						|
    <div class="col-md-10">
 | 
						|
        <div class="card card-border shadow">
 | 
						|
            <div class="card-header text-center">
 | 
						|
                <h5> {% trans "Club listing" %}</h5>
 | 
						|
            </div>
 | 
						|
            <div class="card-body px-0 py-0" id="club_table">
 | 
						|
                {% render_table table %}
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
 | 
						|
{% endblock %}
 | 
						|
{% block extrajavascript %}
 | 
						|
<script type="text/javascript">
 | 
						|
    $(document).ready(function() {
 | 
						|
        let old_pattern = null;
 | 
						|
        let searchbar_obj = $("#search_field");
 | 
						|
        var timer_on = false;
 | 
						|
        var timer;
 | 
						|
 | 
						|
        function reloadTable() {
 | 
						|
            let pattern = searchbar_obj.val();
 | 
						|
            $("#club_table").load(location.href + "?search=" + pattern.replace(" ", "%20") + " #club_table", init);
 | 
						|
        }
 | 
						|
 | 
						|
        searchbar_obj.keyup(function() {
 | 
						|
            if (timer_on)
 | 
						|
                clearTimeout(timer);
 | 
						|
            timer_on = true;
 | 
						|
            setTimeout(reloadTable, 0);
 | 
						|
        });
 | 
						|
 | 
						|
        function init() {
 | 
						|
            $(".table-row").click(function() {
 | 
						|
                window.document.location = $(this).data("href");
 | 
						|
                timer_on = false;
 | 
						|
            });
 | 
						|
        }
 | 
						|
 | 
						|
        init();
 | 
						|
    });
 | 
						|
</script>
 | 
						|
{% endblock %}
 |