25 lines
788 B
HTML
25 lines
788 B
HTML
<div class="container mb-5">
|
|
<h1>Here is Dashboard!</h1>
|
|
|
|
% if 4 in user['profile']['roles']:
|
|
<!-- Debug Section -->
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h1>Debug Section</h1>
|
|
<p>Only tester that can see this section</p>
|
|
<p>
|
|
<b>Username:</b> ${user['profile']['username']} <br>
|
|
<b>Email:</b> ${user['profile']['email']} <br>
|
|
<b>Phone:</b> ${user['profile']['phone']} <br>
|
|
<b>Roles:</b> ${str(user['profile']['roles'])} <br>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
% endif
|
|
|
|
</div>
|