{% extends "base.html" %} {% load static %} {% block title %}Dashboard — Fossilrepo{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Dashboard

Welcome back, {{ user.get_full_name|default:user.username }}

{{ total_projects }}
Projects
{{ total_checkins|default:"0" }}
Total Checkins
{{ total_tickets|default:"0" }}
Tickets
{{ total_wiki|default:"0" }}
Wiki Pages
{% if system_activity_json and system_activity_json != "[]" %}

System Activity (26 weeks)

{% endif %} {% if recent_across_all %}

Recent Activity

{% for item in recent_across_all %} {% endfor %}
{% endif %}
{% if perms.projects.view_project %}

Projects

Manage projects and team access

{% endif %} {% if perms.organization.view_team %}

Teams

Organize members into teams

{% endif %} {% if perms.pages.view_page %}

Fossilrepo KB

Guides, runbooks, documentation

{% endif %} {% if perms.organization.view_organization %}

Settings

Organization configuration

{% endif %} {% if user.is_staff %}

Admin

Users, groups, permissions

{% endif %}
{% if system_activity_json and system_activity_json != "[]" %} {% endif %} {% endblock %}