/themes/default/templates/editpost_form.html
HTML | 12 lines | 12 code | 0 blank | 0 comment | 0 complexity | 0a527513059404596dffb64b0f8acf50 MD5 | raw file
Possible License(s): Apache-2.0, LGPL-2.1
1<form id="editpost" method="post"> 2 <label for="title">Title:</label> <br /> 3 <input name="title" id="title" maxlength="100" value="{{ post.title|escape }}" /> 4 <br /> 5 <label for="tags">Tags:</label> <br /> 6 <input name="tags" id="tags" maxlength="100" value="{% for tag in post.tags %}{{ tag }}{% if not forloop.last %}, {% endif %}{% endfor %}" /> 7 <br /> 8 <label for="post_content">Content:</label> <br /> 9 <textarea name="post_content" id="post_content">{{ post.content|escape }}</textarea> 10 <br /> 11 <input type="submit" value="Submit Changes" /> 12</form>