mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-26 16:15:25 +00:00
Merge pull request #606 from krejcar25/fix-604
Replace ifnotequal with if
This commit is contained in:
commit
35afff26f4
1 changed files with 2 additions and 2 deletions
|
@ -160,7 +160,7 @@
|
||||||
</div> <!-- /.modal-content -->
|
</div> <!-- /.modal-content -->
|
||||||
</div> <!-- /.modal-dialog -->
|
</div> <!-- /.modal-dialog -->
|
||||||
</div> <!-- /.modal -->
|
</div> <!-- /.modal -->
|
||||||
{% ifnotequal volume.type "iso" %}
|
{% if volume.type != "iso" %}
|
||||||
<button class="btn btn-sm btn-secondary" data-bs-toggle="modal" data-bs-target="#Clone{{ forloop.counter }}" title="{% trans "Clone" %}">
|
<button class="btn btn-sm btn-secondary" data-bs-toggle="modal" data-bs-target="#Clone{{ forloop.counter }}" title="{% trans "Clone" %}">
|
||||||
{% bs_icon 'files' %}
|
{% bs_icon 'files' %}
|
||||||
</button>
|
</button>
|
||||||
|
@ -168,7 +168,7 @@
|
||||||
<button class="btn btn-sm btn-secondary disabled">
|
<button class="btn btn-sm btn-secondary disabled">
|
||||||
{% bs_icon 'files' %}
|
{% bs_icon 'files' %}
|
||||||
</button>
|
</button>
|
||||||
{% endifnotequal %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<form action="" method="post" role="form" aria-label="Delete volume form">{% csrf_token %}
|
<form action="" method="post" role="form" aria-label="Delete volume form">{% csrf_token %}
|
||||||
|
|
Loading…
Reference in a new issue