aboutsummaryrefslogblamecommitdiffstats
path: root/alphabetlearning/templates/resources/resource_create.html
blob: c27222fa4397f5a94ef75f61e9a47c6c46c19341 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                   
       
                                
                                 
 



                                                          
                  
                                            
             
          

                      
{% extends "base.html" %}

{% load static %}
{% load crispy_forms_tags %}

{#    {% block extra_css %}#}
{#    <link rel="stylesheet" href="{% static 'css/forms.css' %}">#}
{#    {% endblock %}#}
{% block content %}
  <div>
    <div class="form-container">
      <h1>Add a new resource</h1>

      <form action="{% url 'resources:create_resource' %}"
            method="post"
            enctype="multipart/form-data">
        {% csrf_token %}
        {{ form }}
        <input type="submit" value="Submit">
      </form>
    </div>
  </div>
{% endblock content %}