diff --git a/templates/navigation/topbar.html.to b/templates/navigation/topbar.html.to
index 207f5ecd..9af26690 100644
--- a/templates/navigation/topbar.html.to
+++ b/templates/navigation/topbar.html.to
@@ -6,7 +6,7 @@
- {{ "Workspace "+workspace_id if context == 'workspace' else "JEDI" }}
+ {{ "Workspace 123456" if context == 'workspace' else "JEDI" }}
{% module Icon('caret_down', classes='topbar__link-icon icon--tiny') %}
diff --git a/templates/navigation/workspace_navigation.html.to b/templates/navigation/workspace_navigation.html.to
index 93ab38b1..21b48bb5 100644
--- a/templates/navigation/workspace_navigation.html.to
+++ b/templates/navigation/workspace_navigation.html.to
@@ -2,20 +2,28 @@
{% module SidenavItem(
"Projects",
- href=reverse_url('workspace_projects', workspace_id),
- active=matchesPath('\/workspaces\/[A-Za-z0-9]*\/projects'))
- %}
+ href=reverse_url('workspace_projects', '123456'),
+ active=matchesPath('\/workspaces\/[A-Za-z0-9]*\/projects'),
+ subnav=[
+ {
+ "label": "Add New Project",
+ "href":"/",
+ "active": matchesPath('workspaces/projects/new'),
+ "icon": "plus"
+ }
+ ]
+ )%}
{% module SidenavItem(
"Members",
- href=reverse_url('workspace_members', workspace_id),
- active=matchesPath('\/workspaces\/[A-Za-z0-9]*\/members'))
- %}
+ href=reverse_url('workspace_members', '123456'),
+ active=matchesPath('\/workspaces\/[A-Za-z0-9]*\/members')
+ )%}
{% module SidenavItem(
"Funding & Reports",
- href=reverse_url('workspace_projects', workspace_id),
- active=matchesPath('\/workspaces\/[A-Za-z0-9]*\/reports'))
- %}
+ href=reverse_url('workspace_projects', '123456'),
+ active=matchesPath('\/workspaces\/[A-Za-z0-9]*\/reports')
+ )%}