NBloodServerSupervisor/WebInterface/Views/CustomMaps/Index.cshtml

15 lines
295 B
Plaintext

@model List<string>
@{
ViewData["Title"] = "Custom Maps";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h1>List of available custom maps</h1>
<ul>
@foreach (var map in Model)
{
<li><a href="@Url.Link("DownloadCustomMap", new { map = map })">@map</a></li>
}
</ul>