{% extends 'layout.twig' %} {% block title %}List of Benchmarks{% endblock %} {% block content %}
{% if benchmarks | length > 0 %}Benchmark name | Description | Scoring type | Last updated |
---|---|---|---|
{{ b.name }} | {{ b.description | slice(0, 100) }} | {{ b.scoring }} | {{ b.updated_at | date("F jS \\a\\t g:ia") }} |
There are no benchmarks in the database - perhaps you should create one?
{% endif %} {% endblock %}