bridgy-fed/templates/followers.html

27 wiersze
874 B
HTML

{% extends "profile.html" %}
{% set subtab = "followers" %}
{% block subsubtabs %}
{% if user.LABEL != 'activitypub' %}
<div class="row">
<form method="post" action="/remote-follow">
<nobr>
<label for="follow-address">Follow @{{ id }} with your fediverse address:</label>
<input id="follow-address" name="address" type="text" required
placeholder="@user@domain.social" alt="fediverse address"
value="{{ follow_url or '' }}"></input>
<input name="domain" type="hidden" value="{{ id }}"></input>
<input name="protocol" type="hidden" value="{{ user.LABEL }}"></input>
<button type="submit" class="btn btn-default">Follow</button>
</nobr>
</form>
</div>
{% endif %}
{% endblock subsubtabs %}
{% block feed %}
{% with page_name="followers" %}
{% include "_followers.html" %}
{% endwith %}
{% endblock %}