f2f1bdc145
[PLUGIN][Repeat] Deleted unnecessary card note template, info now to appended at the end of note. [PLUGIN][TreeNotes] WIP to accomodate reply plugin changes. [TWIG][Runtime] Removed getAdditionalTemplateVars event.
20 lines
597 B
Twig
20 lines
597 B
Twig
{% extends 'stdgrid.html.twig' %}
|
|
{% import "/cards/note/view.html.twig" as noteView %}
|
|
|
|
{% block title %}{{ 'Reply to ' | trans }}{{ note.getActorNickname() }}{{ '\'s note.' | trans }}{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
{{ parent() }}
|
|
<link rel="stylesheet" href="{{ asset('assets/default_theme/css/pages/feeds.css') }}" type="text/css">
|
|
{% endblock stylesheets %}
|
|
|
|
{% block body %}
|
|
{{ parent() }}
|
|
<div class="page">
|
|
<div class="main">
|
|
{{ noteView.macro_note_minimal(note) }}
|
|
{{ form(add_reply) }}
|
|
</div>
|
|
</div>
|
|
{% endblock body %}
|