-
Notifications
You must be signed in to change notification settings - Fork 0
/
comments.html
42 lines (42 loc) · 1.67 KB
/
comments.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<html>
<head>
<link rel="stylesheet" href="/static/styles.css" />
<script type="text/javascript" src="/static/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="/static/jquery.autocomplete-min.js"></script>
<script type="text/javascript" src="/static/json2.js"></script>
<script type="text/javascript" src="/static/scripts.js"></script>
</head>
<body>
{{ translation.translation|escape }}
<h3>Сэтгэгдэлүүд</h3>
<div>
{% if user %}
<form action="" method="post">
<table width="100%">
<tr>
<td>
<textarea name="comment"></textarea>
</td>
</tr>
<tr>
<td>
<button type="submit">Шинэ сэтгэгдэл нэм</button>
</td>
</tr>
</table>
</form>
{% else %}
Та Twitter хэрэглэн
<a href="/twitter_auth">системд нэвтэрснээр</a>
шинэ сэтгэгдэл оруулж чадна.
{% endif %}
</div>
{% for comment in comments %}
<div>
<a target="_blank" href="http://twitter.com/{{ comment.user }}">@{{ comment.user }}</a>:
{{ comment.comment|escape }}
<div class="date">{{ comment.when|date:"Y.m.d H:i" }}</div>
</div>
{% endfor %}
</body>
</html>