{% extends "base.html" %} {% block title %}{{ project.name }} — Fossilrepo{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ project.name }}

{{ project.description|default:"No description." }}

{% if user.is_authenticated %} {% include "projects/partials/star_button.html" %}
{% csrf_token %} {% if is_watching %} {% else %} {% endif %}
{% endif %} {% if perms.projects.change_project %} Edit {% endif %}
{% if repo_stats %} {% with active_tab="overview" %} {% include "fossil/_project_nav.html" %} {% endwith %} {% endif %}
{% if commit_activity_json %}

Commit Activity (last year)

{% endif %} {% if repo_stats and recent_commits %}

Recent Activity

{% for commit in recent_commits %}
{{ commit.comment|truncatechars:80 }}
{{ commit.user }} {{ commit.uuid|truncatechars:10 }} {{ commit.timestamp|timesince }} ago
{% endfor %}
{% endif %}

Teams

{% if perms.projects.change_project %} + Add Team {% endif %}
{% include "projects/partials/project_team_table.html" %}
{% if repo_stats %} {% endif %}

Clone

fossil clone /path/to/{{ project.slug }}.fossil
{% if top_contributors %}

Top Contributors

{% for c in top_contributors %} {{ c.user }} {{ c.count }} commits {% endfor %}
{% endif %}

About

Visibility
{% if project.visibility == "public" %} Public {% elif project.visibility == "internal" %} Internal {% else %} Private {% endif %}
Created
{{ project.created_at|date:"Y-m-d" }}
{% if commit_activity_json %} {% endif %} {% endblock %}