Skip to content

Commit

Permalink
Fix up output
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdoupe committed Nov 8, 2023
1 parent 09fd350 commit 93464b1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions dojo_theme/templates/dojo_admin_user.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h1>{{ dojo.name }} User Info for {{ user.name }}</h1>
</div>
<div class="container">
<div class="row">
<div class="col-md-2 offset-md-1">
<div class="col-md-8 offset-md-1">
<ul>
<li>
pwn.college User Name: {{ user.name }}
Expand All @@ -45,7 +45,12 @@ <h1>{{ dojo.name }} User Info for {{ user.name }}</h1>
{{ identity_name }} : {{ identity_value }}
</li>
<li>
Authorized and linked Discord: {{ discord_user }}
{% if discord_user %}
Authorized and linked Discord Username: {{ discord_user.user.username }} <br>
Discord ID (unique): {{ discord_user.user.id }}
{% else %}
No linked discord
{% endif %}
</li>
</ul>
</div>
Expand Down

0 comments on commit 93464b1

Please sign in to comment.