Bug 30952: Staff interface redesign (header)
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / files.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE KohaDates %]
4 [% USE Branches %]
5 [% USE AuthorisedValues %]
6 [% SET footerjs = 1 %]
7 [% INCLUDE 'doc-head-open.inc' %]
8 <title>Files for [% INCLUDE 'patron-title.inc' no_html = 1 %]</title>
9 [% INCLUDE 'doc-head-close.inc' %]
10 </head>
11
12 <body id="pat_files" class="pat">
13 [% WRAPPER 'header.inc' %]
14     [% INCLUDE 'patron-search-header.inc' %]
15 [% END %]
16
17 [% WRAPPER 'sub-header.inc' %]
18 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
19     <ol>
20         <li>
21             <a href="/cgi-bin/koha/mainpage.pl"><i class="fa fa-home"></i></a>
22         </li>
23         <li>
24             <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
25         </li>
26         <li>
27             <a href="#" aria-current="page">
28                 Files for [% INCLUDE 'patron-title.inc' %]
29             </a>
30         </li>
31     </ol>
32 </nav>
33 [% END %]
34
35 <div class="main container-fluid">
36     <div class="row">
37         <div class="col-sm-10 col-sm-push-2">
38             <main>
39
40                 [% INCLUDE 'members-toolbar.inc' %]
41
42                 <h1>Files</h1>
43
44                 [% IF errors %]
45                     <div class="dialog alert">
46                         [% IF errors.empty_upload %]The file you are attempting to upload has no contents.[% END %]
47                         [% IF errors.no_file %]You did not select a file to upload.[% END %]
48                     </div>
49                 [% END %]
50
51                 [% IF ( files ) %]
52                 <table>
53                     <thead>
54                         <tr>
55                             <th>Name</th>
56                             <th>Type</th>
57                             <th>Description</th>
58                             <th>Uploaded</th>
59                             [% IF CAN_user_borrowers_edit_borrowers %]<th>&nbsp;</th>[% END %]
60                         </tr>
61                     </thead>
62
63                     <tbody>
64                         [% FOREACH f IN files %]
65                             <tr>
66                                  <td><a href="?borrowernumber=[% patron.borrowernumber | uri %]&amp;op=download&amp;file_id=[% f.file_id | uri %]">[% f.file_name | html %]</a></td>
67                                  <td>[% f.file_type | html %]</td>
68                                  <td>[% f.file_description | html %]</td>
69                                  <td>[% f.date_uploaded | $KohaDates %]</td>
70                                  [% IF CAN_user_borrowers_edit_borrowers %]<td><a class="btn btn-default btn-xs confirmdelete" href="?borrowernumber=[% patron.borrowernumber | html %]&amp;op=delete&amp;file_id=[% f.file_id | html %]"><i class="fa fa-trash"></i> Delete</a></td>[% END %]
71                             </tr>
72                         [% END %]
73                     </tbody>
74                 </table>
75                 [% ELSE %]
76                 <div class="dialog message">
77                     <p>This patron has no files attached.</p>
78                 </div>
79                 [% END %]
80
81                 <form method="post" action="/cgi-bin/koha/members/files.pl" enctype="multipart/form-data">
82                     <fieldset class="rows">
83                         <legend>Upload new file</legend>
84                         <ol>
85                         <li><input type="hidden" name="op" value="upload" />
86                         <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
87                         <input type="hidden" name="MAX_FILE_SIZE" value="2000000" />
88
89                         <label for="description">Description:</label>
90                         <input name="description" id="description" type="text" /></li>
91
92                         <li><label for="uploadfile">File:</label><input name="uploadfile" type="file" id="uploadfile" /></li>
93
94                         </ol>
95                         <fieldset class="action"><input name="upload" type="submit" id="upload" value="Upload file" /></fieldset>
96                     </fieldset>
97                 </form>
98
99             </main>
100         </div> <!-- /.col-sm-10.col-sm-push-2 -->
101
102         <div class="col-sm-2 col-sm-pull-10">
103             <aside>
104                 [% INCLUDE 'circ-menu.inc' %]
105             </aside>
106         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
107      </div> <!-- /.row -->
108
109 [% MACRO jsinclude BLOCK %]
110     [% INCLUDE 'str/members-menu.inc' %]
111     [% Asset.js("js/members-menu.js") | $raw %]
112     <script>
113         $(document).ready(function(){
114             $(".confirmdelete").on("click", function(){
115                 $(this).parents('tr').addClass("warn");
116                 if(confirm(_("Are you sure you want to delete this file?"))){
117                     return true;
118                 } else {
119                     $(this).parents('tr').removeClass("warn");
120                     return false;
121                 }
122             });
123     });
124     </script>
125 [% END %]
126
127 [% INCLUDE 'intranet-bottom.inc' %]