How can I create a column in a table in MVC4 to show an uneditable checkbox instead of the word true.
@foreach (var m in Model)
{
<tr>
<td>@m.UserLogin
</td>
<td>@m.UserEmployeeName
</td>
<td>@m.UserAccessRightsID
</td>
<td>@m.SystemManager @*CHECK BOX SHOULD BE HERE*@
</td>
Here is a screen shot of what I am currently getting.

It uses the Razor V2 feature which removes the attribute if the value is null or false.
You can read more about it here