Advertisement
Guest User

rendered django form

a guest
Apr 3rd, 2014
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.28 KB | None | 0 0
  1. <form action="/admin/item/create/" method="post"><input type='hidden' name='csrfmiddlewaretoken' value='QPdrLpgze838kftvEnIvdQ6yQq1D2Llp' />
  2.  
  3. <p><label for="id_name">Name:</label> <input id="id_name" maxlength="63" name="name" type="text" /> <span class="helptext">name of the item</span></p>
  4. <p><label for="id_flavor">Flavor:</label> <textarea cols="40" id="id_flavor" name="flavor" rows="10">
  5. </textarea> <span class="helptext">short description of the item</span></p>
  6. <p><label for="id_price">Price:</label> <input id="id_price" name="price" type="text" /> <span class="helptext">its market value</span></p>
  7. <p><label for="id_weight">Weight:</label> <input id="id_weight" name="weight" type="text" /> <span class="helptext">weight of the item</span></p>
  8. <p><label for="id_min_level">Min level:</label> <input id="id_min_level" name="min_level" type="text" /> <span class="helptext">the minimum required level to use it</span></p>
  9. <p><label for="id_klass">Klass:</label> <select id="id_klass" name="klass">
  10. <option value="" selected="selected">---------</option>
  11. <option value="Warden">Warden</option>
  12. <option value="Avenger">Avenger</option>
  13. <option value="Any">Any</option>
  14. </select> <span class="helptext">what classes can use it</span></p>
  15.  
  16. <input type="submit" value="Submit" />
  17. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement