blob: e8ab65e99cd1f65bde78d83ec08d5e470ca4dfe5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{% extends 'base.html' %}
{% block content %}
<main class="single-col">
<h1>Account Settings</h1>
<table>
<tbody>
<tr>
<th scope="row">Username</th>
<td colspan="2">{{object.user.username}}<td>
</tr>
<tr>
<th scope="row">Email</th>
<td colspan="2">{{object.user.email}}<td>
<td class="text-right"><a href="/settings/change-email/"class="btn">Change</a></td>
</tr>
<tr>
<th scope="row">Fullname</th>
<td colspan="2">{{object.user.first_name}} {{object.user.last_name}}<td>
<td class="text-right"><a href="/settings/change-profile/#display_name"class="btn">Change</a></td>
</tr>
<tr>
<th scope="row">Plan</th>
<td colspan="2">{{object.plan}}<td>
<td class="text-right"><a href="/settings/change-plan/" class="btn">Change</a></td>
</tr>
<tr>
<th scope="row">Credit Card</th>
<td colspan="2">{{object.credit_card}}<td>
<td class="text-right"><a href="/settings/change-profile/" class="btn">Change</a></td>
</tr>
<tr>
<th scope="row">Bio</th>
<td colspan="2">{{object.bio}}<td>
<td class="text-right"><a href="/settings/change-bio/" class="btn">Change</a></td>
</tr>
<tr>
<th scope="row">Photo</th>
<td colspan="2">{{object.photo}}<td>
<td class="text-right"><a href="/settings/change-photo/" class="btn">Change</a></td>
</tr>
<tr>
<th scope="row">Website</th>
<td colspan="2">{{object.website}}<td>
<td class="text-right"><a href="/settings/change-website/" class="btn">Change</a></td>
</tr>
<tr>
<th scope="row">Location</th>
<td colspan="2">{{object.location}}<td>
<td class="text-right"><a href="/settings/change-location/" class="btn">Change</a></td>
</tr>
</tbody>
</table>
</main>
{% endblock %}
|