{% extends "base.html" %} {% load i18n %} {% load url from future %} {% block breadcrumbs %}
  • {{ object }}
  • {% endblock %} {% block content %}

    {% trans "Project Information" %}

    {% include "project_info.html" %}

    {% trans "Subprojects" %}

    {% for prj in object.subproject_set.all %} {% with prj.get_translated_percent as percent %} {% endwith %} {% endfor %}
    {% trans "Subproject" %} {% trans "Translated" %}
    {{ prj.name }}
    {{ percent }}%

    {% trans "Tools" %}

    {% include "last-changes.html" %}
    {% url 'weblate.trans.widgets.widgets' project=object.slug as widgets_url %} {% include 'promote.html' %}
    {% endblock %}