{% extends "layout.html" %} {% block content %}

Sample 5

{% for n in sample.columns %} {% endfor %} {% for n in sample.sampledata %} {% for i in n %} {% endfor %} {% endfor %}
{{n}}
{{i}}
Total {{sample.length}} X {{sample.number_of_columns}}

Head 5

{% for n in sample.columns %} {% endfor %} {% for n in head_tail[0] %} {% for i in n %} {% endfor %} {% endfor %}
{{n}}
{{i}}
Total {{sample.length}} X {{sample.number_of_columns}}

Tail 5

{% for n in sample.columns %} {% endfor %} {% for n in head_tail[1] %} {% for i in n %} {% endfor %} {% endfor %}
{{n}}
{{i}}
Total {{sample.length}} X {{sample.number_of_columns}}
{% endblock %}