Advertisement
pacho_the_python

prifile_details

Nov 17th, 2022
890
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.12 KB | None | 0 0
  1. {% extends 'base/base_web.html' %}
  2. {% block page_content %}
  3.     {% load static %}
  4.     <h1>Profile Details</h1>
  5.     <p>{{ user.get_name }}</p>
  6.     <p>Username: {{ user.username }}</p>
  7.     <p>Email: {{ user.account_email }}</p>
  8.     {% if user.age %}
  9.         <p>Age: {{ user.age }}</p>
  10.     {% endif %}
  11.     {% if user.image_url %}
  12.         <img width="180" height="250" class="account-img" src="{{ user.image_url }}" alt='account-image'/>
  13.     {% else %}
  14.         <img width="180" height="180" class="build-in-img" src="{% static 'images/avatar.png' %}" alt='build-in-image'/>
  15.     {% endif %}
  16.     {% if user.phone_number %}
  17.         <p>Phone: {{ user.phone_number }}</p>
  18.     {% endif %}
  19.     {% if user.user_address %}
  20.         <p>Address: {{ user.user_address }}</p>
  21.     {% endif %}
  22.     <button>
  23.         <a href="{% url 'account edit' pk=object.pk %}">
  24.             <span class="glyphicon glyphicon-wrench"></span> Edit
  25.         </a>
  26.     </button>
  27.     <button>
  28.         <a href="{% url 'account delete' pk=object.pk %}">
  29.             <span class="glyphicon glyphicon-trash"></span> Delete
  30.         </a>
  31.     </button>
  32. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement