{% extends "base.html" %} {% block title %}Changelog{% endblock %} {% block body %}

Recent Changes
changelog

This is a feed of all the changes to the catalog, in the order that they are accepted. Only the most recent entries are shown, but the API can be used to inspect every change all the way back to the start. {% for entry in entries %}
Changelog
Index
Editgroup Description
#{{ entry.index }}
{{ entry.timestamp.strftime("%Y-%m-%d %H:%M:%S") }}
{% if entry.editgroup.editor.is_bot %} {% else %} {% endif %} {{ entry.editgroup.editor.username }}
editgroup_{{ entry.editgroup.editgroup_id }}
{% if entry.editgroup.description != None %}{{ entry.editgroup.description }}{% endif %} {% endfor %}

As JSON via API
{% endblock %}