This file is indexed.

/usr/lib/python2.7/dist-packages/crispy_forms/templates/uni_form/layout/baseinput.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
<input type="{{ input.input_type }}"
       name="{% if input.name|wordcount > 1 %}{{ input.name|slugify }}{% else %}{{ input.name }}{% endif %}"
       value="{{ input.value }}"
        {% if input.input_type != "hidden" %}
       class="{{ input.field_classes }}"
       id="{% if input.id %}{{ input.id }}{% else %}{{ input.input_type }}-id-{{ input.name|slugify }}{% endif %}"
        {% endif %}
        {{ input.flat_attrs|safe }}
        />