mirror of
https://github.com/tjsga/studyguides.git
synced 2025-04-04 19:30:17 -04:00
12 lines
252 B
HTML
12 lines
252 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<form action='' method='post' enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
{% endblock %}
|