18 lines
484 B
HTML
18 lines
484 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}HoopScout | Edit Saved Search{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel mx-auto max-w-lg">
|
|
<h1>Edit Saved Search</h1>
|
|
<form method="post" class="mt-4 space-y-4">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<div class="flex flex-wrap gap-2">
|
|
<button type="submit" class="btn">Update</button>
|
|
<a class="btn-secondary" href="{% url 'scouting:index' %}">Cancel</a>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|