partial #1333
This commit is contained in:
parent
d2c5c6de50
commit
c033e607b7
@ -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'] ){
|
||||
|
||||
@ -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>
|
||||
@ -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>
|
||||
@ -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>
|
||||
@ -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',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user