| <!DOCTYPE html> |
| <html> |
| <head> |
| <title>SPT tests</title> |
| {% include 'templates/table_styles.css.j2' %} |
| </head> |
| <body> |
| <h1>Simplified Performance Tests (SPT)</h1> |
| <ul><strong>Configuration used in tests:</strong> |
| {% for key, value in tests_config_data.items() %} |
| <li>{{ key }}: <i>{{ value }}</i></li> |
| {% endfor %} |
| </ul> |
| |
| {% for table in tables %} |
| <div class="test-header"> |
| <h3>{{ table.title }}</h3> |
| <p class="note">Executed at: <i>{{ table.executed_at }}</i></p> |
| </div> |
| {{ table.df.to_html(index=False) }} |
| {% endfor %} |
| |
| <p class="timestamp">Report generated at: {{ human_timestamp }}</p> |
| </body> |
| </html> |