This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-05-15 08:54:31 +00:00
|
|
|
{% load passbook_utils %}
|
2019-03-08 14:11:01 +00:00
|
|
|
|
|
|
|
{% spaceless %}
|
|
|
|
<div class="dynamic-array-widget">
|
|
|
|
{% for widget in widget.subwidgets %}
|
|
|
|
<div class="array-item input-group">
|
|
|
|
{% include widget.template_name %}
|
|
|
|
<div class="input-group-btn">
|
|
|
|
<button class="array-remove btn btn-danger" type="button">
|
|
|
|
<span class="pficon-delete"></span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
<div><button type="button" class="add-array-item btn btn-default">Add another</button></div>
|
|
|
|
</div>
|
|
|
|
{% endspaceless %}
|