Skip to content

Instantly share code, notes, and snippets.

@joaomilho
Created June 16, 2014 21:39
Show Gist options
  • Save joaomilho/53401ec2f7c19657fa78 to your computer and use it in GitHub Desktop.
Save joaomilho/53401ec2f7c19657fa78 to your computer and use it in GitHub Desktop.
{% extends "app.html" %}
{% block content %}
<form action="{% url action="create" %}"
method="post">
<input name="name" placeholder="Name" />
<select name="species">
<option value="dog">Dog</option>
<option value="cat">Cat</option>
<option value="wolf">Wolf</option>
</select>
<input type="submit" />
</form>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment