Remove unused CSS class

This commit is contained in:
Roberto Rosario
2015-06-29 14:21:42 -04:00
parent f326007f40
commit 12c47027a6
3 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
<hr> <hr>
{% endif %} {% endif %}
<div class="well bs-component"> <div class="well">
{% if form.is_multipart %} {% if form.is_multipart %}
<form name="{{ form.prefix }}" enctype="multipart/form-data" method="{{ submit_method|default:'post' }}" action="{{ form_action }}" class="{{ form_class|default:'' }}"> <form name="{{ form.prefix }}" enctype="multipart/form-data" method="{{ submit_method|default:'post' }}" action="{{ form_action }}" class="{{ form_class|default:'' }}">
{% else %} {% else %}

View File

@@ -6,7 +6,7 @@
</h4> </h4>
<hr> <hr>
<div class="well bs-component"> <div class="well">
{% if is_multipart %} {% if is_multipart %}
<form enctype="multipart/form-data" method="{{ submit_method|default:'post' }}" action="{{ form_action }}"> <form enctype="multipart/form-data" method="{{ submit_method|default:'post' }}" action="{{ form_action }}">
{% else %} {% else %}

View File

@@ -1,4 +1,4 @@
<div class="well bs-component"> <div class="well">
{% if content %} {% if content %}
<p>{{ content }}</p> <p>{{ content }}</p>
{% endif %} {% endif %}