-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1893ffd
commit 61d5ea3
Showing
8 changed files
with
147 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,37 @@ | ||
{% extends 'board_base.html' %} | ||
{% extends "layouts/base.html" %} | ||
{% load i18n %} | ||
|
||
{% block title %}Diagnostic Socio Professionnel{{ block.super }}{% endblock %} | ||
{% block meta_description %}Recommandations{% endblock meta_description %}" | ||
|
||
{% block content %} | ||
|
||
<h1>Les recommandations suite à votre diagnostic</h1> | ||
|
||
{% for label, recommendation in object.recommendations.items %} | ||
<div class="row mt-3"> | ||
<div class="col-12"> | ||
<div class="card post-edit"> | ||
<div class="card-header"> | ||
<h3 class="m-0 h4 card-title">{{label}}</h3> | ||
</div> | ||
<div class="card-body"> | ||
{{ recommendation }} | ||
</div> | ||
<section class="s-title-01 mt-lg-5"> | ||
<div class="s-title-01__container container"> | ||
<div class="s-title-01__row row"> | ||
<div class="s-title-01__col col-12"> | ||
<h1 class="s-title-01__title h1">Les recommandations suite à votre diagnostic</h1> | ||
</div> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</section> | ||
|
||
<section class="s-section"> | ||
<div class="s-section__container container"> | ||
<div class="s-section__row row"> | ||
<div class="s-section__col col-12 col-lg-8"> | ||
{% for label, recommendation in object.recommendations.items %} | ||
<div> | ||
<h2 class="h3">{{label}}</h2> | ||
<div> | ||
{{ recommendation }} | ||
</div> | ||
<hr class="mt-5"> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
{% endblock content %} |
Oops, something went wrong.