Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pystache_custom
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
pystache_custom
Commits
de9f7d41
Commit
de9f7d41
authored
Apr 20, 2011
by
Yuest Wang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Inverted Sections For Empty List
parent
feb339da
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
pystache/template.py
+2
-3
No files found.
pystache/template.py
View file @
de9f7d41
...
@@ -89,7 +89,7 @@ class Template(object):
...
@@ -89,7 +89,7 @@ class Template(object):
elif
it
and
hasattr
(
it
,
'keys'
)
and
hasattr
(
it
,
'__getitem__'
):
elif
it
and
hasattr
(
it
,
'keys'
)
and
hasattr
(
it
,
'__getitem__'
):
if
section
[
2
]
!=
'^'
:
if
section
[
2
]
!=
'^'
:
replacer
=
self
.
render
(
inner
,
it
)
replacer
=
self
.
render
(
inner
,
it
)
elif
it
:
elif
it
and
section
[
2
]
!=
'^'
:
insides
=
[]
insides
=
[]
for
item
in
it
:
for
item
in
it
:
insides
.
append
(
self
.
render
(
inner
,
item
))
insides
.
append
(
self
.
render
(
inner
,
item
))
...
@@ -154,4 +154,4 @@ class Template(object):
...
@@ -154,4 +154,4 @@ class Template(object):
"""Changes the Mustache delimiter."""
"""Changes the Mustache delimiter."""
self
.
otag
,
self
.
ctag
=
tag_name
.
split
(
' '
)
self
.
otag
,
self
.
ctag
=
tag_name
.
split
(
' '
)
self
.
compile_regexps
()
self
.
compile_regexps
()
return
''
return
''
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment