Skip to content

Commit 74ebe1b

Browse files
xmarchegayxaviermarchegay
xmarchegay
authored andcommitted
#27 add title + fix table header style
1 parent 1742460 commit 74ebe1b

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

templates/admin/process/list.html.twig

+8-6
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@
22
{% extends ea.templatePath('layout') %}
33
{% trans_default_domain ea.i18n.translationDomain %}
44

5+
{% block content_title %}{{ 'Processes'|trans }}{% endblock %}
6+
57
{% block main %}
68
<table class="table datagrid">
79
<thead>
810
{% block table_head %}
911
<tr>
10-
<th>{{ 'Process code'|trans }}</th>
11-
<th>{{ 'Last execution'|trans }}</th>
12-
<th>{{ 'Status'|trans }}</th>
13-
<th>{{ 'Source'|trans }}</th>
14-
<th>{{ 'Target'|trans }}</th>
15-
<th class="text-center">{{ 'Actions'|trans }}</th>
12+
<th><span>{{ 'Code'|trans }}</span></th>
13+
<th><span>{{ 'Last execution'|trans }}</span></th>
14+
<th><span>{{ 'Status'|trans }}</span></th>
15+
<th><span>{{ 'Source'|trans }}</span></th>
16+
<th><span>{{ 'Target'|trans }}</span></th>
17+
<th class="text-center"><span>{{ 'Actions'|trans }}</span></th>
1618
</tr>
1719
{% endblock %}
1820
</thead>

0 commit comments

Comments
 (0)