mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2025-01-10 03:52:36 +01:00
15 lines
295 B
Plaintext
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>
|