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

@ -10,52 +10,52 @@
<table class="table table-borderless">
<tr>
<td>
<label class="control-label">Date/Time: </label>
<Label For="dateTime" HelpText="The date and time of this log">Date/Time: </Label>
</td>
<td>
<input class="form-control" @bind="@_logDate" disabled />
<input id="dateTime" class="form-control" @bind="@_logDate" disabled />
</td>
</tr>
<tr>
<td>
<label class="control-label">Level: </label>
<Label For="level" HelpText="The level of this log">Level: </Label>
</td>
<td>
<input class="form-control" @bind="@_level" disabled />
<input id="level" class="form-control" @bind="@_level" disabled />
</td>
</tr>
<tr>
<td>
<label class="control-label">Feature: </label>
<Label For="feature" HelpText="The feature that was affected">Feature: </Label>
</td>
<td>
<input class="form-control" @bind="@_feature" disabled />
<input id="feature" class="form-control" @bind="@_feature" disabled />
</td>
</tr>
<tr>
<td>
<label class="control-label">Function: </label>
<Label For="function" HelpText="The function that was performed">Function: </Label>
</td>
<td>
<input class="form-control" @bind="@_function" disabled />
<input id="function" class="form-control" @bind="@_function" disabled />
</td>
</tr>
<tr>
<td>
<label class="control-label">Category: </label>
<Label For="category" HelpText="The categories that were affected">Category: </Label>
</td>
<td>
<input class="form-control" @bind="@_category" disabled />
<input id="category" class="form-control" @bind="@_category" disabled />
</td>
</tr>
@if (_pageName != string.Empty)
{
<tr>
<td>
<label class="control-label">Page: </label>
<Label For="page" HelpText="The page that was affected">Page: </Label>
</td>
<td>
<input class="form-control" @bind="@_pageName" disabled />
<input id="page" class="form-control" @bind="@_pageName" disabled />
</td>
</tr>
}
@ -63,10 +63,10 @@
{
<tr>
<td>
<label class="control-label">Module: </label>
<Label For="module" HelpText="The module that was affected">Module: </Label>
</td>
<td>
<input class="form-control" @bind="@_moduleTitle" disabled />
<input id="module" class="form-control" @bind="@_moduleTitle" disabled />
</td>
</tr>
}
@ -74,62 +74,62 @@
{
<tr>
<td>
<label class="control-label">User: </label>
<Label For="user" HelpText="The user that caused this log">User: </Label>
</td>
<td>
<input class="form-control" @bind="@_username" disabled />
<input id="user" class="form-control" @bind="@_username" disabled />
</td>
</tr>
}
<tr>
<td>
<label class="control-label">Url: </label>
<Label For="url" HelpText="The url the log comes from">Url: </Label>
</td>
<td>
<input class="form-control" @bind="@_url" disabled />
<input id="url" class="form-control" @bind="@_url" disabled />
</td>
</tr>
<tr>
<td>
<label class="control-label">Template: </label>
<Label For="template" HelpText="What the log is about">Template: </Label>
</td>
<td>
<input class="form-control" @bind="@_template" disabled />
<input id="template" class="form-control" @bind="@_template" disabled />
</td>
</tr>
<tr>
<td>
<label class="control-label">Message: </label>
<Label For="message" HelpText="The message that the system generated"class="control-label">Message: </Label>
</td>
<td>
<textarea class="form-control" @bind="@_message" rows="5" disabled></textarea>
<textarea id="message" class="form-control" @bind="@_message" rows="5" disabled></textarea>
</td>
</tr>
@if (!string.IsNullOrEmpty(_exception))
{
<tr>
<td>
<label class="control-label">Exception: </label>
<Label For="exception" HelpText="The exceptions generated by the system">Exception: </Label>
</td>
<td>
<textarea class="form-control" @bind="@_exception" rows="5" disabled></textarea>
<textarea id="exception" class="form-control" @bind="@_exception" rows="5" disabled></textarea>
</td>
</tr>
}
<tr>
<td>
<label class="control-label">Properties: </label>
<Label For="properties" HelpText="The properties that were affected">Properties: </Label>
</td>
<td>
<textarea class="form-control" @bind="@_properties" rows="5" disabled></textarea>
<textarea id="properties" class="form-control" @bind="@_properties" rows="5" disabled></textarea>
</td>
</tr>
<tr>
<td>
<label class="control-label">Server: </label>
<Label For="server" HelpText="The server that was affected">Server: </Label>
</td>
<td>
<input class="form-control" @bind="@_server" disabled />
<input id="server" class="form-control" @bind="@_server" disabled />
</td>
</tr>
</table>