profile.html 209 B

12345678
  1. {% extends "base.html" %}
  2. {% load static %}
  3. {% block content %}
  4. <div class="container">
  5. <h3>Имя: {{user.name}}</h3>
  6. <img src="{{user.avatar.url}}" width="150px" height="150px">
  7. </div>
  8. {% endblock %}