123456789101112131415161718192021222324252627282930313233343536 |
- {% extends 'game/base.html' %} {% block content %}
- <div class="game-over">
- <h2>☠️ GAME OVER ☠️</h2>
- <p>You survived 30 days!</p>
- <div style="margin: 20px 0">
- <p>Cash: ${{ game.cash|floatformat:2 }}</p>
- <p>Inventory Value: ${{ inventory_value|floatformat:2 }}</p>
- <p style="color: #f00">Debt: -${{ game.debt|floatformat:2 }}</p>
- <hr style="border-color: #0f0; margin: 10px 0" />
- <p class="final-score">Final Score: ${{ final_score|floatformat:2 }}</p>
- </div>
- <form method="post">
- {% csrf_token %}
- <input
- type="text"
- name="name"
- placeholder="Enter your name"
- maxlength="100"
- style="padding: 10px; width: 200px; margin: 10px"
- />
- <button type="submit">SAVE SCORE</button>
- </form>
- <div style="margin-top: 20px">
- <a href="{% url 'new_game' %}">
- <button>PLAY AGAIN</button>
- </a>
- <a href="{% url 'high_scores' %}">
- <button>HIGH SCORES</button>
- </a>
- </div>
- </div>
- {% endblock %}
|