{% extends '_base.html' %} {% block content %} {% comment %}

Find table

{% endcomment %}

Find a place

{% if tables %}

Tables

{% for table in tables %} {% endfor %}
Table ID Table Name Universe Column ID Column Name
{{ table.release }} {{ table.table_id }} {{ table.table_title }} {{ table.universe }} {{ table.column_id }} {{ table.column_title }}
{% endif %} {% if geos %}

Geographies

{% for geo in geos %} {% endfor %}
Geo ID Name 2013 Population Estimate
{{ geo.full_geoid }} {{ geo.display_name }} {{ geo.population }}
{% endif %} {% endblock %} {% block body_javascript_extra %}{{ block.super }} {% endblock %}