Skip to content

Commit

Permalink
Use crispy filter on boot process form
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianDAlessandro committed Sep 17, 2024
1 parent 9309d67 commit 8562dbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main/templates/main/boot_process.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{% extends "main/base.html" %}
{% load crispy_forms_tags %}

{% block title %}Boot Process{% endblock title %}

{% block content %}

<form action="{% url 'main:boot_process' %}" method="post">
{% csrf_token %}
{{ form }}
{{ form|crispy }}
<input type="submit" value="Submit">
</form>

Expand Down

0 comments on commit 8562dbe

Please sign in to comment.