help text update

This commit is contained in:
Grayson Walker
2020-04-10 21:49:57 -04:00
parent 252d5ff2af
commit 89066ecfd0
18 changed files with 165 additions and 165 deletions

View File

@ -7,10 +7,10 @@
<tbody>
<tr>
<td>
<label class="control-label">Content: </label>
<Label For="content" HelpText="Enter the module content">Content: </Label>
</td>
<td>
<textarea class="form-control" @bind="@_content" rows="5"></textarea>
<textarea id="content" class="form-control" @bind="@_content" rows="5"></textarea>
</td>
</tr>
</tbody>

View File

@ -7,10 +7,10 @@
<tbody>
<tr>
<td>
<label for="Title" class="control-label">Content: </label>
<Label For="content" HelpText="Enter the module content">Content: </Label>
</td>
<td>
<textarea class="form-control" @bind="@_content" rows="5"></textarea>
<textarea id="content" class="form-control" @bind="@_content" rows="5"></textarea>
</td>
</tr>
</tbody>

View File

@ -33,18 +33,18 @@
<tbody>
<tr>
<td>
<label for="Title" class="control-label">Title: </label>
<Label For="title" HelpText="Enter the title of the module">Title: </Label>
</td>
<td>
<input type="text" name="Title" class="form-control" @bind="@_title" />
<input id="title" type="text" name="Title" class="form-control" @bind="@_title" />
</td>
</tr>
<tr>
<td>
<label for="Container" class="control-label">Container: </label>
<Label For="container" HelpText="Select the module's container">Container: </Label>
</td>
<td>
<select class="form-control" @bind="@_containerType">
<select id="container" class="form-control" @bind="@_containerType">
<option value="">&lt;Select Container&gt;</option>
@foreach (KeyValuePair<string, string> container in _containers)
{
@ -55,16 +55,16 @@
</tr>
<tr>
<td colspan="2" align="center">
<label for="Name" class="control-label">Permissions: </label>
<Label For="permissions" HelpText="Who do you want to be able to access the module">Permissions: </Label>
<PermissionGrid EntityName="@EntityNames.Module" PermissionNames="@_permissionNames" Permissions="@_permissions" @ref="_permissionGrid" />
</td>
</tr>
<tr>
<td>
<label for="Page" class="control-label">Page: </label>
<Label For="page" HelpText="The page that the module is on">Page: </Label>
</td>
<td>
<select class="form-control" @bind="@_pageId">
<select id="page" class="form-control" @bind="@_pageId">
@foreach (Page p in PageState.Pages)
{
<option value="@p.PageId">@p.Name</option>