V-Beta-1.0.0
Vision is out of alpha !
This commit is contained in:
17
templates/comment/edit.html.twig
Normal file
17
templates/comment/edit.html.twig
Normal file
@@ -0,0 +1,17 @@
|
||||
{% extends 'base.html.twig' %}
|
||||
|
||||
{% block title %}{% trans %}title_comment_edition{% endtrans %}{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<div class="row">
|
||||
<div class="col-lg-8">
|
||||
{{ form(form) }}
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<h3>{% trans %}title_comment_belong_document{% endtrans %}</h3>
|
||||
<p><a href="{{ path('document_view', {'id': comment.document.id}) }}" class="btn btn-primary btn-sm">{{ comment.document.getClassShort}} - {{comment.document.title}}</a></p>
|
||||
<p>{% trans %}title_author{% endtrans %} {{comment.creator.fullName}}, {{comment.creator.mainGroup.shortname}}</p>
|
||||
<p>{% trans %}title_created_at{% endtrans %} {{comment.createdAt |date('_datetime.format'|trans)}}</p>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user