mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-21 11:26:19 +01:00
31 lines
1.2 KiB
Twig
31 lines
1.2 KiB
Twig
|
{% extends "WallabagCoreBundle::layout.html.twig" %}
|
||
|
{% block title %}{% trans %}import{% endtrans %}{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col s12">
|
||
|
<div class="card-panel settings">
|
||
|
<div class="row">
|
||
|
<div class="col s12">
|
||
|
{{ form_start(form, {'method': 'POST'}) }}
|
||
|
{{ form_errors(form) }}
|
||
|
<div class="row">
|
||
|
<div class="input-field col s12">
|
||
|
<p>{% trans %}Please select your wallabag export and click on the below button to upload and import it.{% endtrans %}</p>
|
||
|
{{ form_errors(form.file) }}
|
||
|
{{ form_widget(form.file) }}
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="hidden">{{ form_rest(form) }}</div>
|
||
|
<button class="btn waves-effect waves-light" type="submit" name="action">
|
||
|
{% trans %}Upload file{% endtrans %}
|
||
|
</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|