blob: 4c318c71f3777b517ad97eecb51adfbad66cecd0 (
plain) (
tree)
|
|
{% extends "base.html" %}
{% load static %}
{% load crispy_forms_tags %}
{% block title %}
Joanna Lemon Learning - Update Resource
{% endblock title %}
{# {% block extra_css %}#}
{# <link rel="stylesheet" href="{% static 'css/forms.css' %}">#}
{# {% endblock %}#}
{% block content %}
<div class="row d-flex justify-content-center">
<div class="col bg-light mt-lg-4 p-4 border border-success border-opacity-25 rounded">
<h2>Update this resource</h2>
<p>{% lorem %}</p>
<form action="{% url 'resources:resource_update_metadata' resource.id %}"
method="post">
{% csrf_token %}
{{ form|crispy }}
{# now for the submit button #}
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
{% endblock content %}
|