-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 11-restrict-creation
- Loading branch information
Showing
35 changed files
with
970 additions
and
80 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<html> | ||
|
||
<head> | ||
<title>CHT User Management Tool</title> | ||
<script src="/public/htmx.min.js"></script> | ||
<script src="/public/sse.js"></script> | ||
<script src="/public/bulma-calendar.min.js"></script> | ||
|
||
<link rel="stylesheet" href="/public/bulma.min.css" /> | ||
<link rel="stylesheet" href="/public/bulma-tooltip.min.css" /> | ||
<link rel="stylesheet" href="/public/bulma-calendar.min.css" /> | ||
<link rel="stylesheet" href="/public/material-symbols.css" /> | ||
|
||
<style> | ||
.material-symbols-outlined { | ||
margin-right: 5px; | ||
}; | ||
</style> | ||
</head> | ||
|
||
<body> | ||
{% include "app/nav.html" %} | ||
|
||
<div id="app" class="" style="min-height: 100vh"> | ||
<div id="workflow-content" class="container tile is-parent"> | ||
{% if view == "list" %} | ||
{% include "app/fragment_home.html" %} | ||
{% else %} | ||
{% include "app/form_switch.html" %} | ||
{% endif %} | ||
</div> | ||
</div> | ||
|
||
<script type="text/javascript"> | ||
bulmaCalendar.attach('input[type="date"]', { | ||
lang: 'en-US', | ||
dateFormat: 'yyyy-MM-dd', | ||
maxDate: new Date(), | ||
}); | ||
</script> | ||
</body> | ||
|
||
</html> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,8 @@ | |
|
||
<head> | ||
<title>CHT User Management Tool</title> | ||
<script src="https://unpkg.com/[email protected]" | ||
integrity="sha384-FhXw7b6AlE/jyjlZH5iHa/tTe9EpJ1Y55RjcgPbjeWMskSxZt1v9qkxLJWNJaGni" | ||
crossorigin="anonymous"></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"> | ||
<script src="/public/htmx.min.js"></script> | ||
<link rel="stylesheet" href="/public/bulma.min.css" /> | ||
</head> | ||
|
||
<body> | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* fallback */ | ||
@font-face { | ||
font-family: 'Material Symbols Outlined'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url(/public/material-symbols.woff2) format('woff2'); | ||
} | ||
|
||
.material-symbols-outlined { | ||
font-family: 'Material Symbols Outlined'; | ||
font-weight: normal; | ||
font-style: normal; | ||
font-size: 24px; | ||
line-height: 1; | ||
letter-spacing: normal; | ||
text-transform: none; | ||
display: inline-block; | ||
white-space: nowrap; | ||
word-wrap: normal; | ||
direction: ltr; | ||
-webkit-font-feature-settings: 'liga'; | ||
-webkit-font-smoothing: antialiased; | ||
} |
Binary file not shown.
Oops, something went wrong.