1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-06 23:05:10 +01:00

Show deleted date when editing a deleted bookmark (yeah I know)

This commit is contained in:
2016-07-26 14:31:45 +02:00
parent af72d71082
commit f0c9b4959a

View File

@@ -83,6 +83,12 @@
<td>{{ bookmark.modified_date.strftime('%Y-%m-%d %H:%M') }}</td> <td>{{ bookmark.modified_date.strftime('%Y-%m-%d %H:%M') }}</td>
</tr> </tr>
{% endif %} {% endif %}
{% if bookmark.deleted_date %}
<tr>
<th>Deleted</th>
<td>{{ bookmark.deleted_date.strftime('%Y-%m-%d %H:%M') }}</td>
</tr>
{% endif %}
</table> </table>
</div> </div>
</div> </div>