{% extends "base.html" %} {% block title %}Activity ยท tit{% endblock %} {% block content %}

Activity

Events from repositories that you watch.

{% if events.is_empty() %}

No watched activity is available.

{% else %}
    {% for event in events %}
  1. {{ event.title }} {{ event.created_at|human_time }}
  2. {% endfor %}
{% endif %} {% if has_next %} {% endif %} {% endblock %}