{% extends 'djangomaster/sbadmin/base.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 %} {% endif %} {% endfor %}
{{ result.filename }}
{% endblock %} {% block footer %} {% blocktrans with conf_name=conf_name %}To change the ignored patterns list, change the `{{conf_name}}` settings.{% endblocktrans %}
{% trans 'Ignored patterns:' %} [{% for pattern in ignored_patterns %}"{{ pattern.pattern }}"{% if not forloop.last %}, {% endif %}{% endfor %}]
{% endblock %}