Skip to content

Commit

Permalink
rename templates to start with webapp_
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Jan 4, 2015
1 parent 9b58423 commit abf360f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/webapp/webapp.py
Expand Up @@ -169,7 +169,7 @@ def edit(path):
context['post'] = post
context['title'] = 'Editing {0}'.format(post.title())
context['permalink'] = '/edit/' + path
return render('edit_post.tmpl', context)
return render('webapp_edit_post.tmpl', context)

@staticmethod
@b.route('/save/<path:path>', method='POST')
Expand Down Expand Up @@ -206,7 +206,7 @@ def delete(path):
context['post'] = post
context['title'] = 'Deleting {0}'.format(post.title())
context['permalink'] = '/delete/' + path
return render('delete_post.tmpl', context)
return render('webapp_delete_post.tmpl', context)

@staticmethod
@b.route('/really_delete/<path:path>')
Expand Down

0 comments on commit abf360f

Please sign in to comment.