projects
/
cookbook.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cfda056
)
Fix missing <td> typo in recipe.html template
author
W. Trevor King
<wking@drexel.edu>
Mon, 21 Jun 2010 19:53:56 +0000
(15:53 -0400)
committer
W. Trevor King
<wking@drexel.edu>
Mon, 21 Jun 2010 19:53:56 +0000
(15:53 -0400)
cookbook/template/recipe.html
patch
|
blob
|
history
diff --git
a/cookbook/template/recipe.html
b/cookbook/template/recipe.html
index 6ffa93fa586d1f166db16bcb6089ac86aac6de0b..23cd5643b197dd67d037248c9add834a661cc5fe 100644
(file)
--- a/
cookbook/template/recipe.html
+++ b/
cookbook/template/recipe.html
@@
-28,7
+28,7
@@
<h2>{{ ingredient_block.heading() }}</h2>
<table>
{% for ingredient in ingredient_block %}
- <tr>
{{ ingredient.__unicode__() }}
</tr>
+ <tr>
<td>{{ ingredient.__unicode__() }}</td>
</tr>
{% endfor %}
</table>
{% endfor %}