mirror of
https://github.com/standardebooks/web.git
synced 2025-07-13 10:02:02 -04:00
Note patron anonymous status in notification email
This commit is contained in:
parent
a370651a62
commit
7465145b33
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
|||
<tbody>
|
||||
<tr>
|
||||
<td>Name:</td>
|
||||
<td><? if($patron->User->Name === null){ ?>Anonymous <? }else{ ?><?= Formatter::ToPlainText($patron->User->Name) ?><? } ?></td>
|
||||
<td><? if($patron->User->Name === null){ ?>Anonymous <? }else{ ?><?= Formatter::ToPlainText($patron->User->Name) ?><? if($patron->IsAnonymous){ ?> (Anonymous)<? } ?><? } ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Donation type:</td>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Name: <? if($patron->User->Name === null){ ?>Anonymous <? }else{ ?><?= Formatter::ToPlainText($patron->User->Name) ?><? } ?>
|
||||
Name: <? if($patron->User->Name === null){ ?>Anonymous <? }else{ ?><?= Formatter::ToPlainText($patron->User->Name) ?><? if($patron->IsAnonymous){ ?> (Anonymous)<? } ?><? } ?>
|
||||
|
||||
Donation type: <? if($payment->IsRecurring){ ?>Recurring<? }else{ ?>One-time<? } ?>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue