]> git.mxchange.org Git - friendica.git/blob - view/theme/dispy/templates/photo_edit.tpl
Merge pull request #2569 from tobiasd/doc-settings-de
[friendica.git] / view / theme / dispy / templates / photo_edit.tpl
1
2
3 <form action="photos/{{$nickname}}/{{$resource_id}}" method="post" id="photo_edit_form" >
4
5         <input type="hidden" name="item_id" value="{{$item_id}}" />
6
7         <label id="photo-edit-albumname-label" for="photo-edit-albumname">{{$newalbum}}</label>
8         <input id="photo-edit-albumname" type="text" name="albname" value="{{$album}}" />
9
10         <div id="photo-edit-albumname-end"></div>
11
12         <label id="photo-edit-caption-label" for="photo-edit-caption">{{$capt_label}}</label>
13         <input id="photo-edit-caption" type="text" name="desc" value="{{$caption}}" />
14
15         <div id="photo-edit-caption-end"></div>
16
17         <label id="photo-edit-tags-label" for="photo-edit-newtag" >{{$tag_label}}</label>
18         <input name="newtag" id="photo-edit-newtag" title="{{$help_tags}}" type="text" />
19
20         <div id="photo-edit-tags-end"></div>
21         <div id="photo-edit-rotate-wrapper">
22                 <div id="photo-edit-rotate-label">{{$rotate}}</div>
23                 <input type="checkbox" name="rotate" value="1" />
24         </div>
25         <div id="photo-edit-rotate-end"></div>
26
27         <div id="photo-edit-perms" class="photo-edit-perms" >
28                 <a href="#photo-edit-perms-select"
29                         id="photo-edit-perms-menu"
30                         class="button"
31                         title="{{$permissions}}"/><span id="jot-perms-icon"
32                         class="icon {{$lockstate}}" ></span>{{$permissions}}</a>
33                 <div id="photo-edit-perms-menu-end"></div>
34
35                 <div style="display: none;">
36                         <div id="photo-edit-perms-select" >
37                                 {{$aclselect}}
38                         </div>
39                 </div>
40         </div>
41         <div id="photo-edit-perms-end"></div>
42
43         <input id="photo-edit-submit-button" type="submit" name="submit" value="{{$submit}}" />
44         <input id="photo-edit-delete-button" type="submit" name="delete" value="{{$delete}}" onclick="return confirmDelete()"; />
45
46         <div id="photo-edit-end"></div>
47 </form>
48
49 <script type="text/javascript">
50         $("a#photo-edit-perms-menu").colorbox({
51                 'inline' : true,
52                 'transition' : 'none'
53         }); 
54 </script>