2021-09-08 21:41:34 -04:00
|
|
|
{{! vim: set ft=html: }}
|
2021-08-29 14:59:11 -04:00
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
2021-09-08 21:41:34 -04:00
|
|
|
{{#each ctx}}
|
|
|
|
<p>{{id}} {{lang}} {{title}} {{location}} {{text}} {{event_date}}</p>
|
|
|
|
{{/each}}
|
2021-08-29 14:59:11 -04:00
|
|
|
<br>
|
2021-09-08 21:41:34 -04:00
|
|
|
<p>add</p>
|
2021-08-29 14:59:11 -04:00
|
|
|
<form action="events/add" method="post">
|
|
|
|
<input type="text", id="lang", name="lang">
|
|
|
|
<input type="text", id="title", name="title">
|
|
|
|
<input type="text", id="location", name="location">
|
|
|
|
<input type="text", id="text", name="text">
|
|
|
|
<input type="text", id="event_date", name="event_date">
|
|
|
|
<input type="submit", value="Submit">
|
|
|
|
</form>
|
2021-09-08 21:41:34 -04:00
|
|
|
|
|
|
|
<p>del</p>
|
2021-08-29 14:59:11 -04:00
|
|
|
<form action="events/del" method="post">
|
|
|
|
<input type="number", id="id", name="id">
|
|
|
|
<input type="submit", value="Submit">
|
|
|
|
</form>
|
|
|
|
|
2021-09-08 21:41:34 -04:00
|
|
|
|
|
|
|
<p>upd</p>
|
|
|
|
<form action="events/upd" method="post">
|
|
|
|
<input type="number", id="id", name="id">
|
|
|
|
<input type="text", id="lang", name="lang">
|
|
|
|
<input type="text", id="title", name="title">
|
|
|
|
<input type="text", id="location", name="location">
|
|
|
|
<input type="text", id="text", name="text">
|
|
|
|
<input type="text", id="event_date", name="event_date">
|
|
|
|
<input type="submit", value="Submit">
|
|
|
|
</form>
|
|
|
|
|
2021-08-29 14:59:11 -04:00
|
|
|
</body>
|
|
|
|
</head>
|
|
|
|
</html>
|