mirror of
https://github.com/jfmcbrayer/brutaldon
synced 2024-12-22 13:26:14 +01:00
20 lines
384 B
HTML
20 lines
384 B
HTML
{% extends "base.html" %}
|
|
{% load widget_tweaks %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<h1 class="title">Follow requests</h1>
|
|
|
|
{% if not requests %}
|
|
<p>No follow requests.</p>
|
|
{% endif %}
|
|
|
|
|
|
{% for request in requests %}
|
|
{% include "requests/request_partial.html" %}
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|