mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 08:50:57 -05:00
25 lines
546 B
Cheetah
25 lines
546 B
Cheetah
{% extends "app/templates/base.tmpl" %}
|
|
|
|
{% block title %}
|
|
penpot - error list
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<nav>
|
|
<div class="title">
|
|
<h1>Error reports (last 200)</h1>
|
|
</div>
|
|
</nav>
|
|
<main class="horizontal-list">
|
|
<ul>
|
|
{% for item in items %}
|
|
<li>
|
|
<a class="date" href="/dbg/error/{{item.id}}">{{item.created-at}}</a>
|
|
<a class="hint" href="/dbg/error/{{item.id}}">
|
|
<span class="title">{{item.hint|abbreviate:150}}</span>
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</main>
|
|
{% endblock %}
|