tidy messages and stuff
This commit is contained in:
1 parent
c35773d337
commit
f596b7ee19
3 files changed
+10
-36
No files matched your search
@@ -1,5 +1,5 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Admin · Poker Portal{% endblock %}
|
||||
{% block title %}Admin - Poker Portal{% endblock %}
|
||||
{% block content %}
|
||||
<section class="hero-card compact">
|
||||
<div>
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
<label>
|
||||
<span>Player name</span>
|
||||
<input list="player_names" type="text" name="player_name" placeholder="Braeden" required>
|
||||
<input list="player_names" type="text" name="player_name" placeholder="Peter Venkman" required>
|
||||
<datalist id="player_names">
|
||||
{% for player_name in player_names %}
|
||||
<option value="{{ player_name }}"></option>
|
||||
@@ -40,7 +40,7 @@
|
||||
|
||||
<label>
|
||||
<span>Amount</span>
|
||||
<input type="number" step="0.01" name="amount" placeholder="50.00">
|
||||
<input type="number" step="0.01" name="amount" placeholder="5.00">
|
||||
</label>
|
||||
|
||||
<label>
|
||||
@@ -48,11 +48,6 @@
|
||||
<textarea name="note" rows="4" placeholder="Rebuy, correction, settled chips later, etc."></textarea>
|
||||
</label>
|
||||
|
||||
<div class="helper-box">
|
||||
<strong>Tip:</strong>
|
||||
<span>Use positive amounts for normal buy-ins and cash-outs. Use negative amounts to correct a previous entry without editing history.</span>
|
||||
</div>
|
||||
|
||||
<button class="primary-button" type="submit">Add event</button>
|
||||
</form>
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<div>
|
||||
<p class="eyebrow">Session detail</p>
|
||||
<h1>{{ session.session_date | pretty_date }}</h1>
|
||||
<p class="muted-text">Current totals are derived from the append-only event log for this date.</p>
|
||||
<p class="muted-text">Current totals are derived from the event log for this date.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
Reference in new issue
Block a user