Skip to content
This repository has been archived by the owner on Dec 1, 2022. It is now read-only.

Update private_message.html #109

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 5 additions & 16 deletions upload/styles/cb_28/layout/private_message.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,37 +6,28 @@
{include file="$style_dir/blocks/manage/userMenuLeft.html"}
</div>
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-12">

<div class="tabbable">
<ul class="nav nav-tabs" id="myTab">


<li class="{if $mode =='inbox'}active {/if}">

<a href="{$baseurl}/private_message.php?mode=inbox">
<h5>{lang code='Inbox'}</h5>
<h5>{lang code='inbox'}</h5>
</a>
</li>


<li class="{if $mode =='notification'}active{/if}">
<a href="{$baseurl}/private_message.php?mode=notification">
<h5>{lang code='Notifications'}</h5>
<h5>{lang code='notifications'}</h5>
</a>
</li>

<li class="{if $mode =='sent'}active{/if}">
<a href="{$baseurl}/private_message.php?mode=sent">
<h5>{lang code='Sent'}</h5>
<h5>{lang code='sent'}</h5>
</a>
</li>

<li class=" {if $mode =='new_msg'}active{/if}">
<a href="{$baseurl}/private_message.php?mode=new_msg">
<h5>{lang code='Write Message'}</h5>
<h5>{lang code='write_message'}</h5>
</a>
</li>

</ul>
<div class="tab-content">
{if $mode =='new_msg'}
Expand All @@ -45,7 +36,6 @@ <h2>{lang code='private_messages'} &raquo; {lang code='title_crt_new_msg'}</h2>
{assign var='form_fields' value=$cbpm->load_compose_form()}
<div class="account_form">
<form id="pm_msg" name="pm_msg" method="post" action="">

<h3>{lang code='new_private_msg'}</h3>
{foreach from=$form_fields item=field}
<div class="form-group">
Expand All @@ -61,7 +51,6 @@ <h3>{lang code='new_private_msg'}</h3>
</div>
</div>{/if}


{if $mode =='inbox'}
<div id="inbox" class="tab-pane active">
<h2>{lang code='private_messages'} &raquo; {lang code='inbox'}</h2>
Expand All @@ -86,4 +75,4 @@ <h2>{lang code='private_messages'} &raquo; {lang code='sent'}</h2>
</div>
</div>
</div>
</div>
</div>