This file is indexed.

/usr/lib/python3/dist-packages/crispy_forms/templates/bootstrap4/layout/uneditable_input.html is in python3-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
{% load crispy_forms_field %}


<div id="div_{{ field.auto_id }}" class="form-group{% if form_show_errors and field.errors %} error{% endif %}{% if field.css_classes %} {{ field.css_classes }}{% endif %}">
    <label class="form-control-label {{ label_class }}{% if field.field.required %} requiredField{% endif %}">{{ field.label|safe }}{% if field.field.required %}<span class="asteriskField">*</span>{% endif %}</label>
    <div class="{{ field_class }}">
        {% crispy_field field 'disabled' 'disabled' %}
        {% include 'bootstrap4/layout/help_text.html' %}
    </div>
</div>