Commit 58c384d4 authored by P.J. Janse van Rensburg's avatar P.J. Janse van Rensburg

Merge branch 'master' into bootstrap4

parents a8a10cf3 2d43a263
from admin import app, db
from admin.models import AVAILABLE_USER_TYPES, User, Post, Tag, Tree
from flask import Markup
from flask import Markup, send_file
from wtforms import validators
......@@ -31,6 +31,11 @@ def index():
return tmp
@app.route('/favicon.ico')
def favicon():
return send_file('static/favicon.ico')
# Custom filter class
class FilterLastNameBrown(BaseSQLAFilter):
def apply(self, query, value, alias=None):
......
......@@ -7,3 +7,7 @@ enum34; python_version < '3.0'
sqlalchemy_utils
arrow
colour
# note: for local development, replace 'Flask-Admin' above with a reference to
# your local copy of the repo e.g. '-e .' if you're installing this from the
# repo's root directory
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