{% 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.result }}
{{ result.filename }} |
{% trans 'Ignored patterns:' %}
[{% for pattern in ignored_patterns %}"{{ pattern.pattern }}"{% if not forloop.last %}, {% endif %}{% endfor %}]
{% endblock %}