{% extends 'base.html' %} {% block content %}
{{ user.full_name }}
{{ user.description|safe }}
  • Followers {{ user.followers }}
  • Following {{ user.following }}




{% for post in posts%}
{{ post.ts }}
{{ post.time }}

{{ post.body }}


{% endfor%}
{% endblock %}