This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
<nav id="rf-nav" class="navbar fixed-top navbar-expand-lg navbar-dark" style="background-color: #00205B;">
|
||||
{{!-- navbar-dark bg-success --}}
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
|
||||
aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
{{!-- navbar-dark bg-success --}}
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
||||
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav mr-auto">
|
||||
@@ -16,6 +16,10 @@
|
||||
<a class="rfac nav-link mdi mdi-contacts" href="#!/customers">Customers </a>
|
||||
</li>
|
||||
|
||||
<li id="trials" class="nav-item">
|
||||
<a class="rfac nav-link mdi mdi-voice" href="#!/trials">Trial requests </a>
|
||||
</li>
|
||||
|
||||
<li id="subscriptions" class="nav-item">
|
||||
<a class="rfac nav-link mdi mdi-basket" href="#!/subscription">Subscriptions </a>
|
||||
</li>
|
||||
@@ -28,7 +32,7 @@
|
||||
<a class="rfac nav-link mdi mdi-bug" href="#!/rfcases">Cases </a>
|
||||
</li>
|
||||
|
||||
<li id="rfops" class="nav-item">
|
||||
<li id="rfops" class="nav-item">
|
||||
<a class="rfac nav-link mdi mdi-server-network" href="#!/ops">Server Ops </a>
|
||||
</li>
|
||||
|
||||
|
||||
56
wwwroot/js/templates/app.trialEdit.handlebars
Normal file
56
wwwroot/js/templates/app.trialEdit.handlebars
Normal file
@@ -0,0 +1,56 @@
|
||||
<div>
|
||||
<form id="frm" method="post" action="index.html">
|
||||
|
||||
|
||||
<div class="form-group">
|
||||
<label for="regTo">Registered to</label>
|
||||
<input class="form-control" type="text" id="regTo" name="regTo" value="" readonly>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="customerName">Rockfish customer name</label>
|
||||
<input class="form-control" type="text" id="customerName" name="customerName" value="" readonly>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="dtcreated">Created</label>
|
||||
<input class="form-control" type="date" id="dtcreated" name="dtcreated" value="" readonly>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="email">Email</label>
|
||||
<input class="form-control" type="text" id="email" name="email" value="" readonly>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="code">Fetch code</label>
|
||||
<input class="form-control" type="text" id="code" name="code" value="" readonly>
|
||||
</div>
|
||||
|
||||
<div class="form-check">
|
||||
<label class="form-check-label text-success font-weight-bold" for="fetched">
|
||||
<input class="form-check-input" type="checkbox" name="fetched" id="fetched"> License fetched</label>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="dtFetched">Fetched on</label>
|
||||
<input class="form-control" type="date" id="dtfetched" name="dtfetched" value="" readonly>
|
||||
</div>
|
||||
|
||||
{{!-- <div class="form-group">
|
||||
<label for="fetchFrom">Fetched from</label>
|
||||
<input class="form-control" type="text" id="fetchFrom" name="fetchFrom" value="" readonly>
|
||||
</div> --}}
|
||||
|
||||
<div class="form-group">
|
||||
<label for="key">Key</label>
|
||||
<textarea class="form-control form-control-lg" id="key" name="key" rows="10" readonly/>
|
||||
</div>
|
||||
|
||||
<div class="app-frm-buttons mt-5">
|
||||
<button id="btn-save" class="btn btn-success">Save</button>
|
||||
<button id="btn-delete" class="btn btn-outline-dark">Delete</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
3
wwwroot/js/templates/app.trials.handlebars
Normal file
3
wwwroot/js/templates/app.trials.handlebars
Normal file
@@ -0,0 +1,3 @@
|
||||
<div>
|
||||
<div id="rf-list" class="rf-list"/>
|
||||
</div>
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user