Merge pull request #685 from auto-mat/bootstrap4fixes

Change bootstrap to bootstrap4form in a few places that were missed
This commit is contained in:
Garret Wassermann 2018-12-27 17:09:26 -05:00 committed by GitHub
commit 2bd16f554b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 %} {% block helpdesk_title %}{% trans "Edit Ticket" %}{% endblock %}
@ -24,7 +24,7 @@
<form method='post' action='./'> <form method='post' action='./'>
<fieldset> <fieldset>
{{ form|bootstrap }} {{ form|bootstrap4form }}
{% comment %} {% comment %}
{% for field in form %} {% for field in form %}
{% if field.is_hidden %} {% if field.is_hidden %}

View File

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