Feature #51: Markdown Support
Markdown implemented in Job Logs, Job Queue comments, various other places.
This commit is contained in:
@@ -15,6 +15,7 @@
|
||||
<table class="tableData">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
<th>Priority</th>
|
||||
<th>Linked Groups/Users</th>
|
||||
</tr>
|
||||
@@ -27,6 +28,15 @@
|
||||
@item.JobQueue.Name
|
||||
</a>
|
||||
</td>
|
||||
<td>@if (string.IsNullOrWhiteSpace(item.JobQueue.Description))
|
||||
{
|
||||
<span class="smallMessage"><none></span>
|
||||
}
|
||||
else
|
||||
{
|
||||
@item.JobQueue.Description.ToHtmlComment()
|
||||
}
|
||||
</td>
|
||||
<td>
|
||||
<i class="fa d-priority-@(item.JobQueue.Priority.ToString().ToLower())" title="@(item.JobQueue.Priority.ToString()) Priority"></i>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user