mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-21 08:52:21 +00:00
Minor code and GUI changes
. changed file name lehrauftrag to orderLehrauftrag . changed order of buttons Both for consistecy
This commit is contained in:
@@ -95,7 +95,7 @@ class Lehrauftrag extends Auth_Controller
|
||||
'studiensemester_selected' => $studiensemester_kurzbz
|
||||
);
|
||||
|
||||
$this->load->view('lehre/lehrauftrag/lehrauftrag.php', $view_data);
|
||||
$this->load->view('lehre/lehrauftrag/orderLehrauftrag.php', $view_data);
|
||||
}
|
||||
|
||||
public function orderLehrauftrag()
|
||||
|
||||
@@ -84,9 +84,8 @@ $this->load->view(
|
||||
<button id="approve-lehrauftraege" class="btn btn-primary pull-right">Lehrauftrag erteilen</button>
|
||||
<button id="select-all" class="btn btn-default">Alle auswählen</button>
|
||||
<button id="deselect-all" class="btn btn-default">Alle abwählen</button>
|
||||
<button id="show-all" class="btn btn-default">Alle anzeigen</button>
|
||||
<button id="show-ordered" class="btn btn-default">Nur bestellte anzeigen</button>
|
||||
<button id="show-approved" class="btn btn-default">Nur erteilte anzeigen</button>
|
||||
<button id="show-all" class="btn btn-default">Alle anzeigen</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -165,6 +164,10 @@ $(function() {
|
||||
);
|
||||
});
|
||||
|
||||
$("#download-cvs").click(function(){
|
||||
$('#filterTabulator').tabulator("download", "csv", "data.csv");
|
||||
});
|
||||
|
||||
// Approve Lehrauftraege
|
||||
$("#approve-lehrauftraege").click(function(){
|
||||
|
||||
|
||||
+2
-3
@@ -75,7 +75,7 @@ $this->load->view(
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<?php $this->load->view('lehre/lehrauftrag/lehrauftragData.php'); ?>
|
||||
<?php $this->load->view('lehre/lehrauftrag/orderLehrauftragData.php'); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -84,9 +84,8 @@ $this->load->view(
|
||||
<button id="order-lehrauftraege" class="btn btn-primary pull-right">Lehrauftrag bestellen</button>
|
||||
<button id="select-all" class="btn btn-default">Alle auswählen</button>
|
||||
<button id="deselect-all" class="btn btn-default">Alle abwählen</button>
|
||||
<button id="show-all" class="btn btn-default">Alle anzeigen</button>
|
||||
<button id="show-new" class="btn btn-default">Nur neue anzeigen</button>
|
||||
<button id="show-ordered" class="btn btn-default">Nur bestellte anzeigen</button>
|
||||
<button id="show-all" class="btn btn-default">Alle anzeigen</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user