diff options
author | friendica <info@friendica.com> | 2014-11-18 19:02:28 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-11-18 19:02:28 -0800 |
commit | 3224848bad07fefec7ab830e70634740329ccae6 (patch) | |
tree | 63f9cd16df32e728c509f7154e6a8c103650e6bf /view/tpl | |
parent | 11f0b45a9015a717e6e0da1bfd5a1c61381d64ed (diff) | |
download | volse-hubzilla-3224848bad07fefec7ab830e70634740329ccae6.tar.gz volse-hubzilla-3224848bad07fefec7ab830e70634740329ccae6.tar.bz2 volse-hubzilla-3224848bad07fefec7ab830e70634740329ccae6.zip |
turn the "adult photo flagging" (which prevents a particularly flagged photo from showing up in your top level albums) into a feature so it doesn't clutter the normal photo edit form. This feature was a quick hack and needs more work; but it could be important to somebody.
Diffstat (limited to 'view/tpl')
-rwxr-xr-x | view/tpl/photo_view.tpl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl index a741a5ce7..45a7cd7e5 100755 --- a/view/tpl/photo_view.tpl +++ b/view/tpl/photo_view.tpl @@ -59,9 +59,12 @@ <label class="radio-inline" id="photo-edit-rotate-cw-label" for="photo-edit-rotate-cw"><input id="photo-edit-rotate-cw" type="radio" name="rotate" value="1" />{{$edit.rotatecw}}</label> <label class="radio-inline" id="photo-edit-rotate-ccw-label" for="photo-edit-rotate-ccw"><input id="photo-edit-rotate-ccw" type="radio" name="rotate" value="2" />{{$edit.rotateccw}}</label> </div> + {{if $edit.adult_enabled}} <div class="form-group"> {{include file="field_checkbox.tpl" field=$edit.adult}} </div> + {{/if}} + {{$edit.aclselect}} <div class="form-group pull-left"> |