cmc-sales/php/app/views/elements/pdf_created_message.ctp

8 lines
438 B
Plaintext
Raw Permalink Normal View History

<? 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;?>