mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-26 16:48:09 +00:00
Always include warning message
We'll remove it later, on the stable release
This commit is contained in:
parent
bc78968764
commit
26975877d7
7 changed files with 9 additions and 28 deletions
|
@ -67,7 +67,6 @@ twig:
|
||||||
export_xml: %export_xml%
|
export_xml: %export_xml%
|
||||||
version: %app.version%
|
version: %app.version%
|
||||||
twofactor_auth: %twofactor_auth%
|
twofactor_auth: %twofactor_auth%
|
||||||
warning_message: %warning_message%
|
|
||||||
paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb"
|
paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb"
|
||||||
form_themes:
|
form_themes:
|
||||||
- "LexikFormFilterBundle:Form:form_div_layout.html.twig"
|
- "LexikFormFilterBundle:Form:form_div_layout.html.twig"
|
||||||
|
|
|
@ -42,10 +42,6 @@ parameters:
|
||||||
twofactor_auth: true
|
twofactor_auth: true
|
||||||
twofactor_sender: no-reply@wallabag.org
|
twofactor_sender: no-reply@wallabag.org
|
||||||
|
|
||||||
# message to display at the bottom of the page
|
|
||||||
warning_message: >
|
|
||||||
You're trying wallabag v2, which is in alpha version. If you find a bug, please have a look to <a href="https://github.com/wallabag/wallabag/issues">our issues list</a> and <a href="https://github.com/wallabag/wallabag/issues/new">open a new if necessary</a>
|
|
||||||
|
|
||||||
download_pictures: false # if true, pictures will be stored into data/assets for each article
|
download_pictures: false # if true, pictures will be stored into data/assets for each article
|
||||||
|
|
||||||
# Entry view
|
# Entry view
|
||||||
|
|
|
@ -32,10 +32,6 @@ parameters:
|
||||||
twofactor_auth: true
|
twofactor_auth: true
|
||||||
twofactor_sender: no-reply@wallabag.org
|
twofactor_sender: no-reply@wallabag.org
|
||||||
|
|
||||||
# message to display at the bottom of the page
|
|
||||||
warning_message: >
|
|
||||||
You're trying wallabag v2, which is in alpha version. If you find a bug, please have a look to <a href="https://github.com/wallabag/wallabag/issues">our issues list</a> and <a href="https://github.com/wallabag/wallabag/issues/new">open a new if necessary</a>
|
|
||||||
|
|
||||||
download_pictures: false # if true, pictures will be stored into data/assets for each article
|
download_pictures: false # if true, pictures will be stored into data/assets for each article
|
||||||
|
|
||||||
# Entry view
|
# Entry view
|
||||||
|
|
|
@ -32,10 +32,6 @@ parameters:
|
||||||
twofactor_auth: true
|
twofactor_auth: true
|
||||||
twofactor_sender: no-reply@wallabag.org
|
twofactor_sender: no-reply@wallabag.org
|
||||||
|
|
||||||
# message to display at the bottom of the page
|
|
||||||
warning_message: >
|
|
||||||
You're trying wallabag v2, which is in alpha version. If you find a bug, please have a look to <a href="https://github.com/wallabag/wallabag/issues">our issues list</a> and <a href="https://github.com/wallabag/wallabag/issues/new">open a new if necessary</a>
|
|
||||||
|
|
||||||
download_pictures: false # if true, pictures will be stored into data/assets for each article
|
download_pictures: false # if true, pictures will be stored into data/assets for each article
|
||||||
|
|
||||||
# Entry view
|
# Entry view
|
||||||
|
|
|
@ -32,10 +32,6 @@ parameters:
|
||||||
twofactor_auth: true
|
twofactor_auth: true
|
||||||
twofactor_sender: no-reply@wallabag.org
|
twofactor_sender: no-reply@wallabag.org
|
||||||
|
|
||||||
# message to display at the bottom of the page
|
|
||||||
warning_message: >
|
|
||||||
You're trying wallabag v2, which is in alpha version. If you find a bug, please have a look to <a href="https://github.com/wallabag/wallabag/issues">our issues list</a> and <a href="https://github.com/wallabag/wallabag/issues/new">open a new if necessary</a>
|
|
||||||
|
|
||||||
download_pictures: false # if true, pictures will be stored into data/assets for each article
|
download_pictures: false # if true, pictures will be stored into data/assets for each article
|
||||||
|
|
||||||
# Entry view
|
# Entry view
|
||||||
|
|
|
@ -68,10 +68,8 @@
|
||||||
|
|
||||||
{% block footer %}{% endblock %}
|
{% block footer %}{% endblock %}
|
||||||
|
|
||||||
{% if warning_message %}
|
|
||||||
<div id="warning_message">
|
<div id="warning_message">
|
||||||
{{ warning_message | raw }}
|
You're trying wallabag v2, which is in alpha version. If you find a bug, please have a look to <a href="https://github.com/wallabag/wallabag/issues">our issues list</a> and <a href="https://github.com/wallabag/wallabag/issues/new">open a new if necessary</a>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue