Skip to content

#27 add title + fix table header style #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions templates/admin/process/list.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,19 @@
{% extends ea.templatePath('layout') %}
{% trans_default_domain ea.i18n.translationDomain %}

{% block content_title %}{{ 'Processes'|trans }}{% endblock %}

{% block main %}
<table class="table datagrid">
<thead>
{% block table_head %}
<tr>
<th>{{ 'Process code'|trans }}</th>
<th>{{ 'Last execution'|trans }}</th>
<th>{{ 'Status'|trans }}</th>
<th>{{ 'Source'|trans }}</th>
<th>{{ 'Target'|trans }}</th>
<th class="text-center">{{ 'Actions'|trans }}</th>
<th><span>{{ 'Code'|trans }}</span></th>
<th><span>{{ 'Last execution'|trans }}</span></th>
<th><span>{{ 'Status'|trans }}</span></th>
<th><span>{{ 'Source'|trans }}</span></th>
<th><span>{{ 'Target'|trans }}</span></th>
<th class="text-center"><span>{{ 'Actions'|trans }}</span></th>
</tr>
{% endblock %}
</thead>
Expand Down
Loading