forked from GNUsocial/gnu-social
22 lines
662 B
Twig
22 lines
662 B
Twig
{% extends 'stdgrid.html.twig' %}
|
|
{% import "/cards/macros/note/factory.html.twig" as NoteFactory %}
|
|
|
|
{% block title %}{% trans %}Delete note{% endtrans %}{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
{{ parent() }}
|
|
<link rel="stylesheet" href="{{ asset('assets/default_theme/feeds.css') }}" type="text/css">
|
|
{% endblock stylesheets %}
|
|
|
|
{% block body %}
|
|
{{ parent() }}
|
|
<div class="page">
|
|
<div class="main">
|
|
{% set args = { 'type': 'vanilla_full', 'note': note, 'extra': { 'depth': 0 } } %}
|
|
{{ NoteFactory.constructor(args) }}
|
|
<hr>
|
|
{{ form(delete) }}
|
|
</div>
|
|
</div>
|
|
{% endblock body %}
|