filebrowser/_embed/templates/actions.tmpl

19 lines
584 B
Cheetah
Raw Normal View History

2016-06-14 19:33:59 +00:00
{{ define "actions" }}
2016-06-22 21:18:21 +00:00
<div class="action" id="open">
<i class="material-icons" title="See raw">open_in_new</i> <span>See raw</span>
2016-06-22 21:18:21 +00:00
</div>
2016-08-21 19:10:12 +00:00
{{ if and .IsDir .User.AllowEdit }}
2016-06-22 21:18:21 +00:00
<div class="action" id="rename">
<i class="material-icons" title="Edit">mode_edit</i>
2016-06-22 21:18:21 +00:00
</div>
{{ end }}
<div class="action" id="download">
<i class="material-icons" title="Download">file_download</i> <span>Download</span>
2016-06-22 21:18:21 +00:00
</div>
2016-08-21 19:10:12 +00:00
{{ if .User.AllowEdit }}
2016-06-22 21:18:21 +00:00
<div class="action" id="delete">
<i class="material-icons" title="Delete">delete</i> <span>Delete</span>
2016-06-22 21:18:21 +00:00
</div>
2016-08-21 19:10:12 +00:00
{{ end }}
2016-06-14 19:33:59 +00:00
{{ end }}