mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
537 B
16 lines
537 B
{% extends "crud/list.html" %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block actions %}
|
|
{% if not rows %}
|
|
<div class="actions btn-group float-right btn-group-lg" role="group">
|
|
{% if view.create_url %}
|
|
<a href="{{ view.create_url }}" class="btn btn-outline-primary">
|
|
{% blocktrans with verbose_name=view.verbose_name %} Vincular {{ verbose_name }} {% endblocktrans %}
|
|
</a>
|
|
{% endif %}
|
|
{% block more_buttons %}{% endblock more_buttons %}
|
|
</div>
|
|
{% endif %}
|
|
{% endblock actions %}
|
|
|