Commit c89a8d69 authored by Serge S. Koval's avatar Serge S. Koval

Merge branch 'master' of github.com:mrjoes/flask-admin

parents f545ca70 e6b24c78
......@@ -115,7 +115,7 @@ Steps to add new model backend:
class MyBaseFilter(BaseFilter):
def __init__(self, column, name, options=None, data_type=None):
super(MyBaeFilter, self).__init__(name, options, data_type)
super(MyBaseFilter, self).__init__(name, options, data_type)
self.column = column
......
......@@ -95,7 +95,7 @@
<p class="help-block">{{ field.description }}</p>
{% endif %}
{% if field.errors %}
<ul>
<ul class="input-errors">
{% for e in field.errors if e is string %}
<li>{{ e }}</li>
{% endfor %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment