summaryrefslogtreecommitdiff
path: root/public/app/views/components/own_petitions.php
blob: 4b076c4375d3bcc7cae075e8e901574009020b05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
 <!-- title bar -->
 <div class="title-bar">
    <div><h5>Διαχείριση Αιτήσεων και Δοικητικών Εγγράφων</h5></div>
    <div>
        <!-- Button trigger modal -->
        <a type="button" class="btn pull-right" href="/admin/edit_lesson">
            <i class="fas fa-plus"></i> &nbsp; Νέο Μάθημα
        </a>
    </div>
</div>

<div class="manage">
    <div class="row">
        <div class="col-md-12">

            <div id="petitions">

                <table id="dt-petitions" class="table table-responsive dt-table" style="width:100%">
                    <thead>
                        <!--<th class="dt-id">α/α</th>-->
                        <th class="dt-title">Τίτλος</th>
                        <th class="dt-protocol">Αρ.Πρωτόκολλου</th>
                        <th class="dt-signature">Signature</th>
                        <th class="dt-datepost">Ημερ. Καταχώρισης</th>
                        <th class="dt-actions"></th>
                    </thead>
                </table>

            </div>

        </div>
    </div>
</div><!-- /manage -->