blazerapp/cms/templates/announcements.html.hbs

169 lines
7.6 KiB
Handlebars
Raw Permalink Normal View History

2021-09-11 17:48:17 -04:00
{{! vim: set ft=html: }}
<html>
<head>
<link rel="stylesheet" href="/static/style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;600;700&display=swap" rel="stylesheet">
</head>
<body>
2021-09-12 17:51:16 -04:00
<div class="container-md p-3" style="display: flex; flex-direction: row;">
2021-09-12 22:02:13 -04:00
<a href="/">
2021-09-12 17:51:16 -04:00
<img src="../static/home.png" style="height: 50px; width: 50px; margin-right: 10px; align-self: center"/>
</a>
<h2 style="font-size: 24px; font-weight: bold; align-self: center">
2021-09-11 17:48:17 -04:00
Admin Panel
</h2>
</div>
<div class="container-md d-flex gap-4" style="">
<!-- announcements list -->
<div class="p-3" style="flex: 1;">
<h1 style="font-size: 28px;">Announcements</h1>
<div class="vstack gap-3 mt-4">
{{#each ctx}}
<div class="bg-light border rounded-3 p-2">
<small>ID: {{id}} | LANG: {{lang}}</small>
<h3 class="my-2" style="font-size: 18px;">{{teacher}}</h3>
<p class="mb-2">{{message}}</p>
<small><b>{{date}}</b> at time <b>{{time}}</b></small>
<form action="announcements/del" method="post">
<div class="d-flex mt-3">
<input type="number" class="form-control form-control-sm" id="id" name="id" value = {{id}} style="display: none">
</div>
<input type="submit" value="Delete">
</form>
</div>
{{/each}}
</div>
</div>
<!-- announcements actions -->
<div class="p-3" style="flex: 1;">
<h1 style="font-size: 28px;">Announcements Actions</h1>
<hr/>
<div class="my-4">
2021-09-12 15:08:49 -04:00
<h2 style="font-size: 20px;">Add Announcement</h2>
2021-09-11 17:48:17 -04:00
<form action="announcements/add" method="post">
<div class="d-flex mt-3">
<div style="flex: 1; justify-content: center;">
2021-09-12 17:29:07 -04:00
<select name="lang", id="lang" required>
2021-09-12 15:08:49 -04:00
<option value="" disabled selected>Select Language</option>
<option value="en">English</option>
<option value="es">Spanish</option>
</select>
2021-09-11 17:48:17 -04:00
</div>
</div>
<div class="d-flex mt-3">
<div style="flex: 1; justify-content: center;">
<p class="my-0">Teacher</p>
</div>
<div style="flex: 1; align: center;">
2021-09-12 17:29:07 -04:00
<input type="text" class="form-control form-control-sm" id="teacher" name="teacher" required>
2021-09-11 17:48:17 -04:00
</div>
</div>
<div class="d-flex mt-3">
<div style="flex: 1; justify-content: center;">
<p class="my-0">Message</p>
</div>
<div style="flex: 1; align: center;">
2021-09-12 17:29:07 -04:00
<input type="text" class="form-control form-control-sm" id="message" name="message" required>
2021-09-11 17:48:17 -04:00
</div>
</div>
<div class="d-flex mt-3">
<div style="flex: 1; justify-content: center;">
2021-09-12 15:08:49 -04:00
<p class="my-0">Date of Submission</p>
2021-09-11 17:48:17 -04:00
</div>
<div style="flex: 1; align: center;">
2021-09-12 17:29:07 -04:00
<input type="text" class="form-control form-control-sm" id="date" name="date" required>
2021-09-11 17:48:17 -04:00
</div>
</div>
<div class="d-flex mt-3">
<div style="flex: 1; justify-content: center;">
<p class="my-0">Time of Submission</p>
</div>
<div style="flex: 1; align: center;">
2021-09-12 17:29:07 -04:00
<input type="text" class="form-control form-control-sm" id="time" name="time" required>
2021-09-11 17:48:17 -04:00
</div>
</div>
<input type="submit" value="Submit">
</form>
</div>
<div class="my-4">
2021-09-12 15:08:49 -04:00
<h2 style="font-size: 20px;">Update Announcement</h2>
<form action="announcements/upd" method="post">
2021-09-11 17:48:17 -04:00
<div class="d-flex mt-3">
<div style="flex: 1; justify-content: center;">
2021-09-12 15:08:49 -04:00
<p class="my-0">ID of announcement to update</p>
2021-09-11 17:48:17 -04:00
</div>
<div style="flex: 1; align: center;">
2021-09-12 17:29:07 -04:00
<input type="number" class="form-control form-control-sm" id="id" name="id" required>
2021-09-11 17:48:17 -04:00
</div>
</div>
<div class="d-flex mt-3">
<div style="flex: 1; justify-content: center;">
2021-09-12 17:29:07 -04:00
<select name="lang", id="lang" required>
2021-09-12 15:08:49 -04:00
<option value="" disabled selected>Select Language</option>
<option value="en">English</option>
<option value="es">Spanish</option>
</select>
2021-09-11 17:48:17 -04:00
</div>
</div>
<div class="d-flex mt-3">
<div style="flex: 1; justify-content: center;">
<p class="my-0">Teacher</p>
</div>
<div style="flex: 1; align: center;">
2021-09-12 17:29:07 -04:00
<input type="text" class="form-control form-control-sm" id="teacher" name="teacher" required>
2021-09-11 17:48:17 -04:00
</div>
</div>
<div class="d-flex mt-3">
<div style="flex: 1; justify-content: center;">
<p class="my-0">Message</p>
</div>
<div style="flex: 1; align: center;">
2021-09-12 17:29:07 -04:00
<input type="text" class="form-control form-control-sm" id="message" name="message" required>
2021-09-11 17:48:17 -04:00
</div>
</div>
<div class="d-flex mt-3">
<div style="flex: 1; justify-content: center;">
2021-09-12 15:08:49 -04:00
<p class="my-0">Date of Submission</p>
2021-09-11 17:48:17 -04:00
</div>
<div style="flex: 1; align: center;">
2021-09-12 17:29:07 -04:00
<input type="text" class="form-control form-control-sm" id="date" name="date" required>
2021-09-11 17:48:17 -04:00
</div>
</div>
<div class="d-flex mt-3">
<div style="flex: 1; justify-content: center;">
<p class="my-0">Time of Submission</p>
</div>
<div style="flex: 1; align: center;">
2021-09-12 17:29:07 -04:00
<input type="text" class="form-control form-control-sm" id="time" name="time" required>
2021-09-11 17:48:17 -04:00
</div>
</div>
<input type="submit", value="Submit">
</form>
</div>
<hr/>
</div>
</div>
</body>
2021-09-12 18:37:39 -04:00
</html>