Logos, robots and some fixs

This commit is contained in:
Xbird
2022-08-08 17:19:06 +00:00
parent 9918c6bad9
commit 4f00470223
54 changed files with 235 additions and 59 deletions

View File

@@ -78,8 +78,8 @@
</div>
<div class="row mt-5">
<div class="col">
<h3>{% trans %}title_comments{% endtrans %} {% if shared is not defined %}<a href="#" data-bs-toggle="modal" data-bs-target="#addCommentModal"><span class="badge rounded-pill bg-success"><i class="fa fa-plus"></i> {% trans %}button_add_comment{% endtrans %}</span></a>{% endif %}</h3><hr>
<div class="col-12">
<h3>{% trans %}title_comments{% endtrans %} {% if shared is not defined %}<a href="#addcomment"><span class="badge rounded-pill bg-success"><i class="fa fa-plus"></i> {% trans %}button_add_comment{% endtrans %}</span></a>{% endif %}</h3><hr>
<ul class="timeline">
@@ -92,7 +92,13 @@
</li>
{% endfor %}
</ul>
</div>
</div>
{% if shared is not defined %}
<div class="col-12" id="addcomment">
<h3>{% trans %}title_comment_add{% endtrans %}</h3><hr>
{{ form(formComment) }}
</div>
{% endif %}
</div>
</div>
@@ -108,24 +114,6 @@
{% endif %}
</div>
</div>
{% if shared is not defined %}
<!-- Modal -->
<div class="modal fade" id="addCommentModal" tabindex="-1" role="dialog" aria-labelledby="addCommentModalTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="addCommentModalTitle">{% trans %}title_add_comment{% endtrans %}</h5>
</div>
<div class="modal-body">
{{ form(formComment) }}
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">{% trans %}button_cancel{% endtrans %}</button>
</div>
</div>
</div>
</div>
{% endif %}
{% endblock %}