This file is indexed.

/usr/lib/python2.7/dist-packages/horizon/templates/horizon/common/_resource_browser.html is in python-django-horizon 1:2014.1.5-0ubuntu2.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
{% load i18n %}
<div id="browser_wrapper" class="pull-left">
  <div class="navigation_wrapper">
    {{ browser.navigation_table.render }}
  </div>
  <div class="content_wrapper">
    {{ browser.content_table.render }}
  </div>
  <div class="tfoot">
    <span class="navigation_table_count">{% blocktrans count nav_items=browser.navigation_table.data|length %}Displaying {{ nav_items }} item{% plural %}Displaying {{ nav_items }} items{% endblocktrans %}</span>
    <span class="content_table_count">{% blocktrans count content_items=browser.content_table.data|length %}Displaying {{ content_items }} item{% plural %}Displaying {{ content_items }} items{% endblocktrans %}</span>
  </div>
</div>