From 60445b9593bf1a9a809d2493be0426e13393c4fa Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Tue, 25 Sep 2018 14:22:07 -0400 Subject: [PATCH] add temporary alert --- templates/user/edit.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/templates/user/edit.html b/templates/user/edit.html index 709892cc..44cbc71f 100644 --- a/templates/user/edit.html +++ b/templates/user/edit.html @@ -1,7 +1,13 @@ {% extends "base.html" %} +{% from "components/alert.html" import Alert %} {% block content %}
+ {{ Alert('This form does not yet function', + message="

Functionality of this form is pending more engineering work. Engineers, please remove this alert when done.

", + level='warning' + ) }} +