Skip to content

Instantly share code, notes, and snippets.

@dacanizares
Created September 6, 2016 04:51
Show Gist options
  • Save dacanizares/86a72448508479308da532ee708c3f46 to your computer and use it in GitHub Desktop.
Save dacanizares/86a72448508479308da532ee708c3f46 to your computer and use it in GitHub Desktop.
@model IEnumerable<ProjectDemo.Models.Videojuego>
<div class="list-group">
@foreach (var item in Model)
{
<a data-url="@Url.Content(string.Format("~/Home/MostrarVideojuego/{0}", item.Id))"
class="list-group-item">
@item.Nombre
</a>
}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment