table style adjusted

This commit is contained in:
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>
@@ -58,12 +59,12 @@
</table>
{% if is_granted('CHILL_ACCOMPANYING_COURSE_DOCUMENT_CREATE', accompanyingCourse) %}
<ul class="record_actions">
<li class="create">
<a href="{{ path('accompanying_course_document_new', {'course': accompanyingCourse.id}) }}" class="btn btn-create">
{{ 'Create new document' | trans }}
</a>
</li>
</ul>
<ul class="record_actions">
<li class="create">
<a href="{{ path('accompanying_course_document_new', {'course': accompanyingCourse.id}) }}" class="btn btn-create">
{{ 'Create new document' | trans }}
</a>
</li>
</ul>
{% endif %}
{% endblock %}