forked from GNUsocial/gnu-social
Eliseu Amaro
48b2c8c04e
[COMPONENTS][Posting] Call Conversation::assignLocalConversation upon creating a new note By using the AddExtraArgsToNoteContent event upon posting a Note, an extra argument ('reply_to') is added before storing the aforementioned Note. When storeLocalNote eventually creates the Note, the corresponding Conversation is assigned.
19 lines
563 B
Twig
19 lines
563 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) }}
|
|
</div>
|
|
</div>
|
|
{% endblock body %}
|