|
@@ -33,16 +33,17 @@
|
|
|
</ul>
|
|
|
|
|
|
{% if kofi_integration %}
|
|
|
+ <h4>Kofi Integration</h4>
|
|
|
+ You must be authenticated with Owncast to take advantage of Kofi integration.<br>
|
|
|
+ {% if kofi_settings['tips'] %}
|
|
|
+ {% set points_label = 'point' if tip_points == 1 else 'points' %}
|
|
|
+ You are awarded {{ kofi_settings['tip_points'] }} {{ points_label }} for every dollar you tip on Kofi.<br>
|
|
|
+ {% endif %}
|
|
|
{% for user in users %}
|
|
|
|
|
|
- {% set points_label = 'point' if tip_points == 1 else 'points' %}
|
|
|
- <h4>Kofi</h4>
|
|
|
- <div>
|
|
|
+ <div>
|
|
|
{% if user['user_authed'] %}
|
|
|
<a href="{{ kofi_settings['kofi_url'] }}/tip" target="new"><img src="/static/img/kofi/{{ kofi_settings['kofi_logo'] }}"></a><br>
|
|
|
- {% if kofi_settings['tips'] %}
|
|
|
- You are awarded {{ kofi_settings['tip_points'] }} {{ points_label }} for every dollar you tip on Kofi.<br>
|
|
|
- {% endif %}
|
|
|
OwnchatBot recognizes your Kofi account by your email address. In order for OwnchatBot to award your tip points, you must enter the email address associated with your Kofi account here.<br><br>
|
|
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|