1 2 3 4 5 6 7 8 9 10 11 12 13
{% extends "base.html" %} {% block title %}{{ identity }}{% endblock %} {% block content %} <h1>{{ identity }} <small>{{ identity.handle }}</small></h1> {% for status in statuses %} {% include "statuses/_status.html" %} {% empty %} No statuses yet. {% endfor %} {% endblock %}