NewsBlur/templates/mail/email_follow_request.xhtml
2019-07-28 16:33:12 -07:00

42 lines
2.8 KiB
HTML

{% extends "mail/email_base.xhtml" %}
{% load utils_tags %}
{% block body %}
<h2 style="color: #282F33; font-size: 18px; font-weight: bold;">
You have a follow request:
</h2>
<div style="margin: 24px 0;font-size: 24px;text-align: center;">
<a href="{{ follower_profile.blurblog_url }}"><img src="{{ follower_profile.large_photo_url }}" style="max-width: 200px; max-height: 200px;margin: 0 auto;border-radius: 3px;border: none;"></a>
<div style="margin: 8px 0 0 0;font-weight: bold;"><a href="{{ follower_profile.blurblog_url }}" style="color: #404040;text-decoration: none">{{ follower_profile.username }}</a></div>
<div style="color: #AE5D15;font-size: 11px;text-transform: uppercase;margin: 4px 0;"><b>{{ follower_profile.shared_stories_count }}</b> shared {{ follower_profile.shared_stories_count|pluralize:"story,stories" }} &middot; <b>{{ follower_profile.follower_count }}</b> follower{{ follower_profile.follower_count|pluralize }}</div>
</div>
<p style="padding-top: 12px;">
Approve or ignore this follow request <a href="https://{% current_domain %}{{ user.profile.autologin_url }}">on NewsBlur</a>.
</p>
{% if common_followers %}
<div style="clear: both; overflow: hidden">
<p style="margin: 12px 0 12px;line-height: 16px;clear: both;">You follow {{ common_followers|length }} {{ common_followers|pluralize:"person,people" }} who follow{{ common_followers|pluralize:"s," }} {{ follower_profile.username }}:</p>
{% for follower in common_followers %}
<div style="margin: 0 12px 12px 0; float: left;">
<a href="{{ follower.blurblog_url }}"><img src="{{ follower.email_photo_url }}" style="float: left; border-radius: 3px;margin-right: 6px; width: 24px; height: 24px;border: none;"></a>
<a href="{{ follower.blurblog_url }}" style="color: #404040;text-decoration: none">{{ follower.username }}</a>
</div>
{% endfor %}
</div>
{% endif %}
{% if common_followings %}
<div style="clear: both; overflow: hidden">
<p style="display: block; margin: 12px 0 12px;line-height: 16px;clear: both;">You and {{ follower_profile.username }} both follow {{ common_followings|length }} {{ common_followings|pluralize:"person,people" }}:</p>
{% for following in common_followings %}
<div style="margin: 0 12px 12px 0; float: left;">
<a href="{{ following.blurblog_url }}"><img src="{{ following.email_photo_url }}" style="float: left; border-radius: 3px;margin-right: 6px; width: 24px; height: 24px;border: none;"></a>
<a href="{{ following.blurblog_url }}" style="color: #404040;text-decoration: none">{{ following.username }}</a>
</div>
{% endfor %}
</div>
{% endif %}
{% endblock %}