account_detail.html 319 B

123456789101112
  1. {% extends 'base.html' %}
  2. {% block extrahead %}
  3. {% for link in account.links %}
  4. <link rel="{{ link.rel }}" type="{{ link.type }}" href="{{ link.href }}" />
  5. {% endfor %}
  6. {% endblock %}
  7. {% block content %}
  8. {% include 'blocks/media-list.html' with media_set=account.user.media_set.all %}
  9. {% endblock %}