mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 14:49:15 +00:00
30 lines
958 B
Twig
30 lines
958 B
Twig
{% extends "layout.html.twig" %}
|
|
|
|
{% block title %}{{ 'import.page_title'|trans }}{% endblock %}
|
|
|
|
{% block messages %}
|
|
{{ render(controller('Wallabag\\Controller\\Import\\ImportController::checkQueueAction')) }}
|
|
|
|
{{ parent() }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col s12">
|
|
<div class="card-panel settings">
|
|
{% include 'Import/_information.html.twig' %}
|
|
|
|
{{ 'import.page_description'|trans }}
|
|
<ul>
|
|
{% for import in imports %}
|
|
<li>
|
|
<h5>{{ import.name }}</h5>
|
|
<blockquote>{{ import.description|trans|raw }}</blockquote>
|
|
<p><a class="waves-effect waves-light btn" href="{{ path(import.url) }}">{{ 'import.action.import_contents'|trans }}</a></p>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|