Dataset Visualization
Back to Dataset Analysis
{% for col in columns %}
{{ col }} |
{% endfor %}
{% for index, row in data.iterrows() %}
{% for col in columns %}
{% if col in ['After Bug fix', 'Before Bug fix', 'Location'] %}
{{ row[col]|replace_newline_with_br|safe }}
{% else %}
{{ row[col] }}
{% endif %}
|
{% endfor %}
{% endfor %}
{% if current_page < total_pages %}
More
{% endif %}