new workspace and task order routes

This commit is contained in:
dandds
2018-12-13 16:05:44 -05:00
parent 3ca9d51b04
commit 6d92755a7f
24 changed files with 427 additions and 30 deletions

View File

@@ -11,9 +11,14 @@
]
) }}
{% if g.current_user.has_workspaces %}
{{ SidenavItem("Workspaces", href="/workspaces", icon="cloud", active=g.matchesPath('/workspaces')) }}
{% endif %}
{{ SidenavItem("Workspaces",
href="/workspaces",
icon="cloud",
active=g.matchesPath('/workspaces'),
subnav=[
{"label":"New Workspace", "href":url_for("workspaces.new"), "icon": "plus", "active": g.matchesPath('/workspaces/new')},
]
) }}
{% if g.Authorization.has_atat_permission(g.current_user, g.Permissions.VIEW_AUDIT_LOG) %}
{{ SidenavItem("Activity History", url_for('atst.activity_history'), icon="time", active=g.matchesPath('/activity-history')) }}

View File

@@ -0,0 +1,34 @@
{% extends "base.html" %}
{% from "components/text_input.html" import TextInput %}
{% block content %}
{% include "fragments/flash.html" %}
<form method="POST" action="{{ url_for('task_orders.update', task_order_id=task_order.id) }}" autocomplete="false">
{{ form.csrf_token }}
<div class="panel">
<div class="panel__heading">
<h1>Task Order</h1>
</div>
<div class="panel__content">
{{ TextInput(form.clin_0001) }}
{{ TextInput(form.clin_0003) }}
{{ TextInput(form.clin_1001) }}
{{ TextInput(form.clin_1003) }}
{{ TextInput(form.clin_2001) }}
{{ TextInput(form.clin_2003) }}
</div>
</div>
<div class='action-group'>
<button type="submit" class="usa-button usa-button-big usa-button-primary" tabindex="0">Save</button>
</div>
</form>
{% endblock %}

View File

@@ -0,0 +1,36 @@
{% extends "workspaces/base.html" %}
{% from "components/icon.html" import Icon %}
{% from "components/text_input.html" import TextInput %}
{% block workspace_content %}
{% include "fragments/flash.html" %}
<form method="POST" action="{{ url_for('workspaces.create') }}" autocomplete="false">
{{ form.csrf_token }}
<div class="panel">
<div class="panel__heading">
<h1>Workspace Settings</h1>
</div>
<div class="panel__content">
{{ TextInput(form.name, validation="workspaceName") }}
</div>
</div>
<div class='action-group'>
<button type="submit" class="usa-button usa-button-big usa-button-primary" tabindex="0">Save</button>
<a href='{{ url_for("workspaces.workspace_projects", workspace_id=workspace.id) }}' class='action-group__action icon-link'>
{{ Icon('x') }}
<span>Cancel</span>
</a>
</div>
</form>
{% endblock %}