Parse 12 vs 24 bit colors eventually
This commit is contained in:
+23
-4
@@ -1,8 +1,27 @@
|
||||
@{
|
||||
ViewData["Title"] = "Home Page";
|
||||
@model IEnumerable<DirectoryModel>
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Select";
|
||||
}
|
||||
|
||||
<form enctype="multipart/form-data" method="post" asp-action="LoadConfiguration">
|
||||
<form enctype="multipart/form-data" method="post" asp-action="Upload">
|
||||
<input type="file" name="file">
|
||||
<input class="btn" type="submit" value="Upload">
|
||||
</form>
|
||||
</form>
|
||||
|
||||
<ul>
|
||||
@foreach (var directory in Model)
|
||||
{
|
||||
<li>
|
||||
@directory.Name
|
||||
<ul>
|
||||
@foreach (var config in directory.Configurations)
|
||||
{
|
||||
<li>
|
||||
<a href="javascript:" data-directory="@directory.Name">@config.Name</a>
|
||||
</li>
|
||||
}
|
||||
</ul>
|
||||
</li>
|
||||
}
|
||||
</ul>
|
||||
@@ -0,0 +1,10 @@
|
||||
@model PlaysetModel
|
||||
|
||||
@{
|
||||
ViewBag.Title = "Play";
|
||||
Layout = "_Layout";
|
||||
}
|
||||
|
||||
<pre>
|
||||
@Json.Serialize(Model)
|
||||
</pre>
|
||||
Reference in New Issue
Block a user