mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 01:12:08 +01:00 
			
		
		
		
	Add shadow and fix jquery hack
This commit is contained in:
		@@ -13,7 +13,7 @@
 | 
			
		||||
        {% csrf_token %}
 | 
			
		||||
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-sm-5">
 | 
			
		||||
            <div class="col-sm-5 mb-4">
 | 
			
		||||
                {% if form.non_field_errors %}
 | 
			
		||||
                    <p class="errornote">
 | 
			
		||||
                        {% for error in form.non_field_errors %}
 | 
			
		||||
@@ -40,7 +40,7 @@
 | 
			
		||||
            </div>
 | 
			
		||||
 | 
			
		||||
            <div class="col-sm-7">
 | 
			
		||||
                <div class="card text-center">
 | 
			
		||||
                <div class="card text-center shadow">
 | 
			
		||||
                    {# Tabs for button categories #}
 | 
			
		||||
                    <div class="card-header">
 | 
			
		||||
                        <ul class="nav nav-tabs nav-fill card-header-tabs">
 | 
			
		||||
@@ -59,12 +59,15 @@
 | 
			
		||||
                        <div class="tab-content">
 | 
			
		||||
                            {% for template_type in template_types %}
 | 
			
		||||
                                <div class="tab-pane" id="{{ template_type.grouper|slugify }}">
 | 
			
		||||
                                    <div class="d-inline-flex flex-wrap justify-content-center">
 | 
			
		||||
                                        {% for button in template_type.list %}
 | 
			
		||||
                                        <button class="btn btn-outline-dark" name="button" value="{{ button.name }}">
 | 
			
		||||
                                            <button class="btn btn-outline-dark rounded-0 flex-fill"
 | 
			
		||||
                                                    name="button" value="{{ button.name }}">
 | 
			
		||||
                                                {{ button.name }} ({{ button.amount | pretty_money }})
 | 
			
		||||
                                            </button>
 | 
			
		||||
                                        {% endfor %}
 | 
			
		||||
                                    </div>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            {% endfor %}
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
@@ -72,9 +75,10 @@
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </form>
 | 
			
		||||
{% endblock %}
 | 
			
		||||
 | 
			
		||||
{% block extrajavascript %}
 | 
			
		||||
    <script type="text/javascript">
 | 
			
		||||
        $ = django.jQuery;
 | 
			
		||||
        $(document).ready(function() {
 | 
			
		||||
            // If hash of a category in the URL, then select this category
 | 
			
		||||
            // else select the first one
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user