Commit c46a32aa authored by Willard's avatar Willard

Delete editstall.html

parent 8fdf806e
{% extends "base.html" %}
{% block title %}Edit Stall Info{% endblock %}
{% block content %}
<h1>Stall Info</h1>
<form action="{{ url_for('edit_stall', stall_id=stall.id) }}" method="POST">
{{ form.csrf_token }}
<div id="form">
<div class="form-input">
<div class="input-row">
{{ form.name.label(class_="field-label") }} {{ form.name(class_="text-field") }}
</div>
<div class="input-row">
{{ form.description.label(class_="field-label") }} {{ form.description(class_="text-area", rows=6, cols=32) }}
</div>
<div class="input-row">
{{ form.location.label(class_="field-label") }} {{ form.location(class_="text-field") }}
</div>
</div>
<div class="dashboard-row">
<button type="submit">Submit</button>
<a href="{{ url_for('view_stall', stall_id=stall.id) }}"><button type="button">Back</button></a>
</div>
</div>
</form>
{% endblock %}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment