base setup
This commit is contained in:
25
at_django_boilerplate/accounts/templates/user_list.html
Executable file
25
at_django_boilerplate/accounts/templates/user_list.html
Executable file
@@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>User List</title>
|
||||
</head>
|
||||
<body>
|
||||
<h2>User List</h2>
|
||||
<ul>
|
||||
{% for user in users %}
|
||||
<li>
|
||||
Name: {{ user.name }}, Birthday: {{ user.birthday }},
|
||||
Address: {{ user.address }}, Email: {{ user.email_address }},
|
||||
Contact: {{ user.contact_number }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="{% url 'index' %}">Index</a></li>
|
||||
<li><a href="{% url 'home' %}">Home</a></li>
|
||||
<li><a href="{% url 'signup' %}">Create user</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user