{% if user.is_authenticated %}
{% if allow_checkin %}
Check In Here
{% else %}
Already Checked In
{% endif %}
{% endif %}
Map of the area
{% if location.street_address %}
{% else %}
{% endif %}
Recently checked in here
{% if recent_checkins %}
{% for checkin in recent_checkins %}
{{ checkin.user.username }}{{ checkin.timestamp|timesince }} agoCan be identified by: {{ checkin.identify_by|default:"Doesn't want to be found. :(" }} Estimated time spent here: {{ checkin.estimated_time_here|default:"They're flying by the seat of their vintage pants (no idea)."}}
{% endfor %}
{% else %}
No checkins yet. You could be the first!
{% endif %}
{% if user.is_authenticated %}
Leave a Tip or Todo
{% endif %}
Tips & Todos from Redditors
{% if location.tip_set.all %}
{% for tip in location.tip_set.all %}
{{ tip.user.username }}{{ tip.timestamp|timesince }} ago
{{ tip.tip }}