ssl opportunities

This commit is contained in:
EvilMuffinHa 2021-09-12 17:03:20 -04:00
parent cea966010f
commit 34f6819f1d
2 changed files with 7 additions and 6 deletions

View File

@ -209,7 +209,7 @@ api_route! {
text: (Text, String, String), text: (Text, String, String),
location: (Text, String, String), location: (Text, String, String),
teacher: (Text, String, String), teacher: (Text, String, String),
time: (Time, NaiveTime, TimeForm), date: (Date, NaiveDate, DateForm),
} }
} }

View File

@ -24,10 +24,11 @@
{{#each ctx}} {{#each ctx}}
<div class="bg-light border rounded-3 p-2"> <div class="bg-light border rounded-3 p-2">
<small>ID: {{id}} | LANG: {{lang}}</small> <small>ID: {{id}} | LANG: {{lang}}</small>
<h3 class="my-2" style="font-size: 18px;">{{name}}</h3> <h3 class="my-2" style="font-size: 18px;">{{title}}</h3>
<p class="mb-2">{{meeting}}</p> <p class="mb-2">{{text}}</p>
<p class="mb-2">{{link}}</p> <p class="mb-2">{{location}}</p>
<p class="mt-2 mb-0">Sponsor: {{sponsor}}</p> <p class="mb-2">{{date}}</p>
<p class="mt-2 mb-0">Sponsor: {{teacher}}</p>
<form action="clubs/del" method="post"> <form action="clubs/del" method="post">
<div class="d-flex mt-3"> <div class="d-flex mt-3">
<input type="number" class="form-control form-control-sm" id="id" name="id" value = {{id}} style="display: none"> <input type="number" class="form-control form-control-sm" id="id" name="id" value = {{id}} style="display: none">
@ -182,4 +183,4 @@
</div> </div>
</div> </div>
</body> </body>
</html> </html>