From 5acaf2c7c2a9006b0cc52cf8b84d06b105a2003c Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Thu, 30 Aug 2018 14:55:32 -0400 Subject: [PATCH] use selector macro on new member screen --- templates/member_new.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/member_new.html b/templates/member_new.html index ad3723bf..a1819bed 100644 --- a/templates/member_new.html +++ b/templates/member_new.html @@ -3,6 +3,7 @@ {% from "components/icon.html" import Icon %} {% from "components/text_input.html" import TextInput %} {% from "components/options_input.html" import OptionsInput %} +{% from "components/selector.html" import Selector %} {% block content %} @@ -20,7 +21,7 @@ {{ TextInput(form.last_name) }} {{ TextInput(form.email,placeholder='jane@mail.mil', validation='email') }} {{ TextInput(form.dod_id,placeholder='10-digit number on the back of the CAC', validation='dodId') }} - {{ OptionsInput(form.workspace_role) }} + {{ Selector(form.workspace_role) }}