mirror of
https://github.com/django/django.git
synced 2024-11-30 07:06:18 +01:00
Simplified IfNode.nodelist
This commit is contained in:
parent
cf59392e16
commit
df0aebc893
@ -292,7 +292,7 @@ class IfNode(Node):
|
||||
|
||||
@property
|
||||
def nodelist(self):
|
||||
return NodeList(node for _, nodelist in self.conditions_nodelists for node in nodelist)
|
||||
return NodeList(iter(self))
|
||||
|
||||
def render(self, context):
|
||||
for condition, nodelist in self.conditions_nodelists:
|
||||
|
Loading…
Reference in New Issue
Block a user