Parent
[>]
1{% extends "base.html" %} 2 3{% block title %}repos{% endblock %} 4 5{% block breadcrumbs %} 6 7 {{ crate::hostname() }} 8 9{% endblock %} 10 11{% block content %} 12{% if repos.is_empty() %} 13No repositories found. 14{% else %} 15 16 {% for repo in repos %} 17 18 {{ repo.name }} 19 {% if let Some(desc) = &repo.description %} 20 {{ desc }} 21 {% endif %} 22 {{ repo.commit_count }} {% if repo.commit_count == 1 %}commit{% else %}commits{% endif %}{% if let Some(date) = &repo.last_commit %}{{ date }}{% endif %} 23 24 {% endfor %} 25 26{% endif %} 27{% endblock %}