Link resources directly if there's one of a kind

Ref: ~sircmpwn/hub.sr.ht#23
This commit is contained in:
наб 2020-09-04 17:22:40 +02:00 committed by Drew DeVault
parent b1ff1910a3
commit 9fc47d0bb4
1 changed files with 15 additions and 0 deletions

View File

@ -25,23 +25,38 @@
{% endif %}
{% if any(project.source_repos) %}
<li class="nav-item">
{% if len(project.source_repos) == 1 and
not (current_user and current_user.id == project.owner_id) %}
{{link(project.source_repos[0].url(), "source")}}
{% else %}
{{link(url_for("sources.sources_GET",
owner=owner.canonical_name,
project_name=project.name), "sources")}}
{% endif %}
</li>
{% endif %}
{% if any(project.mailing_lists) %}
<li class="nav-item">
{% if len(project.mailing_lists) == 1 and
not (current_user and current_user.id == project.owner_id) %}
{{link(project.mailing_lists[0].url(), "mailing list")}}
{% else %}
{{link(url_for("mailing_lists.lists_GET",
owner=owner.canonical_name,
project_name=project.name), "mailing lists")}}
{% endif %}
</li>
{% endif %}
{% if any(project.trackers) %}
<li class="nav-item">
{% if len(project.trackers) == 1 and
not (current_user and current_user.id == project.owner_id) %}
{{link(project.trackers[0].url(), "tickets")}}
{% else %}
{{link(url_for("trackers.trackers_GET",
owner=owner.canonical_name,
project_name=project.name), "tickets")}}
{% endif %}
</li>
{% endif %}
{# TODO