{% extends 'base.html' %} {% block inline_css %} {% include 'user_image/image_set.css' %} {% include 'tag/list.css' %} {% endblock %} {% block javascript %} {{ block.super }} {% endblock %} {% block title %} Explore {% endblock %} {% block content %}

Recent Images

(Browse All / Search)
{% include 'user_image/image_set.html' with images=recent_images thumbnail_size='medium' %}

Newest Members


{% for user in newest_users %} {% include 'user/display_name.html' with user=user %}
{% endfor %}

Recent Comments

{% for comment in recent_comments %}
{% include 'user/display_name.html' with user=comment.author %} commented on {% include 'user_image/filename.html' with filename=comment.recipient.userimage.original_file_name %} : {{comment.text|slice:":100"}}{% if comment.text|length > 100 %}...{% endif %}

{% endfor %}
{% endblock %}