This file is indexed.

/usr/lib/python2.7/dist-packages/treebeard/templates/admin/tree_list.html is in python-django-treebeard 2.0~beta1-4.

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
14
15
16
17
18
19
20
21
{# Used for AL trees #}
{% extends "admin/change_list.html" %}
{% load admin_list admin_tree_list i18n %}

{% block extrastyle %}
    {{ block.super }}
{% endblock %}

{% block extrahead %}
    {{ block.super }}
{% endblock %}

{% block result_list %}
    {% if action_form and actions_on_top and cl.full_result_count %}
        {% admin_actions %}
    {% endif %}
    {% result_tree cl request %}
    {% if action_form and actions_on_bottom and cl.full_result_count %}
        {% admin_actions %}
    {% endif %}
{% endblock %}