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









                                                                   











                                                            

                      
{% extends "base.html" %}

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

{#    {% block extra_css %}#}
{#    <link rel="stylesheet" href="{% static 'css/forms.css' %}">#}
{#    {% endblock %}#}
{% block content %}
  <div class="container">
    <div class="row d-flex justify-content-center">
      <div class="col-md-10 bg-light mt-lg-4">
        <h2>Upload a new resource</h2>
        <p>{% lorem %}</p>
        <form action="{% url 'resources:create_resource' %}"
              method="post"
              enctype="multipart/form-data">
          {% csrf_token %}
          {% crispy form form.helper %}
        </form>
      </div>
    </div>
  </div>
{% endblock content %}