12345678910111213141516171819202122232425262728293031323334353637 |
- <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.complete_name }}
- </a>- {{ comment.sent_at_with_label }}
- </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 />
|