mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
16 lines
536 B
HTML
16 lines
536 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Meals - Van{% endblock %}
|
|
{% block content %}
|
|
<h1>Meals</h1>
|
|
|
|
<form hx-post="/meals" hx-target="#meal-list" hx-swap="innerHTML" hx-on::after-request="if(event.detail.successful) this.reset()">
|
|
<label>Name <input type="text" name="name" required></label>
|
|
<label>Instructions <input type="text" name="instructions" placeholder="optional"></label>
|
|
<button type="submit">Add Meal</button>
|
|
</form>
|
|
|
|
<div id="meal-list">
|
|
{% include "partials/meal_rows.html" %}
|
|
</div>
|
|
{% endblock %}
|