Name a request #160396084
This commit is contained in:
dandds
2018-09-19 13:40:28 -04:00
committed by GitHub
18 changed files with 65 additions and 13 deletions

View File

@@ -80,6 +80,8 @@
{{ DefinitionReviewField("Total Spend", "details_of_use", "dollar_value", filter="dollars") }}
{{ DefinitionReviewField("Start Date", "details_of_use", "start_date") }}
{{ DefinitionReviewField("Request Name", "details_of_use", "name") }}
</dl>
<hr>

View File

@@ -17,7 +17,7 @@
<section class='panel'>
<header class='panel__heading panel__heading--divider request-approval__heading'>
<h1 class='h2'>Request #{{ request.id }}
<h1 class='h2'>Request: {{ request.displayname }}
</h1>
<span class='label label--info'>{{ current_status }}</span>
</header>

View File

@@ -24,7 +24,7 @@
<div class="panel">
<div class="panel__heading">
<h1>Request Details</h1>
<h2><span class="subtitle">#{{ request.id }}</span> <span class="label label--info">{{ request.status_displayname }}</span></h2>
<h2><span class="subtitle">{{ request.displayname }}</span> <span class="label label--info">{{ request.status_displayname }}</span></h2>
</div>
<div class="panel__content">

View File

@@ -58,7 +58,7 @@
<div class="panel__heading">
<h1>Financial Verification</h1>
<div class="subtitle" id="financial-verification"><h2>Order #{{ request.id }}</h2></div>
<div class="subtitle" id="financial-verification"><h2>Request: {{ request.displayname }}</h2></div>
</div>
<div class="panel__content">

View File

@@ -90,7 +90,7 @@
<table>
<thead>
<tr>
<th scope="col">JEDI Cloud Request ID</th>
<th scope="col">JEDI Cloud Request Name</th>
<th scope="col">Date Request Submitted</th>
{% if extended_view %}
<th scope="col">Date Request Last Edited</th>
@@ -107,7 +107,7 @@
{% for r in requests %}
<tr>
<th scope="row">
<a class='icon-link icon-link--large' href="{{ r.edit_link }}">{{ r.order_id }}</a>
<a class='icon-link icon-link--large' href="{{ r.edit_link }}">{{ r.name }}</a>
{% if r.action_required %}<span class="label label--info">Action Required</span>{% endif %}
</th>
<td>{{ r.last_submission_timestamp | formattedDate }}</td>

View File

@@ -78,6 +78,7 @@
{{ TextInput(f.dollar_value, validation='dollars', placeholder='$0', tooltip='You may specify a different Total Spend amount to cover other JEDI Cloud services that the JEDI Cloud cost calculator was not able to estimate. Examples may include support packages from the cloud service provider.') }}
{{ DateInput(f.start_date, placeholder='MM / DD / YYYY', validation='date') }}
{{ TextInput(f.name, placeholder='Request Name', validation='workspaceName') }}
</div>
</details-of-use>