{% extends 'profile/_base_profile.html' %}{% load humanize lookup staticfiles %} {% block head_title %}{{ geography.this.short_name }} - {{ block.super }}{% endblock %} {% block head_meta_description %}Population data and election figures from {{ geography.this.short_name}}, broken down by category: Demographics, Service delivery, Economics and Education.{% endblock %} {% block head_facebook_tags %} {#}{#} {% endblock %} {% block head_css_extra %} {% endblock %} {% block body_id %}profile{% endblock %} {% block header_content %}

{{ geography.this.short_name }}

{{ geography.this.geo_level|capfirst }} {% if geography.this.geo_level != 'country' %} in {% for level in geography.parents_ordering %} {% with g=geography.parents|get:level %} {{ g.short_name }}{% if not forloop.last %},{%endif%} {% endwith %} {% endfor %} {% endif %}

{{ demographics.total_population.values.this|floatformat:"0" }} Population
{% if geography.this.square_kms %}
{% if geography.this.square_kms < 1.0 %}{{ geography.this.square_kms|floatformat:"3" }}{% else %}{{ geography.this.square_kms|floatformat:"1" }}{% endif %} square kilometres {% if demographics.population_density.values.this %} {{ demographics.population_density.values.this|floatformat:"1" }} people per square kilometre {% endif %}
{% endif %} {% if geography.this.show_extra_links %} {% include "profile/_blocks/_header_extra_links.html" %} {% endif %}

Census data: 2011 {% if crime %}
Crime data: {{ crime.dataset }}

{% endif %}

{% endblock %} {% block content %} {% comment %}

Find data for this place

{% endcomment %}

Compare this place with another

Share this page:

Interact with charts and statistics for additional information.

Elections

{% for key in elections %} {% with elections|get:key as election_data %}

{% include 'profile/_blocks/_stat_list.html' with stat=election_data.registered_voters|get:"Number of registered voters" stat_type='number' %}
{% include 'profile/_blocks/_stat_list.html' with stat=election_data.total_votes|get:"Of registered voters cast their vote" stat_type='percentage' %}
{% endwith %} {% endfor %} {% if geography.this.geo_level == 'country' %}

{% endif %}

Demographics

{% include 'profile/_blocks/_stat_list.html' with stat=demographics.median_age stat_type='number' %}

{% include 'profile/_blocks/_stat_list.html' with stat=demographics.total_population stat_type='number' %}

{% include 'profile/_blocks/_stat_list.html' with stat=demographics.language_most_spoken stat_type='name' stat_name='Language most spoken at home' %}

{% include 'profile/_blocks/_stat_list.html' with stat=demographics.born_in_south_africa stat_type='percentage' stat_name='Born in South Africa' %}

{% include 'profile/_blocks/_stat_list.html' with stat=demographics.citizenship_south_african stat_type='percentage' stat_name='South African citizens' %}

Households

{% include 'profile/_blocks/_stat_list.html' with stat=households.total_households stat_type='number' %}
{% include 'profile/_blocks/_stat_list.html' with stat=households.informal stat_type='percentage' %}

{% include 'profile/_blocks/_stat_list.html' with stat=households.owned stat_type='percentage' %}

{% include 'profile/_blocks/_stat_list.html' with stat=households.head_of_household.female stat_type='percentage' %}
{% include 'profile/_blocks/_stat_list.html' with stat=households.head_of_household.under_18 stat_type='number' %}

{% include 'profile/_blocks/_stat_list.html' with stat=households.median_annual_income stat_type='dollar' %}

Service delivery

{% include 'profile/_blocks/_stat_list.html' with stat=service_delivery.percentage_water_from_service_provider stat_type='percentage' %}

{% include 'profile/_blocks/_stat_list.html' with stat=service_delivery.percentage_electricity_access stat_type='percentage' %}

{% include 'profile/_blocks/_stat_list.html' with stat=service_delivery.percentage_flush_toilet_access stat_type='percentage' %}
{% include 'profile/_blocks/_stat_list.html' with stat=service_delivery.percentage_no_toilet_access stat_type='percentage' %}

{% include 'profile/_blocks/_stat_list.html' with stat=service_delivery.percentage_ref_disp_from_service_provider stat_type='percentage' %}

Economics

{% include 'profile/_blocks/_stat_list.html' with stat=economics.employment_status.Employed stat_type='percentage' %}

{% include 'profile/_blocks/_stat_list.html' with stat=economics.median_individual_income stat_type='dollar' %}

{% include 'profile/_blocks/_stat_list.html' with stat=economics.internet_access stat_type='percentage' %}

Education

{% include 'profile/_blocks/_stat_list.html' with stat=education.educational_attainment.percent_get_or_higher stat_type='percentage' %}
{% include 'profile/_blocks/_stat_list.html' with stat=education.educational_attainment.percent_fet_or_higher stat_type='percentage' %}

Children

{% include 'profile/_blocks/_stat_list.html' with stat=children.demographics.total_children stat_type='number' %}

{% include 'profile/_blocks/_stat_list.html' with stat=children.demographics.percent_no_parent stat_type='percentage' %}
{% if crime %}

{% include 'profile/_blocks/_stat_list.html' with stat=crime.crime_against_children stat_type='number' %}
{% endif %}

{% include 'profile/_blocks/_stat_list.html' with stat=children.school.percent_school_attendance stat_type='percentage' %}

{% include 'profile/_blocks/_stat_list.html' with stat=children.employment.median_income stat_type='dollar' %}
{% include 'profile/_blocks/_stat_list.html' with stat=children.employment.percent_in_labour_force stat_type='percentage' %}

Child-headed households

{% include 'profile/_blocks/_stat_list.html' with stat=child_households.total_households stat_type='number' %}
{% include 'profile/_blocks/_stat_list.html' with stat=child_households.informal stat_type='percentage' %}

{% include 'profile/_blocks/_stat_list.html' with stat=child_households.head_of_household.female stat_type='percentage' %}

{% include 'profile/_blocks/_stat_list.html' with stat=child_households.median_annual_income stat_type='dollar' %}

{% endblock %} {% block body_javascript_extra %}{{ block.super }} {% endblock %}