{% load i18n %} {% load permissions %} {% can_see_git_repository user object.project as user_can_see_git_repository %} {% with object.project as object %} {% include "project_info.html" %} {% endwith %} {% if object.license %} {% trans "Translation license" %} {% if object.license_url %} {{ object.license }} {% else %} {{ object.license }} {% endif %} {% endif %} {% if user_can_see_git_repository %} {% trans "Repository" %} {{ object.get_repo_url }} {% trans "Repository branch" %} {{ object.get_repo_branch }} {% with object.get_last_remote_commit as commit %} {% include "git-commit-info.html" %} {% endwith %} {% with object.get_export_url as export_url %} {% if export_url %} {% trans "Repository with Weblate translations" %} {{ export_url }} {% endif %} {% endwith %} {% endif %}