]> git.decadent.org.uk Git - memories.git/blob - templates/photo/comment
498e5b6adaf73c6126eb2e9c177216f824c42db5
[memories.git] / templates / photo / comment
1 <div class="comments">
2 [% FOR comment = photo.comments %]
3     <div class="comment">
4         [% comment.name | html %] writes...<hr>
5         [% comment.content %]
6     </div>
7 [% END %]
8     <div class="comment">
9         <form action="[%base%]/photo/add_comment/[%photo.id%]" method="post">
10         Name: <input name="name" /> <hr>
11         <textarea name="content" cols="60" rows="5"/>
12         </textarea>
13         <p>
14         <input type="submit" name="Comment on this picture" value="Comment on this picture">
15         </p>
16         </form>
17     </div>
18 </div>