Charts, login, manage queue, styling

This commit is contained in:
2016-12-08 12:15:47 -05:00
parent 6fd7e46f5d
commit a29de1ecb8
30 changed files with 808 additions and 90 deletions
+20
View File
@@ -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>