Telegram bot user subscribers update notification template fix.

This commit is contained in:
Alexey Skobkin 2017-01-07 22:20:21 +03:00
parent 1d5ccd6e30
commit cc29168d83

View file

@ -7,14 +7,14 @@ New subscribers:
{% for subscriber in subscribed %} {% for subscriber in subscribed %}
[@{{ subscriber.login }}]({{ subscriber.login|point_user_url(true) }}) [@{{ subscriber.login }}]({{ subscriber.login|point_user_url(true) }})
{% endfor %} {% endfor %}
{% endif %} {% endif %}
{% if unsubscribed|length > 0 %} {% if unsubscribed|length > 0 %}
Lost subscribers: Lost subscribers:
{% for subscriber in unsubscribed %} {% for subscriber in unsubscribed %}
[@{{ subscriber.login }}]({{ subscriber.login|point_user_url(true) }}) [@{{ subscriber.login }}]({{ subscriber.login|point_user_url(true) }})
{% endfor %} {% endfor %}
{% endif %}
{% endif %}
{# @todo remove hardcoded URL #} {# @todo remove hardcoded URL #}
See full subscribers history on [Point Tools](https://point.skobk.in{{ path('user_show', {'login': user.login}) }}) site. See full subscribers history on [Point Tools](https://point.skobk.in{{ path('user_show', {'login': user.login}) }}) site.