Subversion Repository Public Repository

Nextrek

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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
@extends('layout.main')

@section('styles')
    {{ HTML::style('css/bootstrap.css') }}
    {{ HTML::style('css/AdminLTE.css') }}
    {{ HTML::style('css/datatables/dataTables.bootstrap.css') }}
@stop

@section('content')
<div class="img-titolo">
    <div><hr><h2>Admin</h2><hr></div>
    <img src="{{ URL::asset('image/riservata-bg.jpg') }}" alt="">
</div>

<div class="wrap admin">
    @include('admin.nav')

    <section class="content">
        <div class="box">
        <div class="box-header">
            <h3 class="box-title"></h3>
        </div>

        <!-- /.box-header -->
        <div class="box-body table-responsive">
            <select class="form-control" name="folder" id="folder">
                @foreach(Organi::all() as $sez)
                    <option @if($sez->idorgani == $sezione){{'selected'}}@endif value="{{$sez->idorgani}}">{{$sez->sezione}}</option>
                @endforeach
            </select><br>

            <table id="crud_list" class="table table-bordered table-striped">
                <thead>
                <tr>
                    <th>folder</th>
                    <th>elimina</th>
                </tr>
                </thead>
                <tbody>
                @foreach($folders as $i => $folder)
                <tr>
                    <input type="hidden" name="position" value="{{$i}}"/>
                    <td>{{ $folder->folder}}</td>
                    <td><a href="{{ URL::route('admin-organi-delete-folder', [$folder->id,$folder->id_sezione]) }}" class="btn-flat btn-warning btn-sm">Elimina</a></td>
                </tr>
                @endforeach
                </tbody>
                </tfoot>
            </table>
        </div>
        <!-- /.box-body -->
    </div>
        <!-- /.box -->
    </section><!-- /.content -->

</div>
@stop

@section('scripts')
    {{HTML::script('js/plugins/datatables/jquery.dataTables.js') }}
    {{HTML::script('js/plugins/datatables/dataTables.bootstrap.js') }}
    {{HTML::script('js/plugins/datatables/dataTables.colResize.js') }}

    <script type="text/javascript">
        $(function () {
            $('#crud_list').dataTable({
                "bSort": true,
                "aaSorting": [[0,'desc']],
                "bPaginate": true,
                "bLengthChange": false,
                "bFilter": false,
                "bInfo": true,
                "bAutoWidth": true,
                "sDom": 'Zlfrtip'
            });

            $('.admin select#folder').change(function(e){ 
                e.preventDefault();
                window.location.href = '/admin/organi/lista-folder/'+$(this).val();
            });
        });
    </script>
@stop

Commits for Nextrek/Aiba_backup/app/views/admin/organi/lista-folder.blade.php

Diff revisions: vs.
Revision Author Commited Message
1464 MOliva picture MOliva Tue 13 Oct, 2020 11:16:56 +0000