Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified app/img/screenshot_history.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/img/screenshot_landing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 7 additions & 3 deletions app/templates/results.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h1 class="display-5 fw-bold">Find out why your queries are slow</h1>
<form action="/generate" method="get" class="card shadow-sm mb-4">
<div class="card-body">
<div class="row g-3 align-items-end">
<div class="col-md-6">
<div class="col-md-5">
<label for="benchmark" class="form-label fw-semibold">
<i class="bi bi-graph-up me-1"></i>Benchmark
</label>
Expand All @@ -46,7 +46,7 @@ <h1 class="display-5 fw-bold">Find out why your queries are slow</h1>
{% endfor %}
</select>
</div>
<div class="col-md-3">
<div class="col-md-4">
<label for="size" class="form-label fw-semibold">
<i class="bi bi-hdd-stack me-1"></i>Dataset
</label>
Expand All @@ -57,13 +57,17 @@ <h1 class="display-5 fw-bold">Find out why your queries are slow</h1>
</option>
{% endfor %}
</select>
<div class="form-text">Changing the size reseeds the users table.</div>
</div>
<div class="col-md-3">
<button type="submit" class="btn btn-primary btn-lg w-100" id="generate-btn">
<i class="bi bi-play-circle me-1"></i>Generate
</button>
</div>
<div class="col-12">
<div class="form-text mt-0">
Changing the dataset size truncates and reseeds the <code>users</code> table.
</div>
</div>
</div>
</div>
</form>
Expand Down
Loading