Display results from Piscal processing
Error handling for Piscal processing
This commit is contained in:
@@ -1,12 +1,19 @@
|
||||
@model LeafWeb.Web.ViewModels.LeafOutput.LeafOutputViewModel
|
||||
@model IEnumerable<LeafWeb.Web.ViewModels.LeafOutput.LeafOutputViewModel>
|
||||
|
||||
@{
|
||||
ViewBag.Title = "Users";
|
||||
ViewBag.Title = "Results";
|
||||
var grid = new WebGrid(Model, rowsPerPage: 45);
|
||||
}
|
||||
|
||||
<h1>EDO Results</h1>
|
||||
<h1>Results</h1>
|
||||
|
||||
<div class="row">
|
||||
|
||||
</div>
|
||||
@grid.GetHtml(columns:
|
||||
grid.Columns(
|
||||
grid.Column("LeafInputIdentifier", "Identifier"),
|
||||
grid.Column("LeafInputSiteId", "Site Id"),
|
||||
grid.Column("LeafInputFilename", "Filename"),
|
||||
grid.Column("LeafInputName", "Submitted By"),
|
||||
grid.Column("CurrentStatus", "Status")
|
||||
),
|
||||
htmlAttributes: new { @class = "table table-striped table-bordered table-hover table-condensed" }
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user