* optimizes the db fetching for all index views and detail views * introduces usage of managers.py in all necessary apps for wrapping basic fetch settings * moves comment.html to comment_card.html under /konova/templates/konova/ * adds/updates translations * fixes document typos * drops comment rendering in public reports * opens public reports in new tabs if button is clicked from the detail view
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load i18n l10n fontawesome_5 %}
 | 
						|
 | 
						|
<div class="d-flex justify-content-end">
 | 
						|
    <a href="{{LANIS_LINK}}" class="mr-2" target="_blank">
 | 
						|
        <button class="btn btn-default" title="{% trans 'Open in LANIS' %}">
 | 
						|
            LANIS
 | 
						|
        </button>
 | 
						|
    </a>
 | 
						|
    <a href="{% url 'compensation:acc-report' obj.id %}" target="_blank" class="mr-2">
 | 
						|
        <button class="btn btn-default" title="{% trans 'Public report' %}">
 | 
						|
            {% fa5_icon 'file-alt' %}
 | 
						|
        </button>
 | 
						|
    </a>
 | 
						|
    {% if has_access %}
 | 
						|
        {% if is_ets_member %}
 | 
						|
            {% if obj.recorded %}
 | 
						|
                <button class="btn btn-default btn-modal mr-2" title="{% trans 'Unrecord' %}" data-form-url="{% url 'compensation:acc-record' obj.id %}">
 | 
						|
                    {% fa5_icon 'bookmark' 'far' %}
 | 
						|
                </button>
 | 
						|
            {% else %}
 | 
						|
                <button class="btn btn-default btn-modal mr-2" title="{% trans 'Record' %}" data-form-url="{% url 'compensation:acc-record' obj.id %}">
 | 
						|
                    {% fa5_icon 'bookmark' %}
 | 
						|
                </button>
 | 
						|
            {% endif %}
 | 
						|
        {% endif %}
 | 
						|
        {% if is_default_member %}
 | 
						|
        <a href="{% url 'compensation:acc-edit' obj.id %}" class="mr-2">
 | 
						|
            <button class="btn btn-default" title="{% trans 'Edit' %}">
 | 
						|
                {% fa5_icon 'edit' %}
 | 
						|
            </button>
 | 
						|
        </a>
 | 
						|
        <button class="btn btn-default btn-modal mr-2" data-form-url="{% url 'compensation:acc-log' obj.id %}" title="{% trans 'Show log' %}">
 | 
						|
            {% fa5_icon 'history' %}
 | 
						|
        </button>
 | 
						|
        <button class="btn btn-default btn-modal" data-form-url="{% url 'compensation:acc-remove' obj.id %}" title="{% trans 'Delete' %}">
 | 
						|
            {% fa5_icon 'trash' %}
 | 
						|
        </button>
 | 
						|
        {% endif %}
 | 
						|
    {% endif %}
 | 
						|
</div> |