mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
view template replaced by CRUD view template
This commit is contained in:
parent
e35f002f2b
commit
e895125d12
@ -1,59 +0,0 @@
|
|||||||
<h1>{{ "Aside activity"|trans }}</h1>
|
|
||||||
|
|
||||||
<dl class="chill_view_data">
|
|
||||||
|
|
||||||
<dt class="inline">{{ 'Type'|trans }}</dt>
|
|
||||||
<dd>{{ entity.type.title|localize_translatable_string }}</dd>
|
|
||||||
|
|
||||||
<dt class="inline">{{ 'Created by'|trans }}</dt>
|
|
||||||
<dd>{{ entity.createdBy }}</dd>
|
|
||||||
|
|
||||||
<dt class="inline">{{ 'Created for'|trans }}</dt>
|
|
||||||
<dd>{{ entity.agent }}</dd>
|
|
||||||
|
|
||||||
<h2 class="chill-red">{{ 'Activity data'|trans }}</h2>
|
|
||||||
|
|
||||||
<dt class="inline">{{ 'Date'|trans }}</dt>
|
|
||||||
<dd>{{ entity.date|format_date('long') }}</dd>
|
|
||||||
|
|
||||||
<dt class="inline">{{ 'Duration'|trans }}</dt>
|
|
||||||
<dd>{{ entity.duration|date('H:i') }}</dd>
|
|
||||||
|
|
||||||
<dt class="inline">{{ 'Remark'|trans }}</dt>
|
|
||||||
{%- if entity.note is empty -%}
|
|
||||||
<dd>
|
|
||||||
<span class="chill-no-data-statement">{{ 'No comments'|trans }}</span>
|
|
||||||
</dd>
|
|
||||||
{%- else -%}
|
|
||||||
<dd>
|
|
||||||
<section class="chill-entity entity-comment-embeddable">
|
|
||||||
<blockquote class="chill-user-quote">
|
|
||||||
<p>{{ entity.note }}</p>
|
|
||||||
</blockquote>
|
|
||||||
</section>
|
|
||||||
</dd>
|
|
||||||
{%- endif -%}
|
|
||||||
</dl>
|
|
||||||
|
|
||||||
<ul class="record_actions sticky-form-buttons">
|
|
||||||
<li class="cancel">
|
|
||||||
<a class="btn btn-cancel" href="{{ chill_return_path_or('chill_crud_'~crud_name~'_index', { 'id': entity.id }) }}">
|
|
||||||
|
|
||||||
|
|
||||||
{{ 'Back to the list'|trans }}
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a class="btn btn-update" href="{{ path('chill_crud_'~crud_name~'_edit', { 'id': entity.id }) }}">
|
|
||||||
|
|
||||||
|
|
||||||
{{ 'Edit'|trans }}
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="{{ path('chill_crud_'~crud_name~'_delete', { 'id': entity.id }) }}" class="btn btn-delete">
|
|
||||||
|
|
||||||
{{ 'Delete'|trans }}
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
@ -1,13 +1,52 @@
|
|||||||
{% extends "@ChillMain/layout.html.twig" %}
|
{% extends '@ChillMain/layout.html.twig' %}
|
||||||
|
|
||||||
{% set activeRouteKey = 'chill_aside_activity_list' %}
|
{% set activeRouteKey = '' %}
|
||||||
|
|
||||||
{% block title 'Show the aside activity'|trans %}
|
{% block title %}
|
||||||
|
{% include('@ChillMain/CRUD/_view_title.html.twig') %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block content -%}
|
{% block content %}
|
||||||
<div class="activity-show">
|
{% embed '@ChillMain/CRUD/_view_content.html.twig' %}
|
||||||
|
{% block crud_content_header %}
|
||||||
|
<h1>{{ ('crud.' ~ crud_name ~ '.title_view')|trans }}</h1>
|
||||||
|
{% endblock crud_content_header %}
|
||||||
|
{% block crud_content_view_details %}
|
||||||
|
<dl class="chill_view_data">
|
||||||
|
|
||||||
{% include '@ChillAsideActivity/asideActivity/_view.html.twig' %}
|
<dt class="inline">{{ 'Type'|trans }}</dt>
|
||||||
|
<dd>{{ entity.type.title|localize_translatable_string }}</dd>
|
||||||
|
|
||||||
</div>
|
<dt class="inline">{{ 'Created by'|trans }}</dt>
|
||||||
{% endblock content %}
|
<dd>{{ entity.createdBy }}</dd>
|
||||||
|
|
||||||
|
<dt class="inline">{{ 'Created for'|trans }}</dt>
|
||||||
|
<dd>{{ entity.agent }}</dd>
|
||||||
|
|
||||||
|
<h2 class="chill-red">{{ 'Activity data'|trans }}</h2>
|
||||||
|
|
||||||
|
<dt class="inline">{{ 'Date'|trans }}</dt>
|
||||||
|
<dd>{{ entity.date|format_date('long') }}</dd>
|
||||||
|
|
||||||
|
<dt class="inline">{{ 'Duration'|trans }}</dt>
|
||||||
|
<dd>{{ entity.duration|date('H:i') }}</dd>
|
||||||
|
|
||||||
|
<dt class="inline">{{ 'Remark'|trans }}</dt>
|
||||||
|
{%- if entity.note is empty -%}
|
||||||
|
<dd>
|
||||||
|
<span class="chill-no-data-statement">{{ 'No comments'|trans }}</span>
|
||||||
|
</dd>
|
||||||
|
{%- else -%}
|
||||||
|
<dd>
|
||||||
|
<section class="chill-entity entity-comment-embeddable">
|
||||||
|
<blockquote class="chill-user-quote">
|
||||||
|
<p>{{ entity.note }}</p>
|
||||||
|
</blockquote>
|
||||||
|
</section>
|
||||||
|
</dd>
|
||||||
|
{%- endif -%}
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
|
{% endembed %}
|
||||||
|
{% endblock %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user