2013-10-03 14:10:44 +02:00
|
|
|
{% extends "layout.twig" %}
|
|
|
|
{% block title %}{% trans "plop" %}{% endblock %}
|
|
|
|
{% block content %}
|
2013-10-07 13:12:28 +02:00
|
|
|
<h1>Errors</h1>
|
|
|
|
<ol>
|
|
|
|
{% for message in msg %}
|
|
|
|
<li>{{message}}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ol>
|
2014-01-28 10:49:57 +01:00
|
|
|
<p>Don't forget <a href="http://doc.wallabag.org/">the documentation</a>.</p>
|
2014-02-03 12:43:34 +01:00
|
|
|
<p>
|
|
|
|
{% trans "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." %}
|
|
|
|
</p>
|
2013-12-15 00:18:26 -05:00
|
|
|
{% endblock %}
|