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'] ){
|
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'] ){
|
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?>">
|
<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="avatar"><img class="avatar-small" src="/assets/images/admin/user.jpg" /></div>
|
||||||
<div class="info">
|
<div class="info">
|
||||||
<span class="name"><strong><?=$note->name?></strong> <span class="badge badge-blue">user</span></span>
|
<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>
|
</div>
|
||||||
<?=$note->text ?>
|
<?=nl2br($note->text); ?>
|
||||||
</li>
|
</li>
|
||||||
@ -1,8 +1,12 @@
|
|||||||
|
<? $date = $note->date(); ?>
|
||||||
<li class="arrow-box-right gray" id="chat-note-<?=$note->id_support_note?>">
|
<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="avatar"><img class="avatar-small" src="/assets/images/admin/user.jpg" /></div>
|
||||||
<div class="info">
|
<div class="info">
|
||||||
<span class="name"><strong>Staff</strong> <span class="badge badge-gray"><?=$note->from?></span></span>
|
<span class="name">
|
||||||
<span class="time"><?=$note->relativeTime()?></span>
|
<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>
|
</div>
|
||||||
<?=$note->text ?>
|
<?=nl2br($note->text); ?>
|
||||||
</li>
|
</li>
|
||||||
@ -1,8 +1,9 @@
|
|||||||
|
<? $date = $note->date(); ?>
|
||||||
<li class="arrow-box-right gray" id="chat-note-<?=$note->id_support_note?>">
|
<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="avatar"><img class="avatar-small" src="/assets/images/admin/system.png" /></div>
|
||||||
<div class="info">
|
<div class="info">
|
||||||
<span class="name"><strong>Staff</strong> <span class="badge badge-green"><?=$note->from?></span></span>
|
<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>
|
</div>
|
||||||
<?=$note->text ?>
|
<?=nl2br($note->text); ?>
|
||||||
</li>
|
</li>
|
||||||
@ -55,7 +55,8 @@ $support = $this->support;
|
|||||||
<li>
|
<li>
|
||||||
<label>What Happened from User's Perspective?</label>
|
<label>What Happened from User's Perspective?</label>
|
||||||
<?php
|
<?php
|
||||||
$options = array( 'Food never came',
|
$options = array( '',
|
||||||
|
'Food never came',
|
||||||
'Wrong options',
|
'Wrong options',
|
||||||
'Wrong or missing food items',
|
'Wrong or missing food items',
|
||||||
'Realized they made a mistake using website',
|
'Realized they made a mistake using website',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user