This commit is contained in:
Nick Winter 2015-06-29 11:13:15 -07:00
parent d7f88c3d95
commit 39f8a8a8af
2 changed files with 3 additions and 2 deletions
app
templates/editor/modal
views/editor/modal

View file

@ -1,7 +1,7 @@
extends /templates/core/modal-base
block modal-header-content
h3(data-i18n="#{currentNew}") Create New #{modelLabel}
h3(data-i18n="#{newModelTitle}") Create New #{modelLabel}
block modal-body-content
form.form

View file

@ -15,13 +15,14 @@ module.exports = class NewModelModal extends ModalView
super options
@modelClass = options.model
@modelLabel = options.modelLabel
@newModelTitle = "editor.new_#{_.string.slugify @modelLabel}_title"
@properties = options.properties
$('#name').ready @focusOnName
getRenderData: ->
c = super()
c.modelLabel = @modelLabel
#c.newModelTitle = @newModelTitle
c.newModelTitle = @newModelTitle
c
makeNewModel: ->