missing file commit (#977)

This commit is contained in:
Andrew Camilleri 2019-08-20 17:00:50 +02:00 committed by Nicolas Dorier
parent b29b46bbc7
commit 1635e1e3fb

View file

@ -26,6 +26,11 @@
<input asp-for="DiscourageSearchEngines" type="checkbox" class="form-check-inline"/>
<span asp-validation-for="DiscourageSearchEngines" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="AllowLightningInternalNodeForAll"></label>
<input asp-for="AllowLightningInternalNodeForAll" type="checkbox" class="form-check-inline"/>
<span asp-validation-for="AllowLightningInternalNodeForAll" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="RootAppId"></label>
<select asp-for="RootAppId" asp-items="@(new SelectList(ViewBag.AppsList, nameof(SelectListItem.Value), nameof(SelectListItem.Text), Model.RootAppId))" class="form-control"></select>