#*
DO NOT USE (since 5.7) - please use the templates in notifications.soy instead.
*#
#if ($showDraftMessage)
## We don't like display:none either
## We should eventually remove this from the velocity template.
## Rendering draft related markup should be the responsability of the tinymce pluging confluence-drafts
## so this will probably become a soy template in the future.
#if ($existingDraft.newPage)
#set ($draftDate=$dateFormatter.formatDateTime($existingDraft.lastModificationDate))
#if ($existingDraft.title && $existingDraft.title.length() > 0)
$action.getText("draft.warning.create.page", [$draftDate, $htmlUtil.htmlEncode(${existingDraft.title})])
#else
$action.getText("draft.warning.create.page.without.title", [$draftDate])
#end
$action.getText("draft.warning.resume.or.discard.new", ["
", "", "
", ""])
#else
$action.getText("draft.warning.edit.page", ["$dateFormatter.formatDateTime($draft.lastModificationDate)"])
#if ($mergeRequired)
$action.getText("draft.warning.merge.required")
#end
#if ($conflictFound)
$action.getText("draft.warning.conflict.found", ["
", "",
"
", "", "
", ""])
#else
#if ($mergeRequired)
$action.getText("draft.warning.merge.or.discard", ["
", "",
"
", "", "
", ""])
#else
$action.getText("draft.warning.resume.or.discard", ["
", "",
"
", "", "
", ""])
#end
#end
#end
#end