Move audit_log template to a directory

This commit is contained in:
Patrick Smith 2018-11-30 11:31:30 -05:00
parent 72432a2fea
commit 1be7fcdd8a
2 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ def get_pagination_opts(request, default_page=1, default_per_page=100):
def activity_history(): def activity_history():
pagination_opts = get_pagination_opts(request) pagination_opts = get_pagination_opts(request)
audit_events = AuditLog.get_all_events(g.current_user, pagination_opts) audit_events = AuditLog.get_all_events(g.current_user, pagination_opts)
return render_template("audit_log.html", audit_events=audit_events) return render_template("audit_log/audit_log.html", audit_events=audit_events)
@bp.route("/about") @bp.route("/about")