26 lines
701 B
HTML
26 lines
701 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block title %}Settings{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container mt-4">
|
|
<h2>Image Management</h2>
|
|
<p>Use the options below to manage image data.</p>
|
|
|
|
<div class="mb-3">
|
|
<a href="{{ url_for('main.trigger_image_import') }}" class="btn btn-primary">
|
|
📥 Import Images
|
|
</a>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<form method="POST" action="{{ url_for('main.reset_db') }}"
|
|
onsubmit="return confirm('Are you sure you want to delete all image records?');">
|
|
<button type="submit" class="btn btn-danger">
|
|
🗑️ Reset Database
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|