mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 08:50:57 -05:00
18 lines
345 B
Cheetah
18 lines
345 B
Cheetah
{% extends "app/templates/base.tmpl" %}
|
|
|
|
{% block title %}
|
|
penpot - error list
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<nav>
|
|
<h1>Latest error reports:</h1>
|
|
</nav>
|
|
<main class="horizontal-list">
|
|
<ul>
|
|
{% for item in items %}
|
|
<li><a href="/dbg/error/{{item.id}}">{{item.created-at}}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</main>
|
|
{% endblock %}
|