This file is indexed.

/usr/share/pyshared/django_openstack/templates/django_openstack/auth/_switch.html is in python-django-nova 0.3~git20110711-0ubuntu3.

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
<form action="" method="post">
  {% csrf_token %}
  <fieldset>
  {% for hidden in form.hidden_fields %}
    {{hidden}}
  {% endfor %}
  {% for field in form.visible_fields %}
    {{field.label_tag}}
    {{field.errors}}
    {{field}}
    {% endfor %}
  {% block submit %}
    <input type="submit" value="Login" />
  {% endblock %}
  </fieldset>
</form>