Updating Warmup UI

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2011-06-03 17:44:46 -07:00
parent 2dda95fbf4
commit a605420d11
16 changed files with 416 additions and 143 deletions

View File

@@ -14,6 +14,12 @@
@Html.EditorFor(m => m.SiteName)
@Html.ValidationMessage("SiteName", "*")
</div>
<div>
<label for="@Html.FieldIdFor(m => m.BaseUrl)">@T("Base url ")</label>
@Html.TextBoxFor(m => m.BaseUrl, new { @class = "textMedium" })
<span class="hint">@T("Enter the fully qualified base url of your website.")</span>
<span class="hint">@T("e.g., http://localhost:30320/orchardlocal, http://www.yourdomain.com")</span>
</div>
<div>
<label for="SiteCulture">@T("Default Site Culture")</label>
@Html.DropDownList("SiteCulture", new SelectList(Model.SiteCultures, Model.SiteCulture))
@@ -41,10 +47,4 @@
@Html.TextBoxFor(m => m.PageSize, new { @class = "text-small" })
<span class="hint">@T("Determines the default number of items that are shown per page.")</span>
</div>
<div>
<label for="@Html.FieldIdFor(m => m.BaseUrl)">@T("Base url ")</label>
@Html.TextBoxFor(m => m.BaseUrl, new { @class = "textMedium" })
<span class="hint">@T("Enter the fully qualified base url of your website.")</span>
<span class="hint">@T("e.g., http://localhost:30320/orchardlocal, http://www.yourdomain.com")</span>
</div>
</fieldset>