diff --git a/app/templates/location.html b/app/templates/location.html index 8935a20..3448e98 100644 --- a/app/templates/location.html +++ b/app/templates/location.html @@ -10,7 +10,9 @@ : {{ location.address }}
: {{ location.telephone }}
: {{ location.website }}
- Create order + {% if not current_user.is_anonymous() %} + Create order + {% endif %}
diff --git a/app/templates/locations.html b/app/templates/locations.html index 1103047..7dbc072 100644 --- a/app/templates/locations.html +++ b/app/templates/locations.html @@ -18,7 +18,9 @@ {{ loc.address }} - Create order + {% if not current_user.is_anonymous() %} + Create order + {% endif %} {%- endfor %}