Localize non components for the jobs pages
This commit is contained in:
@ -1,19 +1,20 @@
|
||||
@namespace Oqtane.Modules.Admin.Jobs
|
||||
@namespace Oqtane.Modules.Admin.Jobs
|
||||
@inherits ModuleBase
|
||||
@inject IJobLogService JobLogService
|
||||
@inject IStringLocalizer<Log> Localizer
|
||||
|
||||
@if (_jobLogs == null)
|
||||
{
|
||||
<p><em>Loading...</em></p>
|
||||
<p><em>@Localizer["Loading..."]</em></p>
|
||||
}
|
||||
else
|
||||
{
|
||||
<Pager Items="@_jobLogs">
|
||||
<Header>
|
||||
<th>Name</th>
|
||||
<th>Status</th>
|
||||
<th>Started</th>
|
||||
<th>Finished</th>
|
||||
<th>@Localizer["Name"]</th>
|
||||
<th>@Localizer["Status"]</th>
|
||||
<th>@Localizer["Started"]</th>
|
||||
<th>@Localizer["Finished"]</th>
|
||||
</Header>
|
||||
<Row>
|
||||
<td>@context.Job.Name</td>
|
||||
|
Reference in New Issue
Block a user