]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/material/Import/index.html.twig
add docs for Import feature
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / material / Import / index.html.twig
CommitLineData
d275bdf4
NL
1{% extends "WallabagCoreBundle::layout.html.twig" %}
2
3{% block title %}{% trans %}import{% endtrans %}{% endblock %}
4
5{% block content %}
10b40f85
NL
6<div class="row">
7 <div class="col s12">
8 <div class="card-panel settings">
d275bdf4 9 <div class="row">
10b40f85
NL
10 <div class="col s12">
11 <form action="{{ path('import') }}" method="post" {{ form_enctype(form.import) }}>
12 {{ form_errors(form.import) }}
13 <div class="row">
14 <div class="input-field col s12">
15 <p>{% trans %}Please select your wallabag export and click on the below button to upload and import it.{% endtrans %}</p>
16 {{ form_errors(form.import.file) }}
17 {{ form_widget(form.import.file) }}
18 </div>
19 </div>
20 <div class="hidden">{{ form_rest(form.import) }}</div>
21 <button class="btn waves-effect waves-light" type="submit" name="action">
22 {% trans %}Upload file{% endtrans %}
23 </button>
24 </form>
d275bdf4
NL
25 </div>
26 </div>
10b40f85 27 </div>
d275bdf4 28 </div>
10b40f85 29</div>
d275bdf4 30{% endblock %}