Add GM Actions to ticket interface
This commit is contained in:
@ -59,6 +59,7 @@ namespace NightmareCoreWeb2
|
||||
{
|
||||
try
|
||||
{
|
||||
this.Id = rdr.GetInt32(0);
|
||||
this.OpenedBy = new Account(new Character(rdr.GetInt32(0)).Username);
|
||||
this.CharacterName = rdr.GetString(1);
|
||||
this.CreateTime = DateTimeOffset.FromUnixTimeSeconds(rdr.GetInt32(2)).UtcDateTime;
|
||||
|
||||
@ -53,6 +53,12 @@
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p class="card-text">@ticket.Description</p>
|
||||
<br>
|
||||
|
||||
<a class="btn active" href="/Account?handler=CharacterAction&guid=@ticket.Id&action=1">Rename Character</a>
|
||||
<a class="btn active" href="/Account?handler=CharacterAction&guid=@ticket.Id&action=8">Recustomize Character</a>
|
||||
<a class="btn active" href="/Account?handler=CharacterAction&guid=@ticket.Id&action=64">Change Faction</a>
|
||||
<a class="btn active" href="/Account?handler=CharacterAction&guid=@ticket.Id&action=128">Change Race</a>
|
||||
</div>
|
||||
<div class="card-footer text-muted">
|
||||
<p>Opened @ticket.CreateTime.ToLocalTime()</p>
|
||||
|
||||
Reference in New Issue
Block a user