Skip to content

Instantly share code, notes, and snippets.

@ztirom
Last active March 6, 2016 20:04
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 ztirom/d64c98a647dca189c456 to your computer and use it in GitHub Desktop.
Save ztirom/d64c98a647dca189c456 to your computer and use it in GitHub Desktop.
<hr />
<h2>Device list</h2>
<ul>
@{
foreach (var device in ViewBag.data)
{
<li>
@device.Id -
@device.Authentication.SymmetricKey.PrimaryKey -
<a href="@Url.Action("DeleteDevice", new { id = device.Id })">
<span class="glyphicon glyphicon-trash"></span>
</a>
</li>
}
}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment