Add podgrab featureset

This commit is contained in:
Cody Cook 2025-06-16 22:55:39 -07:00
commit 233dd5b5c0
33 changed files with 2315 additions and 125 deletions

View file

@ -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>