diff options
author | Vitaly Takmazov | 2017-02-28 14:29:05 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-02-28 17:16:56 +0300 |
commit | 3b460c49a7cbca72f367bc44ca111b2a508d0cac (patch) | |
tree | 8346348d2d6970394bb56f81b6886d43dd6fcb53 /juick-www/src/main/webapp/WEB-INF/views/pm_sent.html | |
parent | 38a5c62973e5de2d1f8f6ed8f08c87622d3324ac (diff) |
readonly mode
Diffstat (limited to 'juick-www/src/main/webapp/WEB-INF/views/pm_sent.html')
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/views/pm_sent.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/pm_sent.html b/juick-www/src/main/webapp/WEB-INF/views/pm_sent.html index 41f3814b..872cd29f 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/pm_sent.html +++ b/juick-www/src/main/webapp/WEB-INF/views/pm_sent.html @@ -1,5 +1,6 @@ {% extends "layouts/content" %} {% block content %} +{% if not readonly %} <form action="/pm/send" method="POST" enctype="multipart/form-data"> <div class="newpm"> <div class="newpm-to">To: <input type="text" name="uname" placeholder="username" value="{{ uname }}"/></div> @@ -7,6 +8,7 @@ <div class="newpm-send"><input type="submit" value="OK"/></div> </div> </form> +{% endif %} {% if not msgs.isEmpty() %} <ul id="private-messages"> {% for msg in msgs %} |