{% load static %} {% load humanize %} {% block title %}Dashboard{% endblock %} - Quintet {% block css %}{% endblock %}
{% for message in messages %}
{{ message }}
{% endfor %} {% block content %}

Dashboard

Stats

{{ stats.drafts }}

Drafts

{{ stats.ready_for_review }}

Ready for Review

{{ stats.published }}

Published

Recent Activity

{% for event in feed %} {% if event.type == 'post' %}

{{ event.object.owner.get_full_name }} edited {{ event.object.title }}.

{% elif event.type == 'comment' %}

{{ event.object.user.get_full_name }} commented on {{ event.object.post.title }}.

{{ event.object }}

{% if event.object.excerpt %}
... {{ event.object.excerpt }} ...
{% endif %}
{% elif event.type == 'approval' %}

{{ event.object.user.get_full_name }} approved {{ event.object.post.title }}.

{% endif %}

{{ event.timestamp|naturaltime }}

{% if not forloop.last %}
{% endif %} {% empty %}

No recent activity.

{% endfor %}
{% endblock %}
{% block js %}{% endblock %}