{% extends 'djangomaster/_single_col.html' %} {% load i18n %} {% load url from future %} {% block page_title %}{{page_title}}{% endblock %} {% block content %} {% if not LINT_IS_INSTALLED %}

{% blocktrans with lint_cmd=LINT_CMD %}{{ lint_cmd }} isn't installed.{% endblocktrans %}

{% elif not settings.BASE_DIR %} {% url 'djangomaster:home' as home_url %}

{% blocktrans with home_url=home_url %}settings.BASE_DIR isn't define. Please, add it.{% endblocktrans %}

{% endif %} {% if results %}

{% blocktrans with lint_cmd=LINT_CMD %}Executing {{ lint_cmd }}.{% endblocktrans %}

{% endif %}
{% for result in results %} {% if result.result %}
{{ result.filename }} {% if not result.result %}=){% endif %}
{{ result.result }}
{% endif %} {% endfor %}

{% trans 'Files with no output' %}

{% for result in results %} {% if not result.result %}
{{ result.filename }}
{% endif %} {% endfor %}
{% endblock %}