This file is indexed.

/usr/lib/python2.7/dist-packages/Bcfg2/Reporting/templates/widgets/page_bar.html is in bcfg2-server 1.4.0~pre2+git141-g6d40dace6358-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
14
15
16
17
18
19
20
21
22
23
{% spaceless %}
{% for page, page_url in pager %}
  {% if forloop.first %}
    <div class="page_bar">
       {% if prev_page %}<a href="{{ prev_page }}">&lt; Prev</a><span>&nbsp;</span>{% endif %}
       {% if first_page %}<a href="{{ first_page }}">1</a><span>&nbsp;...&nbsp;</span>{% endif %}
  {% endif %}
       {% ifequal page current_page %}
           <span class='nav_bar_current'>{{ page }}</span>
       {% else %}
           <a href="{{ page_url }}">{{ page }}</a>
       {% endifequal %}
  {% if forloop.last %}
    {% if last_page %}<span>&nbsp;...&nbsp;</span><a href="{{ last_page }}">{{ total_pages }}</a><span>&nbsp;</span>{% endif %}
    {% if next_page %}<a href="{{ next_page }}">Next &gt;</a><span>&nbsp;</span>{% endif %}
    |{% for limit, limit_url in page_limits %}&nbsp;<a href="{{ limit_url }}">{{ limit }}</a>{% endfor %}
    </div>
  {% else %}
    <span>&nbsp;</span>
  {% endif %}
{% endfor %}
{% endspaceless %}
<!-- {{ path }} -->