mirror of
https://git.wownero.com/wownero/wownero-funding-system.git
synced 2024-08-15 00:53:45 +00:00
folder rename; future commits make sense after this
This commit is contained in:
parent
09d0f09d8e
commit
f473a4234e
71 changed files with 0 additions and 0 deletions
51
funding/templates/comment_reply.html
Normal file
51
funding/templates/comment_reply.html
Normal file
|
@ -0,0 +1,51 @@
|
|||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<!-- Page Content -->
|
||||
|
||||
<div class="container" style="margin-bottom:140px;">
|
||||
{% include 'messages.html' %}
|
||||
|
||||
<div class="row">
|
||||
|
||||
<!-- Post Content Column -->
|
||||
<div class="col-lg-12">
|
||||
<div class="proposal_content">
|
||||
<!-- Post Content -->
|
||||
<div class="media mb-4">
|
||||
<div class="votearrow" title="upvote"></div>
|
||||
<div class="media-body">
|
||||
<span class="username"><a href="/user/{{ c.user.username }}">{{c.user.username}}</a></span>
|
||||
<span class="date_posted">{{c.date_added.strftime('%Y-%m-%d %H:%M')}}</span><br>
|
||||
<span style="word-break: break-all">
|
||||
{{c.message}}
|
||||
</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>
|
||||
<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.
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- /.container -->
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue