blob: 10f1ccb040973bee5ba2599c89e090c575039df2 (
plain) (
blame)
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
|
{% extends "layouts/default" %}
{% import "views/macros/tags" %}
{% block content %}
<article>
{%if twitter1 %}
<h2 style="color: red; padding: 20px;">Reconnect or disable your Twitter account</h2>
{% endif %}
<form id="postmsg">
<p style="text-align: left;">
<b>Фото:</b> <span id="attachmentfile">
<input style="width: 100%;" type="file" name="attach" accept="image/jpeg,image/png"/> <i>({{ i18n("messages","postForm.imageFormats") }})</i></span>
</p>
<p>
<textarea name="body" class="newmessage" rows="7" cols="10" placeholder="*weather It's very cold today!">{{ body }}</textarea>
<br/>
<input type="submit" class="subm Button" value=" {{ i18n("messages","postForm.submit") }} "/>
</p>
</form>
</article>
<p style="text-align: left;"><b>Теги:</b></p>
{{ tags(visitor.name, tags) }}
{% endblock %}
{% block "column" %}
{% include "views/partial/usercolumn" %}
{% endblock %}
|