mirror of
https://github.com/penpot/penpot.git
synced 2025-01-24 23:49:45 -05:00
19 lines
423 B
Cheetah
19 lines
423 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 class="date" href="/dbg/error/{{item.id}}">{{item.created-at}}</a>
|
|
<span class="title">{{item.hint|abbreviate:150}}</span></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</main>
|
|
{% endblock %}
|