Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Overriding default templates requires replace(). #7

Open
davidkellerman opened this issue Jul 19, 2016 · 0 comments
Open

Overriding default templates requires replace(). #7

davidkellerman opened this issue Jul 19, 2016 · 0 comments

Comments

@davidkellerman
Copy link
Contributor

To override either of the default view-<model>-list or view-<model>-detail templates, you have to use replace(), which shouldn't be necessary.

So, for example, the following code works:

    app.get('base-ui').viewModel('pd_recipe', {
      model: 'pd_recipe',
      displayName: 'Recipe',
      sortField: 'updatedAt', sortDirection: 'DESC',
      modelPopulate: ['app', 'user', 'ingredients']})
    app.get('templater').replace().template(__dirname + "/views/view-pd-recipe-detail.ejs", "page")
    app.get('templater').replace().template(__dirname + "/views/view-pd-recipe-list.ejs", "page")

However, the replacement templates won't take effect if you remove the replace() clauses.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant