put published date on template publishing area

This commit is contained in:
Henry Oswald 2014-03-03 23:04:30 +00:00
parent 413ef7440f
commit 149b51ddc6
2 changed files with 3 additions and 0 deletions

View file

@ -297,6 +297,7 @@
#publishedAsTemplateArea(style="display:none;")
a#templateLink(href='{{canonicalUrl}}') View Template
p published at {{publishedDate}}
.btn.btn-warning#unPublishProjectAsTemplate unpublish project as template
.btn.btn-success#republishProjectAsTemplate re publish project as template

View file

@ -186,6 +186,7 @@ define [
description: @model.get("description")
canonicalUrl: @model.get("template.canonicalUrl")
isPublished: @model.get("template.isPublished")
publishedDate: @model.get("template.publishedDate")
$(@el).html $(Mustache.to_html(@template, viewModel))
@publishedArea = $('#publishedAsTemplateArea')
@ -201,6 +202,7 @@ define [
@model.set("template.isPublished", details.exists)
if details.exists
@model.set("template.canonicalUrl", details.canonicalUrl)
@model.set("template.publishedDate", details.publishedDate)
@publishedArea.show()
@unpublishedArea.hide()
else