* Initial import of a django project.
[matthijs/projects/xerxes.git] / templates / influences / character / detail.html
1 {% character = object %}
2 <h1>{{ character.name }}</h1>
3 Influences voor {{ character.name }}
4 <ul>
5 {% for influence in influences %}
6         <li>{{ influence }}</li>
7 {% endfor %}
8 </ul>
9
10 <form action="addinfluence/" method="post">
11         <table>
12                 <tr>
13                         <td>Contact:</td>
14                         <td><input type="text" name="contact" /></td>
15                 </tr>
16                 <tr>
17                         <td>Influence:</td>
18                         <td><textarea name="description"></textarea></td>
19                 </tr>
20         </table>
21         <input type="submit" value="Indienen"/>
22 </form>