This file is indexed.

/usr/lib/python2.7/dist-packages/crispy_forms/templates/bootstrap/layout/help_text_and_errors.html is in python-django-crispy-forms 1.7.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
{% if help_text_inline and not error_text_inline %}
    {% include 'bootstrap/layout/help_text.html' %}
{% endif %}

{% if error_text_inline %}
    {% include 'bootstrap/layout/field_errors.html' %}
{% else %}
    {% include 'bootstrap/layout/field_errors_block.html' %}
{% endif %}

{% if not help_text_inline %}
    {% include 'bootstrap/layout/help_text.html' %}
{% endif %}