mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
86 lines
3.7 KiB
Cheetah
86 lines
3.7 KiB
Cheetah
{{ define "content" }}{{ $path := .Path }}
|
|
|
|
<main class="browse">
|
|
<div class="actions">
|
|
<div class="container">
|
|
{{if .CanGoUp}}<a data-pjax href=".." class="up" title="Up one level"><i class="fa fa-arrow-left fa-lg"></i></a>{{end}}
|
|
<span id="site-title">Path: {{ $path }}</span>
|
|
<div class="go-right">
|
|
<input type="file" value="Upload" multiple>
|
|
<!-- <button class="darker"><i class="fa fa-refresh"></i></button> -->
|
|
<button id="upload">Upload <i class="fa fa-cloud-upload"></i></button>
|
|
<button class="default new">New <i class="fa fa-plus"></i></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<table>
|
|
<tr>
|
|
<th class="left">
|
|
{{if and (eq .Sort "name") (ne .Order "desc")}}
|
|
<a data-pjax href="?sort=name&order=desc">Name <i class="fa fa-arrow-up"></i></a> {{else if and (eq .Sort "name") (ne .Order "asc")}}
|
|
<a data-pjax href="?sort=name&order=asc">Name <i class="fa fa-arrow-down"></i></a> {{else}}
|
|
<a data-pjax href="?sort=name&order=asc">Name</a> {{end}}
|
|
</th>
|
|
<th class="right hideable">
|
|
{{if and (eq .Sort "size") (ne .Order "desc")}}
|
|
<a data-pjax href="?sort=size&order=desc">Size <i class="fa fa-arrow-up"></i></a> {{else if and (eq .Sort "size") (ne .Order "asc")}}
|
|
<a data-pjax href="?sort=size&order=asc">Size <i class="fa fa-arrow-down"></i></a> {{else}}
|
|
<a data-pjax href="?sort=size&order=asc">Size</a> {{end}}
|
|
</th>
|
|
<th class="hideable right">
|
|
{{if and (eq .Sort "time") (ne .Order "desc")}}
|
|
<a data-pjax href="?sort=time&order=desc">Modified <i class="fa fa-arrow-up"></i></a> {{else if and (eq .Sort "time") (ne .Order "asc")}}
|
|
<a data-pjax href="?sort=time&order=asc">Modified <i class="fa fa-arrow-down"></i></a> {{else}}
|
|
<a data-pjax href="?sort=time&order=asc">Modified</a> {{end}}
|
|
</th>
|
|
<th class="right buttons"></th>
|
|
</tr>
|
|
{{range .Items}}
|
|
<tr>
|
|
<td>
|
|
{{if .IsDir}}
|
|
<i class="fa fa-folder"></i> <a data-pjax class="filename" href="{{.URL}}">{{.Name}}</a> {{else}} {{ if CanBeEdited .URL }}
|
|
<i class="fa fa-file"></i> <a data-pjax class="file filename" href="/admin/edit{{ $path }}{{.URL}}">{{.Name}}</a> {{ else }}
|
|
<i class="fa fa-file"></i> <span class="filename">{{.Name}}</span> {{ end }} {{ end }}
|
|
</td>
|
|
<td class="right hideable">{{.HumanSize}}</td>
|
|
<td class="right hideable">{{.HumanModTime "01/02/2006 3:04:05 PM"}}</td>
|
|
<td class="right"><button data-file="/admin/browse{{ $path }}{{.URL}}" data-message="File renamed." class="rename">✎</button> <button data-file="/admin/browse{{ $path }}{{.URL}}" data-message="File deleted." class="delete">✖</button></td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
</div>
|
|
</main>
|
|
|
|
<div id="foreground" class="hidden"></div>
|
|
|
|
<form class="popup hidden" id="delete">
|
|
<h3>Delete</h3>
|
|
<p>Are you sure you want to delete "<span></span>"?</p>
|
|
<p class="right">
|
|
<button class="close" class="darker">No</button>
|
|
<input type="submit" value="Yes, I am">
|
|
</p>
|
|
</form>
|
|
|
|
<form class="popup hidden" id="new">
|
|
<h3>New file</h3>
|
|
<p>Write the name of the new file. If you want to use an archetype, add <code>:archetype</code> in the end, replacing 'archetype' by its name.</p>
|
|
<input type="text" placeholder="Write here...">
|
|
<p class="right">
|
|
<input type="submit" value="Create">
|
|
</p>
|
|
</form>
|
|
|
|
<form class="popup hidden" id="rename">
|
|
<h3>Rename file</h3>
|
|
<p>Write down the new name of "<span></span>".</p>
|
|
<input type="text" placeholder="New name...">
|
|
<p class="right">
|
|
<input type="submit" value="Rename">
|
|
</p>
|
|
</form>
|
|
{{ end }}
|