6 |
7 |
8 |
9 |
10 |
11 |
12 |

{{ post.create_at|date:"d" }}

13 | {{ post.create_at|date:"M" }} 14 |
15 |
16 |
    17 |
  • {{ post.category }}
  • 18 |
19 |

{{ post.title }}

20 |
    21 |
  • by {{ post.author }}
  • 22 |
  • 3 min read
  • 23 |
  • 20 Comment
  • 24 |
25 |
26 |
27 | 35 |
36 |

{{ post.text|truncatewords:20 }}

37 |
38 |
39 | {% for recipe in post.get_recipes %} 40 |
41 |
    42 |
  • 43 |
    SERVES
    44 | {{ recipe.serves }} 45 |
  • 46 |
  • 47 |
    PREP TIME
    48 | {{ recipe.prep_time }} 49 |
  • 50 |
  • 51 |
    Cook TIME
    52 | {{ recipe.cook_time }} 53 |
  • 54 |
  • Read more
  • 55 |
56 |
57 | 58 |
59 |
Ingredients
60 | {{ recipe.ingredients|safe }} 61 |
62 |
63 |
Directions
64 | {{ recipe.directions|safe }} 65 |
66 | {% endfor %} 67 |
68 | 69 |
70 |

{{ post.text }}

71 |
72 | 77 |
78 | 106 |
107 | {% get_about as about %} 108 | 123 |
124 |
125 |

{{ post.get_comments.count }} Comment

126 |
127 | {% for comment in post.get_comments %} 128 |
129 |
130 | 131 |
132 |
133 |
{{ comment.name }}
134 | {{ comment.create_at }} 135 |

{{ comment.message }}

136 |
137 |
138 | {% endfor %} 139 |
140 |
141 |
142 |

Leave a comment

143 |
144 |
145 | {% csrf_token %} 146 |
147 | {{ form.name }} 148 | {{ form.email }} 149 | {{ form.website }} 150 | {# #} 151 | {# #} 152 | {# #} 153 |
154 | {# #} 155 | {{ form.message }} 156 | 157 |
158 |
159 |
160 |
161 |
162 |