32 lines
1.2 KiB
HTML
32 lines
1.2 KiB
HTML
{% extends "layout.html" %}
|
|
{% block title %}Settings{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 style="text-align:center; margin-top: 1rem;">Settings</h1>
|
|
|
|
<div class="settings-container">
|
|
<div class="settings-section">
|
|
<h2>Admin Actions</h2>
|
|
<div class="settings-actions">
|
|
<form action="{{ url_for('main.trigger_image_import') }}" method="get">
|
|
<button type="submit" class="btn primary-btn">Trigger Image Import</button>
|
|
</form>
|
|
|
|
<form action="{{ url_for('main.trigger_thumbnail_generation') }}" method="post" onsubmit="return confirm('Are you sure you want to regenerate all thumbnails?');">
|
|
<button type="submit" class="btn warning-btn">Regenerate Thumbnails</button>
|
|
</form>
|
|
|
|
|
|
<form action="{{ url_for('main.reset_db') }}" method="post" onsubmit="return confirm('Are you sure you want to delete all image records? This action cannot be undone.');">
|
|
<button type="submit" class="btn danger-btn">Reset Image Database</button>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="settings-info">
|
|
<p>Use these tools to manually trigger an import or reset the image database. Resetting the database does not delete the actual image files.</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|