mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 17:00:36 -05:00
18 lines
341 B
Cheetah
18 lines
341 B
Cheetah
{% extends "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 %}
|