blob: a0ca391c8e513eb602a61db36abec2af9ede15c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<div class="sidebar-widget blubber_threads_widget"
data-threads_data="<?= htmlReady(json_encode($json)) ?>">
<div class="sidebar-widget-header">
<div class="actions">
<? if ($with_composer) : ?>
<a href="<?= URLHelper::getLink("dispatch.php/blubber/compose") ?>" data-dialog="width=600;height=300">
<?= Icon::create("add", "clickable")->asImg(20, ['class' => "text-bottom"]) ?>
</a>
<? endif ?>
</div>
<?= count($json) > 1 ? _("Konversationen") : _("Konversation") ?>
</div>
<div class="sidebar-widget-content">
<blubber-thread-widget :threads="threads" :active_thread="active_thread" :more_down="threads_more_down"></blubber-thread-widget>
</div>
</div>
|