{% extends "ui/base.html" %} {% load names_tags %} {% block title %}Names{% endblock %} {% block breadcrumbs %}{{ block.super }} {% if paginator.object_list %}
  • Names Registry
  • Search
  • {% else %}
  • Names Registry
  • {% endif %} {% endblock breadcrumbs %} {% block content %}

    Names Registry

    The Names Registry is a searchable version of the WRA Form 26 register and Final Accountability Rosters (FAR). These records contain the names and other information about the individuals held in the ten WRA camps during the WWII incarceration.

    {{ form.errors }}
    {% if paginator and paginator.object_list %}

    Search Results

    {% if kwargs %} {% for kwarg in kwargs %} {% if kwarg.0 == "query" %}{{ kwarg.1 }}{% endif %} {% endfor %} returned {% endif %} {{ paginator.count }} records

    {% if paginator.num_pages > 1 %}
    {% names_paginate paginator %}
    {% endif %}{# paginator.num_pages > 1 #}
    {% for record in paginator.object_list %} {% endfor %}
    Facility Birthyear Home State Family No. Individual No. Dataset
    {{ record.m_lastname }}, {{ record.m_firstname }} ({{ record.m_gender }}) {{ record.fields.m_camp.value }} {{ record.fields.m_birthyear.value }} {{ record.fields.m_originalstate.value }} {{ record.fields.m_familyno.value }} {{ record.fields.m_individualno.value }} {{ record.fields.m_dataset.value }}
    {% endif %}{# paginator.object_list #}
    {% if paginator.num_pages > 1 %}
    {% names_paginate paginator %}
    {% endif %}{# paginator.num_pages > 1 #}
    {% endblock content %}