table style adjusted

This commit is contained in:
Julie Lenaerts 2021-09-16 09:42:46 +02:00
parent d7a4e6c037
commit 9ef91eabfb
2 changed files with 66 additions and 60 deletions

View File

@ -16,7 +16,8 @@
{% block content %}
<h1>{{ 'Documents' }}</h1>
<table class="table">
<table class="table table-bordered border-dark table-striped">
<thead>
<tr>
<th>{{ 'Title' | trans }}</th>

View File

@ -21,7 +21,9 @@
{% import "@ChillDocStore/Macro/macro.html.twig" as m %}
{% block title %}{{ 'Documents for %name%'|trans({ '%name%': person|chill_entity_render_string } ) }}{% endblock %}
{% block title %}
{{ 'Documents for %name%'|trans({ '%name%': person|chill_entity_render_string } ) }}
{% endblock %}
{% block js %}
{{ encore_entry_script_tags('mod_async_upload') }}
@ -30,7 +32,8 @@
{% block personcontent %}
<h1>{{ 'Documents for %name%'|trans({ '%name%': person|chill_entity_render_string } ) }}</h1>
<table class="table">
<table class="table table-bordered border-dark table-striped">
<thead>
<tr>
<th>{{ 'Title' | trans }}</th>
@ -65,7 +68,9 @@
</tr>
{% else %}
<tr>
<td colspan="9" style="text-align:center;"><span class="chill-no-data-statement">{{ 'Any document found'|trans }}</span></td>
<td colspan="9" style="text-align:center;">
<span class="chill-no-data-statement">{{ 'Any document found'|trans }}</span>
</td>
</tr>
{% endfor %}
</tbody>