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