Ready to test Max RDS
This commit is contained in:
43
Archive/Views/Pages/RdsMax.cshtml
Normal file
43
Archive/Views/Pages/RdsMax.cshtml
Normal file
@ -0,0 +1,43 @@
|
||||
@model System.Collections.Generic.List<string[]>
|
||||
@{
|
||||
ViewData["Title"] = "Max RDS per Reactor with Recipes";
|
||||
}
|
||||
|
||||
<style>
|
||||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
div.container-fluid {
|
||||
height: 90%;
|
||||
}
|
||||
|
||||
#HeaderGrid,
|
||||
#FieldsGrid {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.FieldTitle {
|
||||
font-weight: bold;
|
||||
}
|
||||
</style>
|
||||
|
||||
<h4>Max RDS per Reactor with Recipes</h4>
|
||||
|
||||
<table border="1" style="width:100%">
|
||||
@foreach (string[] row in Model)
|
||||
{
|
||||
<tr>
|
||||
@foreach (string column in row)
|
||||
{
|
||||
<td>@Html.Raw(column)</td>
|
||||
}
|
||||
</tr>
|
||||
}
|
||||
</table>
|
||||
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
});
|
||||
</script>
|
Reference in New Issue
Block a user