commit
abf73a9002
@ -1,45 +1,40 @@ |
|||||||
<table style="margin-top: 30px;" class="full-width border-thin"> |
<div style="border: 1px solid #000;"> |
||||||
<thead> |
<div style="float: left; width: 17%;padding:2%;font-weight: bold;"> |
||||||
<tr> |
{{ "Thematic"|get_lang }} |
||||||
<th width="30%" style="display:inline-block; padding: 10px; text-align: center; background-color: #E5E5E5;"> |
</div> |
||||||
{{ "Thematic"|get_lang }} |
<div style="float: left; width: 27%;padding:2%;font-weight: bold;"> |
||||||
</th> |
{{ "ThematicPlan"|get_lang }} |
||||||
<th width="50%" style="display:inline-block; padding: 10px; text-align: center; background-color: #E5E5E5;"> |
</div> |
||||||
{{ "ThematicPlan"|get_lang }} |
<div style="float: left; width: 27%;padding:2%;font-weight: bold;"> |
||||||
</th> |
{{ "ThematicAdvance"|get_lang }} |
||||||
<th width="20%" style="display:inline-block; padding: 10px; text-align: center; background-color: #E5E5E5;"> |
</div> |
||||||
{{ "ThematicAdvance"|get_lang }} |
</div> |
||||||
</th> |
<hr /> |
||||||
</tr> |
{% for item in data %} |
||||||
</thead> |
<div style="border: 1px solid #000;"> |
||||||
<tbody> |
<div style="float: left; width: 17%;padding:2%;"> |
||||||
{% for item in data %} |
<h4 style="margin-bottom: 10px;">{{ item.title }}</h4> |
||||||
<tr> |
<br> |
||||||
<td> |
{{ item.content }} |
||||||
<h4 style="margin-bottom: 10px;">{{ item.title }}</h4> |
</div> |
||||||
<br> |
<div style="float: left; width: 27%;padding:2%;"> |
||||||
{{ item.content }} |
{% for plan in item.thematic_plan %} |
||||||
</td> |
<br> |
||||||
<td> |
<h4 style="margin-bottom: 10px;">{{ plan.title }}</h4> |
||||||
{% for plan in item.thematic_plan %} |
<br> |
||||||
<br> |
{{ plan.description }} |
||||||
<h4 style="margin-bottom: 10px;">{{ plan.title }}</h4> |
{% endfor %} |
||||||
<br> |
</div> |
||||||
{{ plan.description }} |
<div style="float: left; width: 27%;padding:2%;"> |
||||||
{% endfor %} |
{% for advance in item.thematic_advance %} |
||||||
</td> |
<br> |
||||||
<td> |
<h4 style="margin-bottom: 10px;"> |
||||||
{% for advance in item.thematic_advance %} |
{{ advance.duration }} {{ "MinHours" | get_lang }} |
||||||
<br> |
</h4> |
||||||
<h4 style="margin-bottom: 10px;"> |
{{ advance.start_date | api_convert_and_format_date(2) }} |
||||||
{{ advance.duration }} {{ "MinHours" | get_lang }} |
<br> |
||||||
</h4> |
{{ advance.content }} |
||||||
{{ advance.start_date | api_convert_and_format_date(2) }} |
{% endfor %} |
||||||
<br> |
</div> |
||||||
{{ advance.content }} |
</div> |
||||||
{% endfor %} |
{% endfor %} |
||||||
</td> |
|
||||||
</tr> |
|
||||||
{% endfor %} |
|
||||||
</tbody> |
|
||||||
</table> |
|
||||||
Loading…
Reference in new issue