send email; manage notis and email logs

This commit is contained in:
Tóth Richárd
2018-10-23 21:56:06 +02:00
parent 85180a91b6
commit 7a24fdee51
14 changed files with 217 additions and 98 deletions

View File

@@ -0,0 +1,14 @@
<div class="list noti">
{if !count($kid_array)}
Nincs találat!
{/if}
{foreach $kid_array as $kid}
<div class="list_item noti">
<label>
{$kid->get_uk_name()}
</label>
<div>{$kid->get_uk_last_notification()}</div>
</div>
<a href="/admin/delete_notification/{$kid->get_uk_id()}" class="addbutton delete noti">Törlés</a>
{/foreach}
</div>