{if $smarty.get.cat == 'edit'}{t}Updating Reminder{/t} #{$smarty.get.id|intval}{else}{t}Creating New Reminder{/t}{/if}
{if $result != ""}
{if $smarty.post.cat == "new"}
{if $result == -1}
{t}An error occurred while trying to add the new reminder.{/t}
{elseif $result == -2}
{t}Please enter the title for this new reminder.{/t}
{elseif $result == 1}
{t}Thank you, the reminder was added successfully.{/t}
{/if}
{elseif $smarty.post.cat == "update"}
{if $result == -1}
{t}An error occurred while trying to update the reminder information.{/t}
{elseif $result == -2}
{t}Please enter the title for this reminder.{/t}
{elseif $result == 1}
{t}Thank you, the reminder was updated successfully.{/t}
{/if}
{/if}