mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-23 13:51:10 -05:00
fix commas
This commit is contained in:
@@ -19,11 +19,10 @@
|
||||
{% if park.city or park.state or park.country %}
|
||||
<p class="mb-3 text-gray-600 dark:text-gray-400">
|
||||
<i class="mr-1 fas fa-map-marker-alt"></i>
|
||||
{% if park.city %}{{ park.city }}{% endif %}
|
||||
{% if park.city and park.state %}, {% endif %}
|
||||
{% if park.state %}{{ park.state }}{% endif %}
|
||||
{% if park.country and park.state or park.city %}, {% endif %}
|
||||
{% if park.country %}{{ park.country }}{% endif %}
|
||||
{% spaceless %}
|
||||
{% if park.city %}{{ park.city }}{% endif %}{% if park.city and park.state %}, {% endif %}{% if park.state %}{{ park.state }}{% endif %}{% if park.country and park.state or park.city %}, {% endif %}{% if park.country %}{{ park.country }}{% endif %}
|
||||
</p>
|
||||
{% endspaceless %}
|
||||
</p>
|
||||
{% endif %}
|
||||
<div class="flex flex-wrap gap-2">
|
||||
|
||||
Reference in New Issue
Block a user