blob: 65806e303253b3598591cd88020e5fecffa920ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends "ishtar/wizard/default_wizard.html" %}
{% load i18n l10n %}
{% block wizard_top_button %}
{% if no_context_cr %}
<div class="row mb-3">
<div class="col">
<a href="/find_create/{{no_context_cr|unlocalize}}/" class="btn btn-success">
<i class="fa fa-plus" aria-hidden="true"></i> {% trans "find without context" %}
</a>
</div>
</div>
{% endif %}
{% endblock %}
|