This repository has been archived by the owner on Feb 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
42729ad
commit 09f8a2a
Showing
22 changed files
with
10,243 additions
and
288 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
8,040 changes: 7,976 additions & 64 deletions
8,040
suitebde-backend/src/commonMain/resources/static/css/admin.css
Large diffs are not rendered by default.
Oops, something went wrong.
1,829 changes: 1,828 additions & 1 deletion
1,829
suitebde-backend/src/commonMain/resources/static/js/admin.js
Large diffs are not rendered by default.
Oops, something went wrong.
37 changes: 24 additions & 13 deletions
37
suitebde-backend/src/commonMain/resources/templates/admin/models/delete.ftl
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 |
---|---|---|
@@ -1,24 +1,35 @@ | ||
<#import "../template.ftl" as template> | ||
<@template.page> | ||
<div class="container-fluid py-4"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<div class="card card-body mt-4"> | ||
<h6 class="mb-0" id="admin_delete"><@t key="admin_" + route + "_delete" /></h6> | ||
<hr class="horizontal dark my-3"> | ||
<div class="mx-auto max-w-screen-2xl p-4 md:p-6 2xl:p-10"> | ||
<!-- Breadcrumb Start --> | ||
<div class="mb-6 flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between"> | ||
<h2 class="text-title-md2 font-bold text-black dark:text-white" id="admin_delete"> | ||
<@t key="admin_" + route + "_delete" /> | ||
</h2> | ||
</div> | ||
<!-- Breadcrumb End --> | ||
|
||
<!-- ====== Form Layout Section Start --> | ||
<div class="grid grid-cols-1 gap-9"> | ||
<div class="flex flex-col gap-9"> | ||
<!-- Contact Form --> | ||
<div class="rounded-sm border border-stroke bg-white shadow-default dark:border-strokedark dark:bg-boxdark"> | ||
<form method="post" id="form"> | ||
<div class="d-flex justify-content-end mt-3"> | ||
<a class="btn btn-light m-0" href="../../${route}"> | ||
<@t key="admin_cancel" /> | ||
</a> | ||
<input type="submit" | ||
class="btn btn-danger m-0 ms-2" | ||
value="<@t key="admin_delete" />"> | ||
<div class="p-6.5 grid grid-flow-col gap-6"> | ||
<div class="mb-4.5 flex flex-col gap-6 xl:flex-row"> | ||
<a class="flex w-full justify-center rounded bg-black p-3 font-medium text-gray" | ||
href="../../${route}"> | ||
<@t key="admin_cancel" /> | ||
</a> | ||
<input type="submit" | ||
class="flex w-full justify-center rounded bg-danger p-3 font-medium text-gray" | ||
value="<@t key="admin_delete" />"/> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- ====== Form Layout Section End --> | ||
</div> | ||
</@template.page> |
Oops, something went wrong.