blob: bb37ea13ce19a7a390f611851ff15d60aa349605 (
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
26
|
{% extends "base.html" %}
{% load static %}
{% load crispy_forms_tags %}
{% block title %}
Joanna Lemon Resources - 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 %}
|