combo-plugin-gnm/combo_plugin_gnm/templates/webpush_checkbox.html

17 lines
622 B
HTML

{% load i18n static gnm gnm_notifications %}
<div class="notification-dialog">
{% if request.user.is_authenticated or group %}
{% webpush_scripts %}
<label class="checkbox">
<input id="webpush-subscribe-checkbox" class="checkbox_input" type="checkbox"
{% if group %}data-group="{{ group }}"{% endif %} data-url="{{ url }}"
data-user-subscription-browser-list="{{ user_subscription_browser_list|join:'=#=#'}}">
<p id="webpush-subscribe-message" class="checkbox_text"></p>
</label>
{% else %}
<label class="checkbox">{% trans "Login to receive push notifications" %}</label>
{% endif %}
</div>