Charts, login, manage queue, styling
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
@model string
|
||||
|
||||
<p><strong>There was an issue generating a chart for the selected data.</strong></p>
|
||||
<p><strong>Details:</strong> @Model</p>
|
||||
@@ -0,0 +1,20 @@
|
||||
@model LeafWeb.WebCms.Models.ChartViewModel
|
||||
@{
|
||||
var selectText = "Select CurveId";
|
||||
}
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div>Identifier: <strong>@Model.LeafInputIdentifier</strong>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-8">
|
||||
<span>CurveId:</span>
|
||||
@Html.DropDownList("CurveId", new SelectList(Model.AvailableCurveId, Model.CurveId), selectText)
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<img id="chart"/>
|
||||
<span class="help-block">
|
||||
<span id="chart-error"></span>
|
||||
</span>
|
||||
Reference in New Issue
Block a user