cmc-sales/views/elements/pdf_created_message.ctp
2011-08-09 18:54:10 +10:00

8 lines
438 B
PHP

<? if(!empty($document['Document']['pdf_filename'])):
?>
<div class="pdfGeneratedMessage">
A <?=$html->link('PDF copy of this '.$docTypeFullName, '/pdf/'.$document['Document']['pdf_filename']);?> was created <?=$time->niceShort($document['Document']['pdf_created_at']);?> by
<?=$html->link($users[$document['Document']['pdf_created_by_user_id']], '/users/view/'.$document['Document']['pdf_created_by_user_id']);?>
</div>
<? endif;?>