Slight (bad) hack to ensure that the ticks appear on the manage user page

- changes imports for utils from broken version on previous branch
This commit is contained in:
Martyn Inglis
2016-03-01 10:45:13 +00:00
parent f0b5ac9ceb
commit 7b5e8061e2
11 changed files with 193 additions and 192 deletions

View File

@@ -8,7 +8,7 @@ from flask import (
)
from flask_login import login_required
from notifications_python_client.errors import HTTPError
from notification_utils.template import Template
from utils.template import Template
from app import job_api_client
from app.main import main

View File

@@ -1,7 +1,7 @@
from flask import render_template, current_app, abort
from flask_wtf import Form
from wtforms import StringField, PasswordField, TextAreaField, FileField, validators
from notification_utils.template import Template
from utils.template import Template
from app.main import main