diff options
author | marijus <mario@mariovavti.com> | 2014-10-30 14:10:55 +0100 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-10-30 14:10:55 +0100 |
commit | 0ff4d9015b3b06412e84f6fbc32ae4e78e16d6ae (patch) | |
tree | b9abb270ec445a2961337b1c313d2225b9f8393b /view/tpl/album_edit.tpl | |
parent | fc704d1f2f274dd8a4c2906b9c017187c34a4060 (diff) | |
download | volse-hubzilla-0ff4d9015b3b06412e84f6fbc32ae4e78e16d6ae.tar.gz volse-hubzilla-0ff4d9015b3b06412e84f6fbc32ae4e78e16d6ae.tar.bz2 volse-hubzilla-0ff4d9015b3b06412e84f6fbc32ae4e78e16d6ae.zip |
some work on photo upload
Diffstat (limited to 'view/tpl/album_edit.tpl')
-rwxr-xr-x | view/tpl/album_edit.tpl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/view/tpl/album_edit.tpl b/view/tpl/album_edit.tpl index 84a47378b..a65887d3c 100755 --- a/view/tpl/album_edit.tpl +++ b/view/tpl/album_edit.tpl @@ -3,7 +3,14 @@ <label id="photo-album-edit-name-label" for="photo-album-edit-name" >{{$nametext}}</label> -<input type="text" name="albumname" value="{{$album}}" > +<input type="text" name="albumname" value="{{$album}}" list="dl-album-edit" /> + <datalist id="dl-album-edit"> + {{foreach $albums as $al}} + {{if $al.text}} + <option value="{{$al.text}}"> + {{/if}} + {{/foreach}} + </datalist> <div id="photo-album-edit-name-end"></div> |