This commit is contained in:
Michael Götz 2019-02-07 17:09:56 +01:00
commit b3272693d1

View File

@ -42,12 +42,10 @@
<tbody> <tbody>
{% for note in notes %} {% for note in notes %}
<tr> <tr>
<td scope="row"><a href="{{ host }}/{{ note['shortid'] }}" target="_blank">{{ note['shortid'] }}</a> <td scope="row"><a href="{{host}}/{{note['shortid']}}" target="_blank">{{note['shortid']}}</a></td>
</td>
<td>{{note['title']}}</td> <td>{{note['title']}}</td>
<td>{{note['alias']}}</td> <td>{{note['alias']}}</td>
<td><span class="note-date">{% if note['lastchangeAt'] %} <td><span class="note-date">{% if note['lastchangeAt'] %}{{note['lastchangeAt'].strftime('%Y-%m-%d %H:%M')}}{% endif %}</span>
{{ note['lastchangeAt'].strftime('%d.%m.%Y %H:%M') }}{% endif %}</span>
</td> </td>
<td>{{note['permission']}}</td> <td>{{note['permission']}}</td>
<td>{%if note['content']%}💬{%else%}❌{%endif%}</td> <td>{%if note['content']%}💬{%else%}❌{%endif%}</td>