{% extends '__layout__.html' %} {% block title %}Games{% endblock %} {% block head %} {% endblock %} {% block content %}
{% if GameLookupResults %}
{% for place in GameLookupResults: %}
{{place.name}}
{{place.placeyear.value}}
{{place.name}}

{{place.playingcount}} Playing

{%endfor%}
{% if GameLookupResultsBackendResult.has_prev: %} Previous {%else%} Previous {% endif %}

Page {{GameLookupResultsBackendResult.page}} of {{GameLookupResultsBackendResult.pages}}

{% if GameLookupResultsBackendResult.has_next: %} Next {%else%} Next {% endif %}
{% elif not GameLookupResults and SearchQuery %}

No results found for "{{SearchQuery}}"

{% else %}

Popular

View All
{% for place in PopularPlaces: %}
{{place.name}}
{{place.placeyear.value}}
{{place.name}}

{{place.playingcount}} Playing

{%endfor%}

Featured

View All
{% for place in FeaturedPlacesInfo: %}
{{place.name}}
{{place.placeyear.value}}
{{place.name}}

{{place.playingcount}} Playing

{%endfor%}

Recently Updated

View All
{% for place in RecentlyUpdatedPlaces: %}
{{place.name}}
{{place.placeyear.value}}
{{place.name}}

{{place.playingcount}} Playing

{%endfor%}
{% endif %}
{% endblock %}