This repository has been archived on 2026-05-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
imagerepo/app/templates/settings.html
T
2025-07-29 00:34:03 -04:00

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 %}