Navigation Menu

Skip to content

Commit

Permalink
removed _self usage when not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Aug 11, 2015
1 parent e23eb56 commit 3d0577d
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -434,7 +434,7 @@
{% if data.children is not empty %}
<ul id="{{ data.id }}-children"{% if not expanded %} class="hidden"{% endif %}>
{% for childName, childData in data.children %}
{{ _self.form_tree_entry(childName, childData, false) }}
{{ form_tree_entry(childName, childData, false) }}
{% endfor %}
</ul>
{% endif %}
Expand Down Expand Up @@ -673,6 +673,6 @@
</div>

{% for childName, childData in data.children %}
{{ _self.form_tree_details(childName, childData, forms_by_hash) }}
{{ form_tree_details(childName, childData, forms_by_hash) }}
{% endfor %}
{% endmacro %}

0 comments on commit 3d0577d

Please sign in to comment.