{% extends "ui/base.html" %} {% load bootstrap_pagination 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 }}
    {{ form.fulltext }}
    {{ form.m_camp }}
    {% 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 for {{ form.fulltext.value }}.

    {% if page.object_list %} {% if paginator.num_pages > 1 %} {% bootstrap_paginate page range=10 show_first_last="true" %} {% endif %}
    {% for object in page.object_list %} {% endfor %}
    Facility Birthyear Home State Family No. Individual No. Dataset
    {{ object.m_lastname }}, {{ object.m_firstname }} ({{ object.m_gender }}) {{ object.m_camp_label }} {{ object.m_birthyear }} {{ object.m_originalstate_label }} {{ object.m_familyno }} {{ object.m_individualno }} {{ object.m_dataset_label }}
    {% endif %}{# paginator.object_list #}
    {% if paginator.num_pages > 1 %} {% bootstrap_paginate page range=10 show_first_last="true" %} {% endif %} {% endif %}
    {% endblock content %}