Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Last active July 6, 2016 08:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/ab21978c28eaefa60868261470750fe8 to your computer and use it in GitHub Desktop.
Save bjoerntx/ab21978c28eaefa60868261470750fe8 to your computer and use it in GitHub Desktop.
@model List<TXTextControl.ReportingCloud.Template>
@{
ViewBag.Title = "Index";
}
<h2>All Templates</h2>
<table>
<tr>
<th>Filename</th>
<th>Modified</th>
</tr>
@foreach (TXTextControl.ReportingCloud.Template template in Model)
{
<tr>
<td>@template.TemplateName</td>
<td>@template.Modified</td>
</tr>
}
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment