blob: 2c6daa16d5b8a19ab44069a838c09c45c681ef77 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{% 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 %}
{% crispy form form.helper %}
{# now for the submit button #}
</form>
</div>
</div>
{% endblock content %}
|