mirror of
https://git.wownero.com/wownero/wownero-funding-system.git
synced 2024-08-15 00:53:45 +00:00
Show messagebox about posting images
This commit is contained in:
parent
dcf2c77413
commit
cbf3f219d0
2 changed files with 19 additions and 2 deletions
|
@ -21,11 +21,20 @@
|
|||
</span>
|
||||
<br><br>
|
||||
{% if logged_in %}
|
||||
|
||||
<form method="post" action="{{url_for('proposal_comment')}}">
|
||||
<input type="hidden" name="pid" value="{{pid}}">
|
||||
<input type="hidden" name="cid" value="{{cid}}">
|
||||
<textarea class="comment" name="text" rows="6" cols="60"></textarea>
|
||||
<br><br><input type="submit" value="add comment">
|
||||
<br><br>
|
||||
<div class="row">
|
||||
<div class="col-md-10">
|
||||
<div class="alert alert-secondary" role="alert">
|
||||
Posting imgur/imgflip media can be done by linking directly to the image, no [img] bbcode needed.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<input type="submit" value="add comment">
|
||||
</form>
|
||||
{% else %}
|
||||
You need to be logged in to comment.
|
||||
|
|
|
@ -7,7 +7,15 @@
|
|||
<form method="post" action="comment">
|
||||
<input type="hidden" name="pid" value="{{proposal.id}}">
|
||||
<textarea class="comment" name="text" rows="6" cols="60"></textarea>
|
||||
<br><br><input type="submit" value="add comment">
|
||||
<br><br>
|
||||
<div class="row">
|
||||
<div class="col-md-8">
|
||||
<div class="alert alert-secondary" role="alert">
|
||||
Posting imgur/imgflip media can be done by linking directly to the image, no [img] bbcode needed.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<input type="submit" value="add comment">
|
||||
</form>
|
||||
{% else %}
|
||||
You need to be logged in to comment.
|
||||
|
|
Loading…
Reference in a new issue