18 lines
454 B
HTML
18 lines
454 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}HoopScout | Edit Saved Search{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel narrow">
|
|
<h1>Edit Saved Search</h1>
|
|
<form method="post" class="stack">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<div class="row-gap">
|
|
<button type="submit" class="button">Update</button>
|
|
<a class="button ghost" href="{% url 'scouting:index' %}">Cancel</a>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|