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

<div class="d-flex justify-content-center">
    <div class="btn-group btn-group-toggle" data-toggle="buttons">
        <label id="source_button_default" class="btn btn-secondary active">
            <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 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>

<script>
</script>