This commit is contained in:
Daniel Camargo 2013-06-04 11:04:35 -03:00
parent d2c5c6de50
commit c033e607b7
5 changed files with 16 additions and 9 deletions

View File

@ -119,7 +119,7 @@ class Controller_support extends Crunchbutton_Controller_Account {
}
if( $support->description_cb != $args['description_cb'] ){
$changes[] = 'Behind the scenes: ' . $args['description_cb'];
$changes[] = 'Behind the scenes changed to' . $args['description_cb'];
}
if( $support->how_to_prevent != $args['how_to_prevent'] ){

View File

@ -1,8 +1,9 @@
<? $date = $note->date(); ?>
<li class="arrow-box-left" id="chat-note-<?=$note->id_support_note?>">
<div class="avatar"><img class="avatar-small" src="/assets/images/admin/user.jpg" /></div>
<div class="info">
<span class="name"><strong><?=$note->name?></strong> <span class="badge badge-blue">user</span></span>
<span class="time"><?=$note->relativeTime()?></span>
<span class="time" title="<?=$date->format('M jS Y - g:i:s A');?>"><?=$note->relativeTime()?></span>
</div>
<?=$note->text ?>
<?=nl2br($note->text); ?>
</li>

View File

@ -1,8 +1,12 @@
<? $date = $note->date(); ?>
<li class="arrow-box-right gray" id="chat-note-<?=$note->id_support_note?>">
<div class="avatar"><img class="avatar-small" src="/assets/images/admin/user.jpg" /></div>
<div class="info">
<span class="name"><strong>Staff</strong> <span class="badge badge-gray"><?=$note->from?></span></span>
<span class="time"><?=$note->relativeTime()?></span>
<span class="name">
<strong>Staff</strong> <span class="badge badge-gray"><?=$note->from?></span>
<?php if( $note->visibility == 'external' ){ echo '<i class="icon-mobile-phone" title="sms"></i>'; } ?>
</span>
<span class="time" title="<?=$date->format('M jS Y - g:i:s A');?>"><?=$note->relativeTime()?></span>
</div>
<?=$note->text ?>
<?=nl2br($note->text); ?>
</li>

View File

@ -1,8 +1,9 @@
<? $date = $note->date(); ?>
<li class="arrow-box-right gray" id="chat-note-<?=$note->id_support_note?>">
<div class="avatar"><img class="avatar-small" src="/assets/images/admin/system.png" /></div>
<div class="info">
<span class="name"><strong>Staff</strong> <span class="badge badge-green"><?=$note->from?></span></span>
<span class="time"><?=$note->relativeTime()?></span>
<span class="time" title="<?=$date->format('M jS Y - g:i:s A');?>"><?=$note->relativeTime()?></span>
</div>
<?=$note->text ?>
<?=nl2br($note->text); ?>
</li>

View File

@ -55,7 +55,8 @@ $support = $this->support;
<li>
<label>What Happened from User's Perspective?</label>
<?php
$options = array( 'Food never came',
$options = array( '',
'Food never came',
'Wrong options',
'Wrong or missing food items',
'Realized they made a mistake using website',