aboutsummaryrefslogtreecommitdiff
path: root/app/views/exports/new.html.erb
blob: fa5236069e24b5e7d34fdc29a84f973f8612c75b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="center-contents">
    <div></div>
    <div>
        <div class="notice"><b><%= I18n.t('searches.export.note') %></b>: <%= I18n.t('searches.export.note-msg') %>.</div>

        <div data-controller="export">
            <div id="errors"></div>

            <input type="hidden" data-export-target="id" value="<%= @search.id %>" />

            <select id="export-select-format" data-action="export#change">
                <option selected="selected" value="csv">CSV</option>
                <option value="uoc">UOC</option>
                <option value="txt">Plain text</option>
            </select>

            <a id="export-format-button" class="button" href="#"><%= I18n.t('searches.export.action').capitalize %></a>
        </div>
    </div>
    <div></div>
</div>