Skip to content

Commit

Permalink
add spaces to scheduled notification emails (#192)
Browse files Browse the repository at this point in the history
CPCN-559
  • Loading branch information
petrjasek authored Sep 26, 2024
1 parent ae44598 commit d8a7d7f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ <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>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>
<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>
Expand All @@ -45,7 +45,7 @@ <h2>Élément du {{ "Calendrier" if section == "agenda" else "Fil de Presse" }}

<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>Publié le: {{ entry.item.versioncreated | notification_datetime }}{% if entry.item.service %} | Catégorie: {{ entry.item | category_names }}{% 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 }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ 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}}
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 %}
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 }}
Expand All @@ -27,7 +27,7 @@ Consulter tous les éléments: {{ url_for('wire.wire', _external=True) }}?topic=

{{ 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 %}
Publié le: {{ entry.item.versioncreated | notification_datetime }}{% if entry.item.service %} | Catégorie: {{ entry.item | category_names }}{% 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) }}

Expand Down

0 comments on commit d8a7d7f

Please sign in to comment.