123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {# "UpdatedBy"|get_lang|format(comment.username) #}
- <hr>
- <h3>
- {{ 'Comments' | get_lang }}
- </h3>
- <hr>
- <ul>
- {% for comment in comments %}
- <li>
- <div class="page-header">
- <a href="{{ _p.web_code }}">
- <img height="24" src="{{ comment.picture }}"/> {{ comment.username }}
- </a>- {{ comment.sent_at | api_get_local_time }}
- </div>
- <p>
- {% if comment.comment is not empty %}
- {{ comment.comment }}
- {% else %}
- {{ 'HereIsYourFeedback' | get_lang }}
- {% endif %}
- </p>
- {% if comment.file_url is not empty %}
- <p>
- <a href="{{ comment.file_url }}">
- <img src="{{ "attachment.gif"|icon(32) }}" width="32" height="32">
- {{ comment.file_name_to_show }}
- </a>
- {% if is_allowed_to_edit %}
- <a href="{{ comment.delete_file_url }}">
- <img src="{{ "delete.png"|icon(22) }}" width="22" height="22">
- </a>
- {% endif %}
- </p>
- {% endif %}
- </li>
- {% endfor %}
- </ul>
- <br />
- <hr>
- {{ form }}
|