mirror of
https://github.com/wallabag/wallabag.git
synced 2025-08-01 17:38:38 +00:00
Move templates
This commit is contained in:
parent
3c1a183e2d
commit
664b4baa3e
90 changed files with 119 additions and 118 deletions
23
templates/Import/check_queue.html.twig
Normal file
23
templates/Import/check_queue.html.twig
Normal file
|
@ -0,0 +1,23 @@
|
|||
{% if nbRedisMessages is defined and nbRedisMessages > 0 %}
|
||||
<script>
|
||||
Materialize.toast('Messages in queue: {{ nbRedisMessages }}', 4000);
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
{% if nbRabbitMessages is defined and nbRabbitMessages > 0 %}
|
||||
<script>
|
||||
Materialize.toast('Messages in queue: {{ nbRabbitMessages }}', 4000);
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
{% if redisNotInstalled is defined and redisNotInstalled %}
|
||||
<div class="card-panel red darken-1 white-text">
|
||||
{{ 'flashes.import.error.redis_enabled_not_installed'|trans|raw }}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if rabbitNotInstalled is defined and rabbitNotInstalled %}
|
||||
<div class="card-panel red darken-1 white-text">
|
||||
{{ 'flashes.import.error.rabbit_enabled_not_installed'|trans|raw }}
|
||||
</div>
|
||||
{% endif %}
|
Loading…
Add table
Add a link
Reference in a new issue