Simplified code

This commit is contained in:
Sybren A. Stüvel 2016-11-02 17:55:37 +01:00
parent 865f777152
commit 295c821b9d

View File

@ -435,10 +435,9 @@ def edit(node_id):
embed_string = '' embed_string = ''
# Check if we want to embed the content via an AJAX call # Check if we want to embed the content via an AJAX call
if request.args.get('embed'): if request.args.get('embed') == '1':
if request.args.get('embed') == '1': # Define the prefix for the embedded template
# Define the prefix for the embedded template embed_string = '_embed'
embed_string = '_embed'
template = '{0}/edit{1}.html'.format(node_type['name'], embed_string) template = '{0}/edit{1}.html'.format(node_type['name'], embed_string)