You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
345 B
21 lines
345 B
@page "/tickets/view/{Id:int}"
|
|
@using Microsoft.AspNetCore.Authorization
|
|
@attribute [Authorize(Roles = "admin")]
|
|
|
|
<h3>Ticket number @Id</h3>
|
|
|
|
<p>
|
|
Username: @ticket.Username
|
|
</p>
|
|
<p>
|
|
Contexte: @ticket.Contexte
|
|
</p>
|
|
<p>
|
|
Description: @ticket.Description
|
|
</p>
|
|
<p>
|
|
Urgence: @ticket.Urgence
|
|
</p>
|
|
<p>
|
|
Status: @ticket.isCheck
|
|
</p> |