/usr/local/lib64/python3.6/site-packages/pandas/io/formats/templates
Edit: /usr/local/lib64/python3.6/site-packages/pandas/io/formats/templates/html.tpl (2126B)
{# Update the template_structure.html document too #}
{%- block before_style -%}{%- endblock before_style -%}
{% block style %}
{%- endblock style %}
{%- block before_table %}{% endblock before_table %}
{%- block table %}
{%- block caption %}
{%- if caption -%}
{{caption}}
{%- endif -%}
{%- endblock caption %}
{%- block thead %}
{%- block before_head_rows %}{% endblock %}
{%- for r in head %}
{%- block head_tr scoped %}
{%- for c in r %}
{%- if c.is_visible != False %}
<{{ c.type }} class="{{c.class}}" {{ c.attributes|join(" ") }}>{{c.value}}{{ c.type }}>
{%- endif %}
{%- endfor %}
{%- endblock head_tr %}
{%- endfor %}
{%- block after_head_rows %}{% endblock %}
{%- endblock thead %}
{%- block tbody %}
{% block before_rows %}{% endblock before_rows %}
{% for r in body %}
{% block tr scoped %}
{% for c in r %}
{% if c.is_visible != False %}
<{{ c.type }} {% if c.id is defined -%} id="T_{{ uuid }}{{ c.id }}" {%- endif %} class="{{ c.class }}" {{ c.attributes|join(" ") }}>{{ c.display_value }}{{ c.type }}>
{% endif %}
{%- endfor %}
{% endblock tr %}
{%- endfor %}
{%- block after_rows %}{%- endblock after_rows %}
{%- endblock tbody %}
{%- endblock table %}
{%- block after_table %}{% endblock after_table %}