mirror of
https://github.com/Blair-SGA-Dev-Team/blazerapp.git
synced 2024-11-12 16:51:16 -05:00
167 lines
7.2 KiB
Handlebars
167 lines
7.2 KiB
Handlebars
{{! 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>
|
|
<div class="container-md p-3" style="">
|
|
<h2 style="font-size: 24px; font-weight: bold">
|
|
Admin Panel
|
|
</h2>
|
|
</div>
|
|
|
|
<div class="container-md d-flex gap-4" style="">
|
|
<!-- lunch events list -->
|
|
<div class="p-3" style="flex: 1;">
|
|
<h1 style="font-size: 28px;">Lunch Events</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;">{{title}}</h3>
|
|
<p class="mb-2">{{text}}</p>
|
|
<p class="mb-2">{{location}}</p>
|
|
<p class="mt-2 mb-0">{{time}}</p>
|
|
<form action="clubs/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>
|
|
|
|
<!-- clubs actions -->
|
|
<div class="p-3" style="flex: 1;">
|
|
<h1 style="font-size: 28px;">Lunch Events Actions</h1>
|
|
|
|
<hr/>
|
|
|
|
<div class="my-4">
|
|
<h2 style="font-size: 20px;">Add Lunch Event</h2>
|
|
<form action="lunch_events/add" method="post">
|
|
<div class="d-flex mt-3">
|
|
<div style="flex: 1; justify-content: center;">
|
|
<select name="lang", id="lang">
|
|
<option value="" disabled selected>Select Language</option>
|
|
<option value="en">English</option>
|
|
<option value="es">Spanish</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-flex mt-3">
|
|
<div style="flex: 1; justify-content: center;">
|
|
<p class="my-0">Title</p>
|
|
</div>
|
|
<div style="flex: 1; align: center;">
|
|
<input type="text" class="form-control form-control-sm" id="title" name="title">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-flex mt-3">
|
|
<div style="flex: 1; justify-content: center;">
|
|
<p class="my-0">Information</p>
|
|
</div>
|
|
<div style="flex: 1; align: center;">
|
|
<input type="text" class="form-control form-control-sm" id="text" name="text">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-flex mt-3">
|
|
<div style="flex: 1; justify-content: center;">
|
|
<p class="my-0">Location</p>
|
|
</div>
|
|
<div style="flex: 1; align: center;">
|
|
<input type="text" class="form-control form-control-sm" id="location" name="location">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-flex mt-3">
|
|
<div style="flex: 1; justify-content: center;">
|
|
<p class="my-0">Time of event</p>
|
|
</div>
|
|
<div style="flex: 1; align: center;">
|
|
<input type="text" class="form-control form-control-sm" id="time" name="time">
|
|
</div>
|
|
</div>
|
|
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</div>
|
|
|
|
<div class="my-4">
|
|
<h2 style="font-size: 20px;">Update Lunch Event</h2>
|
|
<form action="lunch_events/upd" method="post">
|
|
<div class="d-flex mt-3">
|
|
<div style="flex: 1; justify-content: center;">
|
|
<p class="my-0">ID of lunch event to update</p>
|
|
</div>
|
|
<div style="flex: 1; align: center;">
|
|
<input type="number" class="form-control form-control-sm" id="id" name="id">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-flex mt-3">
|
|
<div style="flex: 1; justify-content: center;">
|
|
<select name="lang", id="lang">
|
|
<option value="" disabled selected>Select Language</option>
|
|
<option value="en">English</option>
|
|
<option value="es">Spanish</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-flex mt-3">
|
|
<div style="flex: 1; justify-content: center;">
|
|
<p class="my-0">Title</p>
|
|
</div>
|
|
<div style="flex: 1; align: center;">
|
|
<input type="text" class="form-control form-control-sm" id="title" name="title">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-flex mt-3">
|
|
<div style="flex: 1; justify-content: center;">
|
|
<p class="my-0">Information</p>
|
|
</div>
|
|
<div style="flex: 1; align: center;">
|
|
<input type="text" class="form-control form-control-sm" id="text" name="text">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-flex mt-3">
|
|
<div style="flex: 1; justify-content: center;">
|
|
<p class="my-0">Location</p>
|
|
</div>
|
|
<div style="flex: 1; align: center;">
|
|
<input type="text" class="form-control form-control-sm" id="location" name="location">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-flex mt-3">
|
|
<div style="flex: 1; justify-content: center;">
|
|
<p class="my-0">Time of event</p>
|
|
</div>
|
|
<div style="flex: 1; align: center;">
|
|
<input type="text" class="form-control form-control-sm" id="time" name="time">
|
|
</div>
|
|
</div>
|
|
|
|
<input type="submit", value="Submit">
|
|
</form>
|
|
</div>
|
|
|
|
<hr/>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |