]> git.mxchange.org Git - friendica.git/blob - view/theme/frost-mobile/templates/photo_edit.tpl
Merge pull request #5128 from tobiasd/20180525-5067
[friendica.git] / view / theme / frost-mobile / 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         <div class="photo-edit-input-text">
8         <label id="photo-edit-albumname-label" for="photo-edit-albumname">{{$newalbum}}</label>
9         <input id="photo-edit-albumname" type="text" size="32" name="albname" value="{{$album}}" />
10         </div>
11
12         <div id="photo-edit-albumname-end"></div>
13
14         <div class="photo-edit-input-text">
15         <label id="photo-edit-caption-label" for="photo-edit-caption">{{$capt_label}}</label>
16         <input id="photo-edit-caption" type="text" size="32" name="desc" value="{{$caption}}" />
17         </div>
18
19         <div id="photo-edit-caption-end"></div>
20
21         <div class="photo-edit-input-text">
22         <label id="photo-edit-tags-label" for="photo-edit-newtag" >{{$tag_label}}</label>
23         <input name="newtag" id="photo-edit-newtag" size="32" title="{{$help_tags}}" type="text" />
24         </div>
25
26         <div id="photo-edit-tags-end"></div>
27
28         <div class="photo-edit-rotate-choice">
29         <label id="photo-edit-rotate-cw-label" for="photo-edit-rotate-cw">{{$rotatecw}}</label>
30         <input id="photo-edit-rotate-cw" class="photo-edit-rotate" type="radio" name="rotate" value="1" /><br />
31         </div>
32
33         <div class="photo-edit-rotate-choice">
34         <label id="photo-edit-rotate-ccw-label" for="photo-edit-rotate-ccw">{{$rotateccw}}</label>
35         <input id="photo-edit-rotate-ccw" class="photo-edit-rotate" type="radio" name="rotate" value="2" />
36         </div>
37         <div id="photo-edit-rotate-end"></div>
38
39         <div id="photo-edit-perms" class="photo-edit-perms" >
40                 <a href="#photo-edit-perms-select" id="photo-edit-perms-menu" class="popupbox button" title="{{$permissions}}"/>
41                         <span id="jot-perms-icon" class="icon {{$lockstate}} photo-perms-icon" ></span><div class="photo-jot-perms-text">{{$permissions}}</div>
42                 </a>
43                 <div id="photo-edit-perms-menu-end"></div>
44                 
45                 <div style="display: none;">
46                         <div id="photo-edit-perms-select" >
47                                 {{$aclselect}}
48                         </div>
49                 </div>
50         </div>
51         <div id="photo-edit-perms-end"></div>
52
53         <input id="photo-edit-submit-button" type="submit" name="submit" value="{{$submit}}" />
54         <input id="photo-edit-delete-button" type="submit" name="delete" value="{{$delete}}" onclick="return confirmDelete()"; />
55
56         <div id="photo-edit-end"></div>
57 </form>
58
59