mwmbl/mwmbl/templates/history.html
2023-11-13 16:03:26 +00:00

12 lines
358 B
HTML

{% extends "base.html" %}
{% load humanize %}
{% block content %}
<div class="main">
<h1>Curations for <a href="{{ url }}">{{ query }}</a></h1>
{% for user_curation in curations %}
<p>{{ user_curation.user.username }} {{ user_curation.curation_type }} {{ user_curation.timestamp | naturaltime}}</p>
{% endfor %}
</div>
{% endblock %}