Initial commit with project setup
This commit is contained in:
32
templates/edit_light.html
Normal file
32
templates/edit_light.html
Normal file
@@ -0,0 +1,32 @@
|
||||
{% extends "admin_base.html" %}
|
||||
|
||||
{% block title %}Edit Light Requirement{% endblock %}
|
||||
|
||||
{% block admin_content %}
|
||||
<div class="max-w-xl mx-auto bg-gray-50 p-6 rounded-lg">
|
||||
<h2 class="text-2xl font-bold mb-4">Edit Light Requirement</h2>
|
||||
<form method="POST" enctype="multipart/form-data" class="space-y-4">
|
||||
<div>
|
||||
<label for="name" class="block text-sm font-medium text-gray-700">Name</label>
|
||||
<input type="text" name="name" id="name" value="{{ light.name }}" required
|
||||
class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">
|
||||
</div>
|
||||
<div>
|
||||
<label for="description" class="block text-sm font-medium text-gray-700">Description</label>
|
||||
<textarea name="description" id="description" rows="3"
|
||||
class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">{{ light.description }}</textarea>
|
||||
</div>
|
||||
<div>
|
||||
<label for="icon" class="block text-sm font-medium text-gray-700">Icon (SVG)</label>
|
||||
<input type="file" name="icon" id="icon" accept=".svg" class="mt-1 block w-full text-sm text-gray-700">
|
||||
{% if light.icon %}
|
||||
<div class="mt-2">
|
||||
<span class="text-xs text-gray-500">Current icon:</span>
|
||||
<img src="{{ url_for('static', filename='icons/' ~ light.icon) }}" alt="Icon" class="w-8 h-8 inline-block align-middle">
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
<button type="submit" class="btn-main w-full">Save Changes</button>
|
||||
</form>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user