Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Last active July 18, 2018 11:41
Show Gist options
  • Save bjoerntx/2d2975d7144f22ecfa20f9fb1e807fee to your computer and use it in GitHub Desktop.
Save bjoerntx/2d2975d7144f22ecfa20f9fb1e807fee to your computer and use it in GitHub Desktop.
@model List<TXTextControl.ReportingCloud.Template>
...
@foreach (var template in Model)
{
<tr>
<td><a onclick="LoadDocument('@template.TemplateName')">@template.TemplateName</a></td>
<td class="text-right"><small>@(template.Size / 1024)&nbsp;KB</small></td>
<td class="text-right"><small>@String.Format("{0:d}", template.Modified)</small></td>
</tr>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment