44 lines
703 B
Plaintext
44 lines
703 B
Plaintext
@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>
|