Skip to content

Instantly share code, notes, and snippets.

@divyanshikathuria
Created June 23, 2014 16:57
Show Gist options
  • Save divyanshikathuria/022a849e873fefd2ef3b to your computer and use it in GitHub Desktop.
Save divyanshikathuria/022a849e873fefd2ef3b to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Lab Reports</title>
</head>
<body>
<form action='librehatti/print/views/add_material' method='POST'>
{% csrf_token %}
<b>Material:</b>
<select>
{% for i in material_name %}
<option value='{{i.name}}' >{{i.name}} </option>
{% endfor %}
</select>
<p><b>Time span:</b></p>
<p>From:<input type="text" name="From" />
To: <input type="text" name="To" /></p>
<input type="submit" value="Submit" />
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment