console/SWSCloudCore/templates/administrator/users/details.html

71 lines
1.6 KiB
HTML

{% extends 'administrator/_layout.auth.html' %}
{% set title="User details" %}
{% set subtitle="User details" %}
{% block content %}
<h4>Account</h4>
<table class="table table-border">
<tbody>
<tr>
<td>ID</td>
<td>{{ user_account['id'] }}</td>
</tr>
<tr>
<td>Email</td>
<td>{{ user_account['email'] }}</td>
</tr>
<tr>
<td>Status</td>
<td>{{ user_account['status'] }}</td>
</tr>
</tbody>
</table>
<h4>Details</h4>
<a href="">Edit</a>
<table class="table">
<tbody>
<tr>
<td>First name</td>
<td>{{ user_details['fname'] }}</td>
</tr>
<tr>
<td>Last name</td>
<td>{{ user_details['lname'] }}</td>
</tr>
<tr>
<td>Address</td>
<td>{{ user_details['address'] }}</td>
</tr>
<tr>
<td>City</td>
<td>{{ user_details['city'] }}</td>
</tr>
<tr>
<td>Country</td>
<td>{{ user_details['country'] }}</td>
</tr>
<tr>
<td>State</td>
<td>{{ user_details['state'] }}</td>
</tr>
<tr>
<td>ZIP code</td>
<td>{{ user_details['zipcode'] }}</td>
</tr>
</tbody>
</table>
<h4>Balance</h4>
<a href="">Add money</a>
<table class="table">
<tbody>
<tr>
<td>Balance</td>
<td>{{ user_balance['balance'] }}</td>
</tr>
</tbody>
</table>
<h4>Transactions history</h4>
...
{% endblock %}