mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-19 12:58:29 +00:00
12 lines
351 B
Text
12 lines
351 B
Text
![]() |
{% extends "mail/email_base.txt" %}
|
||
|
|
||
|
{% block body %}
|
||
|
{{ reply_user_profile.username }} replied to you:
|
||
|
|
||
|
{{ comment.user.username }} ({{ comment.shared_date }} ago):
|
||
|
{{ comment.comments|linebreaksbr }}
|
||
|
|
||
|
{% for reply in comment.replies %}
|
||
|
{{ reply.user.username }} ({{ reply.publish_date }} ago):
|
||
|
{{ reply.comments }}
|
||
|
{% endfor %}{% endblock %}
|