diff options
author | friendica <info@friendica.com> | 2014-01-06 16:49:07 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-06 16:49:07 -0800 |
commit | 8dc22c564aee0a6edf590a9a47021ea1ceb4aecf (patch) | |
tree | 5796daf0efa053d505e5298724ca2b44e892cb3f /view/tpl | |
parent | 8223f04b97a822f8acac78a452919dbf77b91146 (diff) | |
download | volse-hubzilla-8dc22c564aee0a6edf590a9a47021ea1ceb4aecf.tar.gz volse-hubzilla-8dc22c564aee0a6edf590a9a47021ea1ceb4aecf.tar.bz2 volse-hubzilla-8dc22c564aee0a6edf590a9a47021ea1ceb4aecf.zip |
provide ability to change attachment/file permissions
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/attach_edit.tpl | 32 | ||||
-rw-r--r-- | view/tpl/filestorage.tpl | 1 |
2 files changed, 33 insertions, 0 deletions
diff --git a/view/tpl/attach_edit.tpl b/view/tpl/attach_edit.tpl new file mode 100644 index 000000000..1483336ff --- /dev/null +++ b/view/tpl/attach_edit.tpl @@ -0,0 +1,32 @@ + +<h1>{{$header}}</h1> + +<h2>{{$file.filename}}</h2> + + +<div id="attach-edit-backlink"><a href="filestorage/{{$channelnick}}">{{$backlink}}</a></div> + + +<form action="filestorage/{{$channelnick}}/{{$file.id}}/edit" method="post" > + +<input type="hidden" name="channelnick" value="{{$channelnick}}" /> +<input type="hidden" name="filehash" value="{{$file.hash}}" /> +<input type="hidden" name="uid" value="{{$uid}}" /> +<input type="hidden" name="fileid" value="{{$file.id}}" /> + +{{if $isadir}} +<div id="attach-edit-recurse" > + <label id="attach-edit-recurse-text" for="attach-recurse-input" >{{$recurse}}</label> + <input id="attach-recurse-input" type="checkbox" name="recurse" value="1" /> +</div> +{{/if}} + +<div id="attach-edit-perms" > +{{$aclselect}} +</div> + +<div class="clear"></div> +<input type="submit" name="submit" value="{{$submit}}" /> +</form> + + diff --git a/view/tpl/filestorage.tpl b/view/tpl/filestorage.tpl index 995b52cc8..a3eab83d5 100644 --- a/view/tpl/filestorage.tpl +++ b/view/tpl/filestorage.tpl @@ -8,6 +8,7 @@ {{foreach $items as $item}} <div class="files-list-item"> <a href="attach/{{$item.download}}">{{$download}}</a> | + <a href="{{$baseurl}}/{{$item.id}}/edit">{{$edit}} | <a href="{{$baseurl}}/{{$item.id}}/delete">{{$delete}} <a href="page/{{$channel}}/{{$item.title}}">{{$title}}</a> {{$item.title}} | {{$item.size}} bytes |