{% extends 'backlogger/base.html' %} {% block title %}Live — Kill My Backlog{% endblock %} {% block styles %} {% endblock %} {% block nav %} {{ request.user.profile.display_name|default:request.user.username }}
{% csrf_token %}
{% endblock %} {% block content %}

Live

Your 10 most recently touched items.

{% if items %}
{% for item in items %}
{{ forloop.counter }}
{{ item.name }}
{{ item.get_category_display }} {% if item.category == 'games' %} {% if item.hours_played is not None %}{{ item.hours_played|floatformat:1 }}h{% endif %} {% elif item.category == 'books' %} {% if item.pages_read is not None %}p. {{ item.pages_read }}{% if item.total_pages %}/{{ item.total_pages }}{% endif %}{% endif %} {% elif item.category == 'films' %} {% if item.watched %}watched{% else %}not watched{% endif %} {% endif %} {{ item.get_status_display }}
{{ item.updated_at|date:"M j" }}
{% endfor %}
{% else %}
Nothing here yet. Add your first item.
{% endif %}
{% endblock %}