summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/blocks/DataTables-external-sources.html
blob: 3a46b39f1c090b3cf48ce00139cb2dc6ee9ca1f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% load i18n %}

<div class="d-flex justify-content-center">
    <div class="external-sources btn-group btn-group-toggle" data-toggle="buttons">
        <label id="source_button_default" class="btn btn-primary">
            <input type="radio" name="_sources" autocomplete="off" checked>
            {% trans "Local" %}&nbsp;&nbsp;<span class="badge badge-light" id="source_badge_default">-</span>
        </label>
        {% for source_id, source_label, source_url, columns, column_labels, export_urls in external_sources %}
        <label id="source_button_{{source_id}}" class="btn btn-secondary">
            <input type="radio" name="_sources" autocomplete="off">
            {{source_label}}&nbsp;&nbsp;<span class="badge badge-light" id="source_badge_{{source_id}}">-</span>
        </label>
        {% endfor %}
    </div>
</div>