Update Facility
Delete Facility
Facility List
Facility Name |
{{ facility.name }} |
Facility Type |
{{ facility.facility_type.name }}
|
Description |
{{ facility.description|linebreaksbr }} |
Opening Hours |
{% if facility.opening_hours.exists %}
Opens |
Closes |
Duration |
Notes |
Actions |
{% for opening in facility.opening_hours.all %}
{{ opening.when.lower }} |
{{ opening.when.upper }} |
{{ opening.duration }} |
{{ opening.notes|trustedcommonmark|default:"N/A" }} |
|
{% endfor %}
{% else %}
This facility does not have opening hours, it is always open.
{% endif %}
Add opening hours
|
Feedback |
Username |
Created |
Facility |
Quick Feedback |
Comment |
Urgent |
Handled |
{% for feedback in facility.feedbacks.all %}
{{ feedback.user|default:"N/A" }} |
{{ feedback.created }} |
{{ feedback.facility }} |
{{ feedback.quick_feedback }} |
{{ feedback.comment|default:"N/A" }} |
{{ feedback.urgent|yesno }} |
{{ feedback.handled|yesno }} |
{% endfor %}
|
Location |
Lat {{ facility.location.y }} Long {{ facility.location.x }}
|