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
84
85
86
87
88
89
90
@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="sezione" id="sezione">
                @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>titolo</th>
                    <th>data</th>
                    <th>folder</th>
                    <th>apri</th>
                    <th>modifica</th>
                    <th>elimina</th>
                </tr>
                </thead>
                <tbody>
                @foreach($organi as $i => $organo)
                <?php $folder = OrganiFolder::where('id_sezione','=',$sezione)->where('id','=',$organo->id_folder)->first(); ?>
                <tr>
                    <td>{{$organo->titolo}}</td>
                    <td>{{ Carbon::createFromFormat('Y-m-d', $organo->data)->format('d/m/Y') }}</td>
                    <td>{{ $folder['folder'] }}</td>
                    <td><a href="{{ asset('WDVBzqTvDXF3WyfGHbWUD94WUQDSKrEzCfneLXxwWDVBzq/organi/'.$folder['folder'].'/'.$organo->id.'.'.strtolower($organo->tipo)) }}" class="btn-flat btn-success btn-sm">apri</a></td>
                    <td><a href="{{URL::route('admin-organi-edit',$organo->id) }}" class="btn-flat btn-success btn-sm">modifica</a></td>
                    <td><a href="{{URL::route('admin-organi-delete', [$organo->id, $organo->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": false,
                "bPaginate": true,
                "bLengthChange": false,
                "bFilter": true,
                "bInfo": true,
                "bAutoWidth": true,
                "sDom": 'Zlfrtip'
            });

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

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

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