Skip to content

Commit

Permalink
fix spacing issue in scheduled notifications email template (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
devketanpro authored Nov 19, 2024
1 parent 6d894b9 commit 3c0b8b0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,22 @@ <h2>Élément du {{ "Calendrier" if section == "agenda" else "Fil de Presse" }}
{% if section == "wire" %}

<p><strong>{{ get_highlighted_field(entry.item, ["headline"]) | safe }}</strong></p>
<p>Titre de rappel: {{ entry.item.slugline }} | Source : {{ entry.item.source}}</p>
<p>Titre de rappel : {{ entry.item.slugline }} | Source : {{ entry.item.source}}</p>
<p>Publié le : {{ entry.item.versioncreated | notification_datetime }} | {{ entry.item.body_html | word_count }} mots {% if entry.item.service %} | Catégorie : {{ entry.item | category_names }}{% endif %}</p>
{{ short_highlighted_text(get_highlighted_field(entry.item, ["body_html"])) | safe }}
<p>Consulter cet élément dans votre compte: <a href="{{ url_for_wire(entry.item, True, section) }}">Lien</a></p>
<p>Consulter tous les éléments: <a href="{{ url_for('wire.wire', _external=True) }}?topic={{ entry.topic._id }}">Lien</a></p>
<p>Consulter cet élément dans votre compte : <a href="{{ url_for_wire(entry.item, True, section) }}">Lien</a></p>
<p>Consulter tous les éléments : <a href="{{ url_for('wire.wire', _external=True) }}?topic={{ entry.topic._id }}">Lien</a></p>

{% elif section == "agenda" %}

<p><strong>{{ get_highlighted_field(entry.item, ["headline", "name"]) | safe }}</strong></p>
<p>Date et heure de l’événement: {{ entry.item | agenda_dates_string }}{% if entry.item.location %} | Endroit: {{ entry.item | location_string }}{% endif %}</p>
<p>Date et heure de l’événement : {{ entry.item | agenda_dates_string }}{% if entry.item.location %} | Endroit : {{ entry.item | location_string }}{% endif %}</p>
<p>Publié le : {{ entry.item.versioncreated | notification_datetime }}{% if entry.item.service %} | Catégorie : {{ entry.item | category_names }}{% endif %}</p>

{{ short_highlighted_text(get_highlighted_field(entry.item, ["definition_long", "description_text", "definition_short"])) | safe }}

<p>Consulter cet élément dans votre compte: <a href="{{ url_for_wire(entry.item, True, section) }}">Lien</a></p>
<p>Consulter tous les éléments: <a href="{{ url_for('agenda.index', _external=True) }}?topic={{ entry.topic._id }}">Lien</a></p>
<p>Consulter cet élément dans votre compte : <a href="{{ url_for_wire(entry.item, True, section) }}">Lien</a></p>
<p>Consulter tous les éléments : <a href="{{ url_for('agenda.index', _external=True) }}?topic={{ entry.topic._id }}">Lien</a></p>

{% endif %}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@ Nouveaux éléments du {{ "Calendrier" if section == "agenda" else "Fil de Press
{% if section == "wire" %}
{{ entry.item.headline }}

Titre de rappel: {{ entry.item.slugline }} | Source : {{ entry.item.source}}
Titre de rappel : {{ entry.item.slugline }} | Source : {{ entry.item.source}}
Publié le : {{ entry.item.versioncreated | notification_datetime }} | {{ entry.item.body_html | word_count }} mots {% if entry.item.service %} | Catégorie : {{ entry.item | category_names }}{% endif %}
{{ short_highlighted_text(get_highlighted_field(entry.item, ["body_html"]), output_html=False) }}
Consulter cet élément dans votre compte: {{ url_for_wire(entry.item, True, section) }}
Consulter tous les éléments: {{ url_for('wire.wire', _external=True) }}?topic={{ entry.topic._id }}
Consulter cet élément dans votre compte : {{ url_for_wire(entry.item, True, section) }}
Consulter tous les éléments : {{ url_for('wire.wire', _external=True) }}?topic={{ entry.topic._id }}

{% elif section == "agenda" %}

{{ entry.item.headline or entry.item.name }}
Date et heure de l’événement: {{ entry.item | agenda_dates_string }}{% if entry.item.location %} | Endroit: {{ entry.item | location_string }}{% endif %}
Date et heure de l’événement : {{ entry.item | agenda_dates_string }}{% if entry.item.location %} | Endroit : {{ entry.item | location_string }}{% endif %}
Publié le : {{ entry.item.versioncreated | notification_datetime }}{% if entry.item.service %} | Catégorie : {{ entry.item | category_names }}{% endif %}

{{ short_highlighted_text(get_highlighted_field(entry.item, ["definition_long", "description_text", "definition_short"]), output_html=False) }}

Consulter cet élément dans votre compte: {{ url_for_wire(entry.item, True, section) }}
Consulter tous les éléments: {{ url_for('agenda.index', _external=True) }}?topic={{ entry.topic._id }}
Consulter cet élément dans votre compte : {{ url_for_wire(entry.item, True, section) }}
Consulter tous les éléments : {{ url_for('agenda.index', _external=True) }}?topic={{ entry.topic._id }}

{% endif %}

Expand Down

0 comments on commit 3c0b8b0

Please sign in to comment.