notification service and user management improvements
This commit is contained in:
		@ -8,22 +8,23 @@
 | 
			
		||||
}
 | 
			
		||||
else
 | 
			
		||||
{
 | 
			
		||||
    <Pager Items="@JobLogs">
 | 
			
		||||
        <Header>
 | 
			
		||||
            <th>Name</th>
 | 
			
		||||
            <th>Status</th>
 | 
			
		||||
            <th>Started</th>
 | 
			
		||||
            <th>Finished</th>
 | 
			
		||||
            <th>Notes</th>
 | 
			
		||||
        </Header>
 | 
			
		||||
        <Row>
 | 
			
		||||
            <td>@context.Job.Name</td>
 | 
			
		||||
            <td>@DisplayStatus(context.Job.IsExecuting, context.Succeeded)</td>
 | 
			
		||||
            <td>@context.StartDate</td>
 | 
			
		||||
            <td>@context.FinishDate</td>
 | 
			
		||||
            <td><ActionDialog Header="Job Notes" Message="@context.Notes" Text="View" Security="SecurityAccessLevel.Host" /></td>
 | 
			
		||||
        </Row>
 | 
			
		||||
    </Pager>
 | 
			
		||||
<Pager Items="@JobLogs">
 | 
			
		||||
    <Header>
 | 
			
		||||
        <th>Name</th>
 | 
			
		||||
        <th>Status</th>
 | 
			
		||||
        <th>Started</th>
 | 
			
		||||
        <th>Finished</th>
 | 
			
		||||
    </Header>
 | 
			
		||||
    <Row>
 | 
			
		||||
        <td>@context.Job.Name</td>
 | 
			
		||||
        <td>@DisplayStatus(context.Job.IsExecuting, context.Succeeded)</td>
 | 
			
		||||
        <td>@context.StartDate</td>
 | 
			
		||||
        <td>@context.FinishDate</td>
 | 
			
		||||
    </Row>
 | 
			
		||||
    <Detail>
 | 
			
		||||
        <td colspan="4">@context.Notes</td>
 | 
			
		||||
    </Detail>
 | 
			
		||||
</Pager>
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@code {
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user