Change bootstrap to bootstrap4form in a few places that were missed

This commit is contained in:
Timothy Hobbs 2018-12-27 17:28:40 +01:00
parent 9fd104af89
commit cbb15c7bcb
No known key found for this signature in database
GPG Key ID: 9CA9B3D779CEEDE7
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
{% extends "helpdesk/base.html" %}{% load i18n bootstrap %}
{% extends "helpdesk/base.html" %}{% load i18n bootstrap4form %}
{% block helpdesk_title %}{% trans "Edit Ticket" %}{% endblock %}
@ -24,7 +24,7 @@
<form method='post' action='./'>
<fieldset>
{{ form|bootstrap }}
{{ form|bootstrap4form }}
{% comment %}
{% for field in form %}
{% if field.is_hidden %}

View File

@ -1,5 +1,5 @@
{% extends "helpdesk/public_base.html" %}
{% load i18n bootstrap %}
{% load i18n bootstrap4form %}
{% block helpdesk_body %}
@ -13,7 +13,7 @@
<form role="form" method='post' action='./#submit' enctype='multipart/form-data'>
<fieldset>
{{ form|bootstrap }}
{{ form|bootstrap4form }}
{% comment %}
{% for field in form %}