summaryrefslogtreecommitdiff
path: root/public/app/views/admin/pages.php
diff options
context:
space:
mode:
authorGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-06-06 00:46:19 +0300
committerGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-06-06 00:46:19 +0300
commit1388a64651f1c61a6aafc32f8e3e60f7a6ffd339 (patch)
treedd5bcd7b438929ffec89d32011144831eebabb06 /public/app/views/admin/pages.php
parentd5475ce60729c3f743a6451b42072f1a13ffed59 (diff)
downloadgyraf1gov-1388a64651f1c61a6aafc32f8e3e60f7a6ffd339.tar.gz
gyraf1gov-1388a64651f1c61a6aafc32f8e3e60f7a6ffd339.tar.bz2
gyraf1gov-1388a64651f1c61a6aafc32f8e3e60f7a6ffd339.zip
admin petition ready
Diffstat (limited to 'public/app/views/admin/pages.php')
-rw-r--r--public/app/views/admin/pages.php109
1 files changed, 0 insertions, 109 deletions
diff --git a/public/app/views/admin/pages.php b/public/app/views/admin/pages.php
deleted file mode 100644
index dd8f954..0000000
--- a/public/app/views/admin/pages.php
+++ /dev/null
@@ -1,109 +0,0 @@
- <!-- title bar -->
- <div class="title-bar">
- <div><h5>Διαχείριση Μαθημάτων</h5></div>
- <div>
- <!-- Button trigger modal -->
- <a type="button" class="btn pull-right" href="/admin/edit_page">
- <i class="fas fa-plus"></i> &nbsp; Νέα Σελίδα
- </a>
- </div>
-</div>
-
-<div class="manage">
- <div class="row">
- <div class="col-md-12">
-
- <div id="pages">
-
- <table id="dt-pages" class="table table-responsive dt-table" style="width:100%">
- <thead>
- <th class="dt-id">α/α</th>
- <th class="dt-title">Τίτλος</th>
- <th class="dt-actions"></th>
- </thead>
- </table>
-
- </div>
-
- </div>
- </div>
-</div><!-- /manage -->
-
-
-
-<!-- MODAL for new/edit category -->
-<!-- NOTE: tabindex="-1" removed, ref:https://github.com/select2/select2-bootstrap-theme/issues/41 -->
-<div class="modal fade" id="managePages" aria-labelledby="myModalLabel" aria-hidden="true">
- <div class="modal-dialog modal-lg" role="document">
- <div class="modal-content">
-
- <form method="post" action="">
-
- <div class="modal-header">
- <h4 class="modal-title" id="myModalLabel">Παράμετροι Μαθήματος</h4>
- <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
- </div><!-- /modal-header -->
-
- <!-- modal-body -->
- <div class="modal-body">
-
- <!-- form fields -->
-
- <div class="row form-group">
- <label class="control-label col-sm-12" for="label">Τίτλος</label>
- <div class="col-sm-12">
- <input class="form-control form-control-sm" type="text" name="title" value="" required="">
- </div>
- </div>
-
-
- <!-- one line / two parts; status: pull right -->
- <div class="row">
- <div class="col-md-8">
- &nbsp<!-- nothing -->
- </div>
- <div class="col-md-4">
-
- <!-- status: published|unpublished -->
- <div class="row form-group">
- <label class="control-label col-sm-12" for="status">Κατάσταση</label>
- <div class="col-sm-12">
- <select class="form-control form-control-sm form-select form-select-sm" name="status" onchange="this.dataset.chosen = this.value;">
- <option value="0">Αδημοσίευτο</option>
- <option value="one">ΔΗΜΟΣΙΕΥΜΕΝΟ</option>
- </select>
- </div>
- </div>
-
-
- </div>
- </div>
-
-
-
-
- <div class="row form-group">
- <input type="hidden" name="id" value="0"><!-- page-id -->
- </div>
-
-
- </div><!-- /modal body -->
-
- <div class="modal-footer">
- <div class="row" style="width: 50%;">
- <div class="form-actions">
- <div class="col-4">
- <button type="button" class="btn btn-default js-modal-close col-sm-12" data-bs-dismiss="modal">Κλείσιμο</button>
- </div>
- <div class="col-8">
- <button class="btn btn-success col-sm-12" type="submit">Καταχώριση</button>
- </div>
- </div>
- </div>
- </div><!-- /modal-footer -->
-
- </form><!-- /form -->
-
- </div>
- </div>
-</div>