mirror of
https://github.com/nextcloud/ocsms.git
synced 2026-08-24 06:42:59 +00:00
Prepare template navigation view for conversations
This commit is contained in:
@@ -1,4 +1,19 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li><a href="#">Conversations</a></li>
|
<li><a href="#">Conversations</a></li>
|
||||||
|
<?php if count($_["PNLConversations"]) > 0) { ?>
|
||||||
|
<ul>
|
||||||
|
<?php foreach ($_["PNLConversations"] as $number) { ?>
|
||||||
|
<li><?php p($number); ?></li>
|
||||||
|
<?php } ?>
|
||||||
|
</ul>
|
||||||
|
<?php } ?>
|
||||||
|
|
||||||
<li><a href="#">Drafts</a></li>
|
<li><a href="#">Drafts</a></li>
|
||||||
|
<?php if count($_["PNLDrafts"]) > 0) { ?>
|
||||||
|
<ul>
|
||||||
|
<?php foreach ($_["PNLDrafts"] as $number) { ?>
|
||||||
|
<li><?php p($number); ?></li>
|
||||||
|
<?php } ?>
|
||||||
|
</ul>
|
||||||
|
<?php } ?>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
Reference in New Issue
Block a user