{% extends "base.html" %} {% load staticfiles %} {% load gravatar %} {% load email_obfuscator %} {% load socialaccount %} {% providers_media_js %} {% block content %}
{% if domain.logo %} {% else %} {% endif %}
{{name}}
{{issues|length}} issues
{% if domain.email %}
{{ domain.email|obfuscate_mailto }}
Email clicks: {{domain.clicks|default:"0"}}
{% endif %}
Latest Issues
{% for activity in issues %}
{% if activity.user.socialaccount_set.all.0.get_avatar_url %} {% else %} {% gravatar activity.user.email 50 %} {% endif %}
{{ activity.user.username }} entered issue {{ activity.domain_title }} - {{ activity }}
{{ activity.created|timesince }} ago
{% if activity.screenshot %} {% endif %}
{% endfor %}
{% if domain.webshot %}
{% endif %}
{% endblock %}