mirror of
https://github.com/friendica/friendica
synced 2024-11-15 23:33:59 +00:00
25 lines
607 B
Smarty
25 lines
607 B
Smarty
{{*
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*}}
|
|
|
|
<div id="mail-thread-{{$thread_id}}" class="mail-thread">
|
|
{{$brauchenwas}}
|
|
<h4 class="heading">{{$thread_subject}}</h4>
|
|
|
|
<div id="mail-conversation" class="panel panel-default {{if $canreply }}can-reply{{/if}}">
|
|
{{foreach $mails as $mail}}
|
|
{{include file="mail_conv.tpl"}}
|
|
{{/foreach}}
|
|
</div>
|
|
|
|
<div id="mail-reply">
|
|
{{if $canreply}}
|
|
{{include file="prv_message.tpl"}}
|
|
{{else}}
|
|
{{$unknown_text}}
|
|
{{/if}}
|
|
</div>
|
|
</div>
|