Add support for subscribing to games
This commit is contained in:
parent
c447abc6fe
commit
fabc9d23f6
6 changed files with 134 additions and 10 deletions
|
|
@ -55,6 +55,16 @@
|
|||
<a href="{% url 'accounts:login' %}">Login</a> |
|
||||
<a href="{% url 'accounts:signup' %}">Sign Up</a>
|
||||
{% endif %}
|
||||
{% if messages %}
|
||||
<ul>
|
||||
{% for message in messages %}
|
||||
<li>
|
||||
{% if message.level == DEFAULT_MESSAGE_LEVELS.ERROR %}Important:{% endif %}
|
||||
{{ message }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% block content %}
|
||||
<!-- Main content will be injected here -->
|
||||
{% endblock content %}
|
||||
|
|
|
|||
|
|
@ -4,14 +4,29 @@
|
|||
{% endblock title %}
|
||||
{% block content %}
|
||||
<h1>{{ game.display_name }}</h1>
|
||||
<div>
|
||||
<input type="checkbox" id="found" />
|
||||
<label for="found">🔔 Get notified as soon as a drop for {{ game.display_name }} appears on Twitch.</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="checkbox" id="live" />
|
||||
<label for="live">🎮 Get notified when the drop is live and ready to be farmed.</label>
|
||||
</div>
|
||||
{% if user.is_authenticated %}
|
||||
<form method="post"
|
||||
action="{% url 'twitch:subscribe_notifications' game_id=game.id %}">
|
||||
{% csrf_token %}
|
||||
<div>
|
||||
<input type="checkbox"
|
||||
id="found"
|
||||
name="notify_found"
|
||||
{% if subscription and subscription.notify_found %}checked{% endif %} />
|
||||
<label for="found">🔔 Get notified as soon as a drop for {{ game.display_name }} appears on Twitch.</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="checkbox"
|
||||
id="live"
|
||||
name="notify_live"
|
||||
{% if subscription and subscription.notify_live %}checked{% endif %} />
|
||||
<label for="live">🎮 Get notified when the drop is live and ready to be farmed.</label>
|
||||
</div>
|
||||
<button type="submit">Save notification preferences</button>
|
||||
</form>
|
||||
{% else %}
|
||||
Login to subscribe!
|
||||
{% endif %}
|
||||
{% if active_campaigns %}
|
||||
<h5>Active Campaigns</h5>
|
||||
<table>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue