Add podgrab featureset
This commit is contained in:
parent
095bf52a2f
commit
233dd5b5c0
33 changed files with 2315 additions and 125 deletions
|
@ -46,6 +46,12 @@
|
|||
Settings
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{ url_for('tasks.view_tasks') }}"
|
||||
class="{% if request.endpoint == 'tasks.view_tasks' %}active{% endif %}">
|
||||
Tasks
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- Task Status Area -->
|
||||
|
@ -84,6 +90,17 @@
|
|||
{% endif %}
|
||||
{% endwith %}
|
||||
|
||||
<!-- Database Fallback Warning -->
|
||||
{% if db_fallback_warning %}
|
||||
<div class="flash-messages">
|
||||
<div class="flash-message error" style="background-color: #f85149; color: white; font-weight: bold;">
|
||||
WARNING: Using in-memory database as fallback. Data will not be persisted between application restarts!
|
||||
<br>
|
||||
<span style="font-size: 0.9em;">Please check the application logs for details on how to fix this issue.</span>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue