Skip to content

Commit

Permalink
Use trans tag when there's a comma; indent if statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jace committed Nov 15, 2024
1 parent db4a48e commit 1c64fc7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
15 changes: 13 additions & 2 deletions funnel/templates/macros.html.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,19 @@
<p class="mui--text-body2 mui--text-light zero-top-margin search-snippets">{{ faicon(icon='search', css_class="search-icon", baseline=false) }} {{ snippet_html }}</p>
{% endif %}
<div class="flex-wrapper flex-wrapper--end flex-wrapper--space-between flex-wrapper--wrap top-padding">
{%- if include_details %}
<div class="card__body__location mui--text-light">{% if project.primary_venue.title and project.primary_venue.city %}{{ faicon(icon='map-marker-alt', icon_size='caption', baseline=false) }} {{ project.primary_venue.title }}, {{ project.primary_venue.city }}{% elif project.primary_venue.title %}{{ faicon(icon='map-marker-alt', icon_size='caption', baseline=false) }} {{ project.primary_venue.title }}{% elif project.location %}{{ faicon(icon='map-marker-alt', icon_size='caption', baseline=false) }} {{ project.location }}{% endif %}</div>
{%- if include_details and (project.primary_venue or project.location) -%}
<div class="card__body__location mui--text-light">
{{ faicon(icon='map-marker-alt', icon_size='caption', baseline=false) }}
{%- if project.primary_venue.title and project.primary_venue.city %}
{% trans venue=project.primary_venue.title, city=project.primary_venue.city -%}
{{ venue }}, {{ city }}
{%- endtrans %}
{%- elif project.primary_venue.title %}
{{ project.primary_venue.title }}
{%- elif project.location %}
{{ project.location }}
{%- endif -%}
</div>
{% endif %}
</div>
</div>
Expand Down
19 changes: 16 additions & 3 deletions funnel/templates/profile_layout.html.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,22 @@
<div class="mui--hidden-lg mui--hidden-xl">
<h3 class="card__body__title mui--text-subhead {% if not featured_project.start_at %} card__body__subtitle {% endif %}"><a href="{{ featured_project.url_for() }}" class="mui--text-dark nounderline"><span class="text-bold">{{ featured_project.title_inline }}</span> <span class="mui--text-light js-truncate" data-truncate-lines="2">{{ featured_project.tagline }}</span></a></h3>
</div>
<div class="flex-wrapper flex-wrapper--space-between flex-wrapper--center top-padding">
<div class="card__body__location mui--text-light">{% if featured_project.primary_venue.title and featured_project.primary_venue.city %}{{ faicon(icon='map-marker-alt', icon_size='caption', baseline=false) }} {{ featured_project.primary_venue.title }}, {{ featured_project.primary_venue.city }}{% elif featured_project.primary_venue.title %}{{ faicon(icon='map-marker-alt', icon_size='caption', baseline=false) }} {{ featured_project.primary_venue.title }}{% elif featured_project.location %}{{ faicon(icon='map-marker-alt', icon_size='caption', baseline=false) }} {{ featured_project.location }}{% endif %}</div>
</div>
{%- if project.primary_venue or project.location %}
<div class="flex-wrapper flex-wrapper--space-between flex-wrapper--center top-padding">
<div class="card__body__location mui--text-light">
{{ faicon(icon='map-marker-alt', icon_size='caption', baseline=false) }}
{%- if featured_project.primary_venue.title and featured_project.primary_venue.city %}
{% trans venue=project.primary_venue.title, city=project.primary_venue.city -%}
{{ venue }}, {{ city }}
{%- endtrans %}
{%- elif featured_project.primary_venue.title %}
{{ featured_project.primary_venue.title }}
{%- elif featured_project.location %}
{{ featured_project.location }}
{%- endif -%}
</div>
</div>
{%- endif %}
</div>
{% endif %}
</div>
Expand Down

0 comments on commit 1c64fc7

Please sign in to comment.