Rename accounts to workplaces
This commit is contained in:
parent
5016d9ea60
commit
1ee9b99876
@ -9,7 +9,7 @@ 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"/accounts", MainHandler, {'page': 'accounts'}, name='accounts' ),
|
||||
url( r"/workplaces", MainHandler, {'page': 'workplaces'}, name='workplaces' ),
|
||||
url( r"/requests", Request, {'page': 'requests'}, name='requests' ),
|
||||
url( r"/requests/new", RequestNew, {'page': 'requests_new'}, name='request_new' ),
|
||||
url( r"/requests/new/([0-9])", RequestNew, {'page': 'requests_new'}, name='request_form' ),
|
||||
|
@ -1 +0,0 @@
|
||||
$asset-path: '../';
|
@ -12,7 +12,7 @@
|
||||
<ul class="usa-nav-primary usa-accordion">
|
||||
{% for item in [
|
||||
['home', 'Home'],
|
||||
['accounts', 'Accounts'],
|
||||
['workplaces', 'Workplaces'],
|
||||
['requests', 'Requests'],
|
||||
['users', 'Users' ],
|
||||
['reports', 'Reports' ],
|
||||
|
@ -4,13 +4,13 @@
|
||||
|
||||
<main class="usa-section usa-content usa-width-one-whole" id="main-content">
|
||||
|
||||
<h1>Accounts</h1>
|
||||
<h1>Workplaces</h1>
|
||||
|
||||
<table class="usa-table-borderless" width="100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" width="50%">Account Name</th>
|
||||
<th scope="col" width="30%">Account Info</th>
|
||||
<th scope="col" width="50%">Workplace Name</th>
|
||||
<th scope="col" width="30%">Workplace Info</th>
|
||||
<th scope="col" width="20%">Actions</th>
|
||||
</tr>
|
||||
</thead>
|
Loading…
x
Reference in New Issue
Block a user