fix index
This commit is contained in:
parent
24ae1a622c
commit
2042d56131
2 changed files with 10 additions and 0 deletions
5
setup.sh
5
setup.sh
|
@ -1672,6 +1672,11 @@ cat <<'HTML_END' > templates/index.html
|
|||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<button id="toggle-keys" class="btn btn-sm btn-outline-secondary mb-2">{{ _('Show/Hide Keys') }}</button>
|
||||
<div class="mb-2 d-flex justify-content-end">
|
||||
<a href="{{ url_for('add_game') }}" class="btn btn-sm btn-warning">
|
||||
{{ _('Add New Game') }}
|
||||
</a>
|
||||
</div>
|
||||
{% if games %}
|
||||
<div class="table-responsive">
|
||||
<table class="table table-hover align-middle">
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<button id="toggle-keys" class="btn btn-sm btn-outline-secondary mb-2">{{ _('Show/Hide Keys') }}</button>
|
||||
<div class="mb-2 d-flex justify-content-end">
|
||||
<a href="{{ url_for('add_game') }}" class="btn btn-sm btn-warning">
|
||||
{{ _('Add New Game') }}
|
||||
</a>
|
||||
</div>
|
||||
{% if games %}
|
||||
<div class="table-responsive">
|
||||
<table class="table table-hover align-middle">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue