diff --git a/atst/app.py b/atst/app.py index 6b2a8cc4..17253d4a 100644 --- a/atst/app.py +++ b/atst/app.py @@ -8,8 +8,9 @@ def make_app(**kwargs): app = tornado.web.Application([ url( r"/", MainHandler, {'page': 'login'}, name='login' ), url( r"/home", MainHandler, {'page': 'home'}, name='home' ), - url( r"/requests", Request, {'page': 'requests'}, name='requests' ), url( r"/accounts", MainHandler, {'page': 'accounts'}, name='accounts' ), + url( r"/requests", Request, {'page': 'requests'}, name='requests' ), + url( r"/requests/new", Request, {'page': 'requests_new'}, name='request_new' ), url( r"/requests/([0-9])", Request, {'page': 'requests'}, name='request_form' ), url( r"/users", MainHandler, {'page': 'users'}, name='users' ), url( r"/reports", MainHandler, {'page': 'reports'}, name='reports' ), diff --git a/scss/base/_typography.scss b/scss/base/_typography.scss index 80f7501d..53184bac 100644 --- a/scss/base/_typography.scss +++ b/scss/base/_typography.scss @@ -1,3 +1,10 @@ h1, h2, h3, h4, h5, h6 { font-family: $font-sans; -} + + .usa-button { + position: relative; + bottom: 0.5rem; + left: 1rem; + } + +} \ No newline at end of file diff --git a/templates/accounts.html.to b/templates/accounts.html.to index 472481f4..d074dd5e 100644 --- a/templates/accounts.html.to +++ b/templates/accounts.html.to @@ -7,7 +7,6 @@

Accounts

- diff --git a/templates/requests.html.to b/templates/requests.html.to index a50da5a9..6455ef6b 100644 --- a/templates/requests.html.to +++ b/templates/requests.html.to @@ -4,7 +4,54 @@
-

Requests

+

Requests New Request

+ +
Account Name
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Order IDRequest DateRequesterTotal AppsStatusActions
#36552612 New5/17/2018Friedrich Straat2PendingDownload
#8736291010/2/2017Pietro Quirinis1CompleteDownload
#299381721/7/2017Marina Borsetti1DeniedDownload
+ +

+
+ + ‹ All requests +

New Request

+ + @@ -17,6 +64,7 @@ Save & Continue {% end %} + {% end %} diff --git a/templates/requests_new.html.to b/templates/requests_new.html.to new file mode 100644 index 00000000..c614c4bc --- /dev/null +++ b/templates/requests_new.html.to @@ -0,0 +1,11 @@ +{% extends "base.html.to" %} + +{% block content %} + +
+ +

New Request

+
+ +{% end %} +