HTMLify
media-edit.html
Views: 428 | Author: abh
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | <!-- media-edit.html --> <form action="/action/edit-media" method="POST"> <input type="hidden" name="oldname" value="{{ path[session["user"]["username"]|length+1:] }}" /> <input type="text" name="filename" value="{{ path[session["user"]["username"]|length+1:] }}" />Mode: <input type="radio" name="mode" value="r" {% if current_mode == "r" %}checked{% endif %}/> Raw <input type="radio" name="mode" value="s" {% if current_mode == "s" %}checked{% endif %}/> Show | Visibility: <input type="radio" name="visibility" value="p" {% if current_visibility == "p" %}checked{% endif %}/> Public <input type="radio" name="visibility" value="h" {% if current_visibility == "h" %}checked{% endif %}/> Hide <input type="radio" name="visibility" value="o" {% if current_visibility == "o" %}checked{% endif %}/> Once <input type="submit" value="save"> <a href="/dashboard">Back</a> <br> <!--{% if filetype == "image" %}--> <img src="{{ path }}" /> <!--{% elif filetype == "audio" %}--> <audio> <source src="{{ path }}"> </audio> <!--{% elif filetype == "video" %}--> <video> <source src="{{ path }}" > </video> <!--{% endif %}--> </form> |