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.
Admin/Sources/HeartTrack/Pages/ViewTicket.razor

21 lines
265 B

@page "/tickets/view/{Id:int}"
<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>