From 18cb042d920a73f321dd6336b85142496f47c62d Mon Sep 17 00:00:00 2001 From: akaypee Date: Thu, 11 Jun 2020 00:50:35 +0100 Subject: [PATCH] This part of the work is to help users locate the nearest police station incase they want to report an accident. Usersa can quickly serch for their location by entering the state where they are and can quickly locate the local government area, once the user enters the local government area, they can now easily check for the closest police station to report the accident This also goes for Federal Road Safety Commission, as users can easly get the contact number of frsc and inform them of any road accident they just witnessed. Users can also get the closest hospital incase of an emergency for quick and rapid response in helping to save the life of an accident victim, and in any situation of a loss of life, mortuary services are also indicated. In view of a user having to spend the nght in any town or city, they can easily identify hotels in that place by checking for the hotel closest to where they are.'#' will be ignored, and an empty message aborts the commit. --- src/.vscode-janus-debug | 0 src/Zoit/1.0.15 | 0 src/Zoit/Zoitapp/__init__.py | 0 src/Zoit/Zoitapp/admin.py | 12 + src/Zoit/Zoitapp/apps.py | 5 + src/Zoit/Zoitapp/fixtures/file_data.json | 3246 +++++++++++++++ src/Zoit/Zoitapp/fixtures/frsc.json | 409 ++ src/Zoit/Zoitapp/fixtures/hospital.json | 964 +++++ src/Zoit/Zoitapp/fixtures/hotel.json | 794 ++++ src/Zoit/Zoitapp/fixtures/lga.json | 862 ++++ src/Zoit/Zoitapp/fixtures/lga_data.json | 3675 +++++++++++++++++ src/Zoit/Zoitapp/fixtures/ps.json | 589 +++ src/Zoit/Zoitapp/fixtures/state.json | 372 ++ src/Zoit/Zoitapp/migrations/0001_initial.py | 95 + .../migrations/0002_auto_20200525_1421.py | 62 + .../migrations/0003_auto_20200604_0352.py | 133 + .../migrations/0004_auto_20200604_1431.py | 247 ++ .../migrations/0005_auto_20200605_1804.py | 18 + .../migrations/0006_auto_20200607_1151.py | 13 + .../migrations/0007_auto_20200607_1420.py | 21 + src/Zoit/Zoitapp/migrations/__init__.py | 0 src/Zoit/Zoitapp/models.py | 102 + src/Zoit/Zoitapp/templates/hospital.html | 94 + src/Zoit/Zoitapp/templates/hotel.html | 95 + src/Zoit/Zoitapp/templates/index.html | 143 + src/Zoit/Zoitapp/templates/map.webp | Bin 0 -> 13750 bytes src/Zoit/Zoitapp/templates/policepost.html | 93 + src/Zoit/Zoitapp/templates/reglogin.html | 157 + src/Zoit/Zoitapp/templates/style.css | 231 ++ src/Zoit/Zoitapp/tests.py | 3 + src/Zoit/Zoitapp/views.py | 7 + src/Zoit/file_data.json | 3246 +++++++++++++++ src/Zoit/manage.py | 21 + src/Zoit/zoit/__init__.py | 0 src/Zoit/zoit/asgi.py | 16 + src/Zoit/zoit/settings.py | 128 + src/Zoit/zoit/urls.py | 21 + src/Zoit/zoit/wsgi.py | 16 + src/goal3/settings.py | 4 +- src/usersapp/fixtures/file_data.json | 3246 +++++++++++++++ src/usersapp/fixtures/frsc.json | 409 ++ src/usersapp/fixtures/hospital.json | 964 +++++ src/usersapp/fixtures/hotel.json | 794 ++++ src/usersapp/fixtures/lga.json | 862 ++++ src/usersapp/fixtures/lga_data.json | 3675 +++++++++++++++++ src/usersapp/fixtures/ps.json | 589 +++ src/usersapp/fixtures/state.json | 372 ++ 47 files changed, 26803 insertions(+), 2 deletions(-) create mode 100644 src/.vscode-janus-debug create mode 100644 src/Zoit/1.0.15 create mode 100644 src/Zoit/Zoitapp/__init__.py create mode 100644 src/Zoit/Zoitapp/admin.py create mode 100644 src/Zoit/Zoitapp/apps.py create mode 100644 src/Zoit/Zoitapp/fixtures/file_data.json create mode 100644 src/Zoit/Zoitapp/fixtures/frsc.json create mode 100644 src/Zoit/Zoitapp/fixtures/hospital.json create mode 100644 src/Zoit/Zoitapp/fixtures/hotel.json create mode 100644 src/Zoit/Zoitapp/fixtures/lga.json create mode 100644 src/Zoit/Zoitapp/fixtures/lga_data.json create mode 100644 src/Zoit/Zoitapp/fixtures/ps.json create mode 100644 src/Zoit/Zoitapp/fixtures/state.json create mode 100644 src/Zoit/Zoitapp/migrations/0001_initial.py create mode 100644 src/Zoit/Zoitapp/migrations/0002_auto_20200525_1421.py create mode 100644 src/Zoit/Zoitapp/migrations/0003_auto_20200604_0352.py create mode 100644 src/Zoit/Zoitapp/migrations/0004_auto_20200604_1431.py create mode 100644 src/Zoit/Zoitapp/migrations/0005_auto_20200605_1804.py create mode 100644 src/Zoit/Zoitapp/migrations/0006_auto_20200607_1151.py create mode 100644 src/Zoit/Zoitapp/migrations/0007_auto_20200607_1420.py create mode 100644 src/Zoit/Zoitapp/migrations/__init__.py create mode 100644 src/Zoit/Zoitapp/models.py create mode 100644 src/Zoit/Zoitapp/templates/hospital.html create mode 100644 src/Zoit/Zoitapp/templates/hotel.html create mode 100644 src/Zoit/Zoitapp/templates/index.html create mode 100644 src/Zoit/Zoitapp/templates/map.webp create mode 100644 src/Zoit/Zoitapp/templates/policepost.html create mode 100644 src/Zoit/Zoitapp/templates/reglogin.html create mode 100644 src/Zoit/Zoitapp/templates/style.css create mode 100644 src/Zoit/Zoitapp/tests.py create mode 100644 src/Zoit/Zoitapp/views.py create mode 100644 src/Zoit/file_data.json create mode 100644 src/Zoit/manage.py create mode 100644 src/Zoit/zoit/__init__.py create mode 100644 src/Zoit/zoit/asgi.py create mode 100644 src/Zoit/zoit/settings.py create mode 100644 src/Zoit/zoit/urls.py create mode 100644 src/Zoit/zoit/wsgi.py create mode 100644 src/usersapp/fixtures/file_data.json create mode 100644 src/usersapp/fixtures/frsc.json create mode 100644 src/usersapp/fixtures/hospital.json create mode 100644 src/usersapp/fixtures/hotel.json create mode 100644 src/usersapp/fixtures/lga.json create mode 100644 src/usersapp/fixtures/lga_data.json create mode 100644 src/usersapp/fixtures/ps.json create mode 100644 src/usersapp/fixtures/state.json diff --git a/src/.vscode-janus-debug b/src/.vscode-janus-debug new file mode 100644 index 0000000..e69de29 diff --git a/src/Zoit/1.0.15 b/src/Zoit/1.0.15 new file mode 100644 index 0000000..e69de29 diff --git a/src/Zoit/Zoitapp/__init__.py b/src/Zoit/Zoitapp/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/Zoit/Zoitapp/admin.py b/src/Zoit/Zoitapp/admin.py new file mode 100644 index 0000000..a7c6ef9 --- /dev/null +++ b/src/Zoit/Zoitapp/admin.py @@ -0,0 +1,12 @@ +from django.contrib import admin +from .models import * + + +# Register your models here. + +admin.site.register(State) +admin.site.register(LGA) +admin.site.register(Hotel) +admin.site.register(Hospital) +admin.site.register(FRSC) +admin.site.register(PoliceStation) \ No newline at end of file diff --git a/src/Zoit/Zoitapp/apps.py b/src/Zoit/Zoitapp/apps.py new file mode 100644 index 0000000..da30d5c --- /dev/null +++ b/src/Zoit/Zoitapp/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class ZoitappConfig(AppConfig): + name = 'Zoitapp' diff --git a/src/Zoit/Zoitapp/fixtures/file_data.json b/src/Zoit/Zoitapp/fixtures/file_data.json new file mode 100644 index 0000000..f925029 --- /dev/null +++ b/src/Zoit/Zoitapp/fixtures/file_data.json @@ -0,0 +1,3246 @@ +[ + { + "state": { + "name": "Abia State", + "id": 1, + "locals": [ + { + "name": "Aba South", + "id": 1 + }, + { + "name": "Arochukwu", + "id": 2 + }, + { + "name": "Bende", + "id": 3 + }, + { + "name": "Ikwuano", + "id": 4 + }, + { + "name": "Isiala Ngwa North", + "id": 5 + }, + { + "name": "Isiala Ngwa South", + "id": 6 + }, + { + "name": "Isuikwuato", + "id": 7 + }, + { + "name": "Obi Ngwa", + "id": 8 + }, + { + "name": "Ohafia", + "id": 9 + }, + { + "name": "Osisioma", + "id": 10 + }, + { + "name": "Ugwunagbo", + "id": 11 + }, + { + "name": "Ukwa East", + "id": 12 + }, + { + "name": "Ukwa West", + "id": 13 + }, + { + "name": "Umuahia North", + "id": 14 + }, + { + "name": "Umuahia South", + "id": 15 + }, + { + "name": "Umu Nneochi", + "id": 16 + } + ] + } + }, + { + "state": { + "name": "Adamawa State", + "id": 2, + "locals": [ + { + "name": "Fufure", + "id": 1 + }, + { + "name": "Ganye", + "id": 2 + }, + { + "name": "Gayuk", + "id": 3 + }, + { + "name": "Gombi", + "id": 4 + }, + { + "name": "Grie", + "id": 5 + }, + { + "name": "Hong", + "id": 6 + }, + { + "name": "Jada", + "id": 7 + }, + { + "name": "Lamurde", + "id": 8 + }, + { + "name": "Madagali", + "id": 9 + }, + { + "name": "Maiha", + "id": 10 + }, + { + "name": "Mayo Belwa", + "id": 11 + }, + { + "name": "Michika", + "id": 12 + }, + { + "name": "Mubi North", + "id": 13 + }, + { + "name": "Mubi South", + "id": 14 + }, + { + "name": "Numan", + "id": 15 + }, + { + "name": "Shelleng", + "id": 16 + }, + { + "name": "Song", + "id": 17 + }, + { + "name": "Toungo", + "id": 18 + }, + { + "name": "Yola North", + "id": 19 + }, + { + "name": "Yola South", + "id": 20 + } + ] + } + }, + { + "state": { + "name": "Akwa Ibom State", + "id": 3, + "locals": [ + { + "name": "Eastern Obolo", + "id": 1 + }, + { + "name": "Eket", + "id": 2 + }, + { + "name": "Esit Eket", + "id": 3 + }, + { + "name": "Essien Udim", + "id": 4 + }, + { + "name": "Etim Ekpo", + "id": 5 + }, + { + "name": "Etinan", + "id": 6 + }, + { + "name": "Ibeno", + "id": 7 + }, + { + "name": "Ibesikpo Asutan", + "id": 8 + }, + { + "name": "Ibiono-Ibom", + "id": 9 + }, + { + "name": "Ika", + "id": 10 + }, + { + "name": "Ikono", + "id": 11 + }, + { + "name": "Ikot Abasi", + "id": 12 + }, + { + "name": "Ikot Ekpene", + "id": 13 + }, + { + "name": "Ini", + "id": 14 + }, + { + "name": "Itu", + "id": 15 + }, + { + "name": "Mbo", + "id": 16 + }, + { + "name": "Mkpat-Enin", + "id": 17 + }, + { + "name": "Nsit-Atai", + "id": 18 + }, + { + "name": "Nsit-Ibom", + "id": 19 + }, + { + "name": "Nsit-Ubium", + "id": 20 + }, + { + "name": "Obot Akara", + "id": 21 + }, + { + "name": "Okobo", + "id": 22 + }, + { + "name": "Onna", + "id": 23 + }, + { + "name": "Oron", + "id": 24 + }, + { + "name": "Oruk Anam", + "id": 25 + }, + { + "name": "Udung-Uko", + "id": 26 + }, + { + "name": "Ukanafun", + "id": 27 + }, + { + "name": "Uruan", + "id": 28 + }, + { + "name": "Urue-Offong/Oruko", + "id": 29 + }, + { + "name": "Uyo", + "id": 30 + } + ] + } + }, + { + "state": { + "name": "Anambra State", + "id": 4, + "locals": [ + { + "name": "Anambra East", + "id": 1 + }, + { + "name": "Anambra West", + "id": 2 + }, + { + "name": "Anaocha", + "id": 3 + }, + { + "name": "Awka North", + "id": 4 + }, + { + "name": "Awka South", + "id": 5 + }, + { + "name": "Ayamelum", + "id": 6 + }, + { + "name": "Dunukofia", + "id": 7 + }, + { + "name": "Ekwusigo", + "id": 8 + }, + { + "name": "Idemili North", + "id": 9 + }, + { + "name": "Idemili South", + "id": 10 + }, + { + "name": "Ihiala", + "id": 11 + }, + { + "name": "Njikoka", + "id": 12 + }, + { + "name": "Nnewi North", + "id": 13 + }, + { + "name": "Nnewi South", + "id": 14 + }, + { + "name": "Ogbaru", + "id": 15 + }, + { + "name": "Onitsha North", + "id": 16 + }, + { + "name": "Onitsha South", + "id": 17 + }, + { + "name": "Orumba North", + "id": 18 + }, + { + "name": "Orumba South", + "id": 19 + }, + { + "name": "Oyi", + "id": 20 + } + ] + } + }, + { + "state": { + "name": "Bauchi State", + "id": 5, + "locals": [ + { + "name": "Bauchi", + "id": 1 + }, + { + "name": "Bogoro", + "id": 2 + }, + { + "name": "Damban", + "id": 3 + }, + { + "name": "Darazo", + "id": 4 + }, + { + "name": "Dass", + "id": 5 + }, + { + "name": "Gamawa", + "id": 6 + }, + { + "name": "Ganjuwa", + "id": 7 + }, + { + "name": "Giade", + "id": 8 + }, + { + "name": "Itas/Gadau", + "id": 9 + }, + { + "name": "Jama'are", + "id": 10 + }, + { + "name": "Katagum", + "id": 11 + }, + { + "name": "Kirfi", + "id": 12 + }, + { + "name": "Misau", + "id": 13 + }, + { + "name": "Ningi", + "id": 14 + }, + { + "name": "Shira", + "id": 15 + }, + { + "name": "Tafawa Balewa", + "id": 16 + }, + { + "name": "Toro", + "id": 17 + }, + { + "name": "Warji", + "id": 18 + }, + { + "name": "Zaki", + "id": 19 + } + ] + } + }, + { + "state": { + "name": "Bayelsa State", + "id": 6, + "locals": [ + { + "name": "Ekeremor", + "id": 1 + }, + { + "name": "Kolokuma/Opokuma", + "id": 2 + }, + { + "name": "Nembe", + "id": 3 + }, + { + "name": "Ogbia", + "id": 4 + }, + { + "name": "Sagbama", + "id": 5 + }, + { + "name": "Southern Ijaw", + "id": 6 + }, + { + "name": "Yenagoa", + "id": 7 + } + ] + } + }, + { + "state": { + "name": "Benue State", + "id": 7, + "locals": [ + { + "name": "Apa", + "id": 1 + }, + { + "name": "Ado", + "id": 2 + }, + { + "name": "Buruku", + "id": 3 + }, + { + "name": "Gboko", + "id": 4 + }, + { + "name": "Guma", + "id": 5 + }, + { + "name": "Gwer East", + "id": 6 + }, + { + "name": "Gwer West", + "id": 7 + }, + { + "name": "Katsina-Ala", + "id": 8 + }, + { + "name": "Konshisha", + "id": 9 + }, + { + "name": "Kwande", + "id": 10 + }, + { + "name": "Logo", + "id": 11 + }, + { + "name": "Makurdi", + "id": 12 + }, + { + "name": "Obi", + "id": 13 + }, + { + "name": "Ogbadibo", + "id": 14 + }, + { + "name": "Ohimini", + "id": 15 + }, + { + "name": "Oju", + "id": 16 + }, + { + "name": "Okpokwu", + "id": 17 + }, + { + "name": "Oturkpo", + "id": 18 + }, + { + "name": "Tarka", + "id": 19 + }, + { + "name": "Ukum", + "id": 20 + }, + { + "name": "Ushongo", + "id": 21 + }, + { + "name": "Vandeikya", + "id": 22 + } + ] + } + }, + { + "state": { + "name": "Borno State", + "id": 8, + "locals": [ + { + "name": "Askira/Uba", + "id": 1 + }, + { + "name": "Bama", + "id": 2 + }, + { + "name": "Bayo", + "id": 3 + }, + { + "name": "Biu", + "id": 4 + }, + { + "name": "Chibok", + "id": 5 + }, + { + "name": "Damboa", + "id": 6 + }, + { + "name": "Dikwa", + "id": 7 + }, + { + "name": "Gubio", + "id": 8 + }, + { + "name": "Guzamala", + "id": 9 + }, + { + "name": "Gwoza", + "id": 10 + }, + { + "name": "Hawul", + "id": 11 + }, + { + "name": "Jere", + "id": 12 + }, + { + "name": "Kaga", + "id": 13 + }, + { + "name": "Kala/Balge", + "id": 14 + }, + { + "name": "Konduga", + "id": 15 + }, + { + "name": "Kukawa", + "id": 16 + }, + { + "name": "Kwaya Kusar", + "id": 17 + }, + { + "name": "Mafa", + "id": 18 + }, + { + "name": "Magumeri", + "id": 19 + }, + { + "name": "Maiduguri", + "id": 20 + }, + { + "name": "Marte", + "id": 21 + }, + { + "name": "Mobbar", + "id": 22 + }, + { + "name": "Monguno", + "id": 23 + }, + { + "name": "Ngala", + "id": 24 + }, + { + "name": "Nganzai", + "id": 25 + }, + { + "name": "Shani", + "id": 26 + } + ] + } + }, + { + "state": { + "name": "Cross River State", + "id": 9, + "locals": [ + { + "name": "Akamkpa", + "id": 1 + }, + { + "name": "Akpabuyo", + "id": 2 + }, + { + "name": "Bakassi", + "id": 3 + }, + { + "name": "Bekwarra", + "id": 4 + }, + { + "name": "Biase", + "id": 5 + }, + { + "name": "Boki", + "id": 6 + }, + { + "name": "Calabar Municipal", + "id": 7 + }, + { + "name": "Calabar South", + "id": 8 + }, + { + "name": "Etung", + "id": 9 + }, + { + "name": "Ikom", + "id": 10 + }, + { + "name": "Obanliku", + "id": 11 + }, + { + "name": "Obubra", + "id": 12 + }, + { + "name": "Obudu", + "id": 13 + }, + { + "name": "Odukpani", + "id": 14 + }, + { + "name": "Ogoja", + "id": 15 + }, + { + "name": "Yakuur", + "id": 16 + }, + { + "name": "Yala", + "id": 17 + } + ] + } + }, + { + "state": { + "name": "Delta State", + "id": 10, + "locals": [ + { + "name": "Aniocha South", + "id": 1 + }, + { + "name": "Bomadi", + "id": 2 + }, + { + "name": "Burutu", + "id": 3 + }, + { + "name": "Ethiope East", + "id": 4 + }, + { + "name": "Ethiope West", + "id": 5 + }, + { + "name": "Ika North East", + "id": 6 + }, + { + "name": "Ika South", + "id": 7 + }, + { + "name": "Isoko North", + "id": 8 + }, + { + "name": "Isoko South", + "id": 9 + }, + { + "name": "Ndokwa East", + "id": 10 + }, + { + "name": "Ndokwa West", + "id": 11 + }, + { + "name": "Okpe", + "id": 12 + }, + { + "name": "Oshimili North", + "id": 13 + }, + { + "name": "Oshimili South", + "id": 14 + }, + { + "name": "Patani", + "id": 15 + }, + { + "name": "Sapele", + "id": 16 + }, + { + "name": "Udu", + "id": 17 + }, + { + "name": "Ughelli North", + "id": 18 + }, + { + "name": "Ughelli South", + "id": 19 + }, + { + "name": "Ukwuani", + "id": 20 + }, + { + "name": "Uvwie", + "id": 21 + }, + { + "name": "Warri North", + "id": 22 + }, + { + "name": "Warri South", + "id": 23 + }, + { + "name": "Warri South West", + "id": 24 + } + ] + } + }, + { + "state": { + "name": "Ebonyi State", + "id": 11, + "locals": [ + { + "name": "Afikpo North", + "id": 1 + }, + { + "name": "Afikpo South", + "id": 2 + }, + { + "name": "Ebonyi", + "id": 3 + }, + { + "name": "Ezza North", + "id": 4 + }, + { + "name": "Ezza South", + "id": 5 + }, + { + "name": "Ikwo", + "id": 6 + }, + { + "name": "Ishielu", + "id": 7 + }, + { + "name": "Ivo", + "id": 8 + }, + { + "name": "Izzi", + "id": 9 + }, + { + "name": "Ohaozara", + "id": 10 + }, + { + "name": "Ohaukwu", + "id": 11 + }, + { + "name": "Onicha", + "id": 12 + } + ] + } + }, + { + "state": { + "name": "Edo State", + "id": 12, + "locals": [ + { + "name": "Egor", + "id": 1 + }, + { + "name": "Esan Central", + "id": 2 + }, + { + "name": "Esan North-East", + "id": 3 + }, + { + "name": "Esan South-East", + "id": 4 + }, + { + "name": "Esan West", + "id": 5 + }, + { + "name": "Etsako Central", + "id": 6 + }, + { + "name": "Etsako East", + "id": 7 + }, + { + "name": "Etsako West", + "id": 8 + }, + { + "name": "Igueben", + "id": 9 + }, + { + "name": "Ikpoba Okha", + "id": 10 + }, + { + "name": "Orhionmwon", + "id": 11 + }, + { + "name": "Oredo", + "id": 12 + }, + { + "name": "Ovia North-East", + "id": 13 + }, + { + "name": "Ovia South-West", + "id": 14 + }, + { + "name": "Owan East", + "id": 15 + }, + { + "name": "Owan West", + "id": 16 + }, + { + "name": "Uhunmwonde", + "id": 17 + } + ] + } + }, + { + "state": { + "name": "Ekiti State", + "id": 13, + "locals": [ + { + "name": "Efon", + "id": 1 + }, + { + "name": "Ekiti East", + "id": 2 + }, + { + "name": "Ekiti South-West", + "id": 3 + }, + { + "name": "Ekiti West", + "id": 4 + }, + { + "name": "Emure", + "id": 5 + }, + { + "name": "Gbonyin", + "id": 6 + }, + { + "name": "Ido Osi", + "id": 7 + }, + { + "name": "Ijero", + "id": 8 + }, + { + "name": "Ikere", + "id": 9 + }, + { + "name": "Ikole", + "id": 10 + }, + { + "name": "Ilejemeje", + "id": 11 + }, + { + "name": "Irepodun/Ifelodun", + "id": 12 + }, + { + "name": "Ise/Orun", + "id": 13 + }, + { + "name": "Moba", + "id": 14 + }, + { + "name": "Oye", + "id": 15 + } + ] + } + }, + { + "state": { + "name": "Enugu State", + "id": 14, + "locals": [ + { + "name": "Awgu", + "id": 1 + }, + { + "name": "Enugu East", + "id": 2 + }, + { + "name": "Enugu North", + "id": 3 + }, + { + "name": "Enugu South", + "id": 4 + }, + { + "name": "Ezeagu", + "id": 5 + }, + { + "name": "Igbo Etiti", + "id": 6 + }, + { + "name": "Igbo Eze North", + "id": 7 + }, + { + "name": "Igbo Eze South", + "id": 8 + }, + { + "name": "Isi Uzo", + "id": 9 + }, + { + "name": "Nkanu East", + "id": 10 + }, + { + "name": "Nkanu West", + "id": 11 + }, + { + "name": "Nsukka", + "id": 12 + }, + { + "name": "Oji River", + "id": 13 + }, + { + "name": "Udenu", + "id": 14 + }, + { + "name": "Udi", + "id": 15 + }, + { + "name": "Uzo Uwani", + "id": 16 + } + ] + } + }, + { + "state": { + "name": "FCT", + "id": 15, + "locals": [ + { + "name": "Bwari", + "id": 1 + }, + { + "name": "Gwagwalada", + "id": 2 + }, + { + "name": "Kuje", + "id": 3 + }, + { + "name": "Kwali", + "id": 4 + }, + { + "name": "Municipal Area Council", + "id": 5 + } + ] + } + }, + { + "state": { + "name": "Gombe State", + "id": 16, + "locals": [ + { + "name": "Balanga", + "id": 1 + }, + { + "name": "Billiri", + "id": 2 + }, + { + "name": "Dukku", + "id": 3 + }, + { + "name": "Funakaye", + "id": 4 + }, + { + "name": "Gombe", + "id": 5 + }, + { + "name": "Kaltungo", + "id": 6 + }, + { + "name": "Kwami", + "id": 7 + }, + { + "name": "Nafada", + "id": 8 + }, + { + "name": "Shongom", + "id": 9 + }, + { + "name": "Yamaltu/Deba", + "id": 10 + } + ] + } + }, + { + "state": { + "name": "Imo State", + "id": 17, + "locals": [ + { + "name": "Ahiazu Mbaise", + "id": 1 + }, + { + "name": "Ehime Mbano", + "id": 2 + }, + { + "name": "Ezinihitte", + "id": 3 + }, + { + "name": "Ideato North", + "id": 4 + }, + { + "name": "Ideato South", + "id": 5 + }, + { + "name": "Ihitte/Uboma", + "id": 6 + }, + { + "name": "Ikeduru", + "id": 7 + }, + { + "name": "Isiala Mbano", + "id": 8 + }, + { + "name": "Isu", + "id": 9 + }, + { + "name": "Mbaitoli", + "id": 10 + }, + { + "name": "Ngor Okpala", + "id": 11 + }, + { + "name": "Njaba", + "id": 12 + }, + { + "name": "Nkwerre", + "id": 13 + }, + { + "name": "Nwangele", + "id": 14 + }, + { + "name": "Obowo", + "id": 15 + }, + { + "name": "Oguta", + "id": 16 + }, + { + "name": "Ohaji/Egbema", + "id": 17 + }, + { + "name": "Okigwe", + "id": 18 + }, + { + "name": "Orlu", + "id": 19 + }, + { + "name": "Orsu", + "id": 20 + }, + { + "name": "Oru East", + "id": 21 + }, + { + "name": "Oru West", + "id": 22 + }, + { + "name": "Owerri Municipal", + "id": 23 + }, + { + "name": "Owerri North", + "id": 24 + }, + { + "name": "Owerri West", + "id": 25 + }, + { + "name": "Unuimo", + "id": 26 + } + ] + } + }, + { + "state": { + "name": "Jigawa State", + "id": 18, + "locals": [ + { + "name": "Babura", + "id": 1 + }, + { + "name": "Biriniwa", + "id": 2 + }, + { + "name": "Birnin Kudu", + "id": 3 + }, + { + "name": "Buji", + "id": 4 + }, + { + "name": "Dutse", + "id": 5 + }, + { + "name": "Gagarawa", + "id": 6 + }, + { + "name": "Garki", + "id": 7 + }, + { + "name": "Gumel", + "id": 8 + }, + { + "name": "Guri", + "id": 9 + }, + { + "name": "Gwaram", + "id": 10 + }, + { + "name": "Gwiwa", + "id": 11 + }, + { + "name": "Hadejia", + "id": 12 + }, + { + "name": "Jahun", + "id": 13 + }, + { + "name": "Kafin Hausa", + "id": 14 + }, + { + "name": "Kazaure", + "id": 15 + }, + { + "name": "Kiri Kasama", + "id": 16 + }, + { + "name": "Kiyawa", + "id": 17 + }, + { + "name": "Kaugama", + "id": 18 + }, + { + "name": "Maigatari", + "id": 19 + }, + { + "name": "Malam Madori", + "id": 20 + }, + { + "name": "Miga", + "id": 21 + }, + { + "name": "Ringim", + "id": 22 + }, + { + "name": "Roni", + "id": 23 + }, + { + "name": "Sule Tankarkar", + "id": 24 + }, + { + "name": "Taura", + "id": 25 + }, + { + "name": "Yankwashi", + "id": 26 + } + ] + } + }, + { + "state": { + "name": "Kaduna State", + "id": 19, + "locals": [ + { + "name": "Chikun", + "id": 1 + }, + { + "name": "Giwa", + "id": 2 + }, + { + "name": "Igabi", + "id": 3 + }, + { + "name": "Ikara", + "id": 4 + }, + { + "name": "Jaba", + "id": 5 + }, + { + "name": "Jema'a", + "id": 6 + }, + { + "name": "Kachia", + "id": 7 + }, + { + "name": "Kaduna North", + "id": 8 + }, + { + "name": "Kaduna South", + "id": 9 + }, + { + "name": "Kagarko", + "id": 10 + }, + { + "name": "Kajuru", + "id": 11 + }, + { + "name": "Kaura", + "id": 12 + }, + { + "name": "Kauru", + "id": 13 + }, + { + "name": "Kubau", + "id": 14 + }, + { + "name": "Kudan", + "id": 15 + }, + { + "name": "Lere", + "id": 16 + }, + { + "name": "Makarfi", + "id": 17 + }, + { + "name": "Sabon Gari", + "id": 18 + }, + { + "name": "Sanga", + "id": 19 + }, + { + "name": "Soba", + "id": 20 + }, + { + "name": "Zangon Kataf", + "id": 21 + }, + { + "name": "Zaria", + "id": 22 + } + ] + } + }, + { + "state": { + "name": "Kano State", + "id": 20, + "locals": [ + { + "name": "Albasu", + "id": 1 + }, + { + "name": "Bagwai", + "id": 2 + }, + { + "name": "Bebeji", + "id": 3 + }, + { + "name": "Bichi", + "id": 4 + }, + { + "name": "Bunkure", + "id": 5 + }, + { + "name": "Dala", + "id": 6 + }, + { + "name": "Dambatta", + "id": 7 + }, + { + "name": "Dawakin Kudu", + "id": 8 + }, + { + "name": "Dawakin Tofa", + "id": 9 + }, + { + "name": "Doguwa", + "id": 10 + }, + { + "name": "Fagge", + "id": 11 + }, + { + "name": "Gabasawa", + "id": 12 + }, + { + "name": "Garko", + "id": 13 + }, + { + "name": "Garun Mallam", + "id": 14 + }, + { + "name": "Gaya", + "id": 15 + }, + { + "name": "Gezawa", + "id": 16 + }, + { + "name": "Gwale", + "id": 17 + }, + { + "name": "Gwarzo", + "id": 18 + }, + { + "name": "Kabo", + "id": 19 + }, + { + "name": "Kano Municipal", + "id": 20 + }, + { + "name": "Karaye", + "id": 21 + }, + { + "name": "Kibiya", + "id": 22 + }, + { + "name": "Kiru", + "id": 23 + }, + { + "name": "Kumbotso", + "id": 24 + }, + { + "name": "Kunchi", + "id": 25 + }, + { + "name": "Kura", + "id": 26 + }, + { + "name": "Madobi", + "id": 27 + }, + { + "name": "Makoda", + "id": 28 + }, + { + "name": "Minjibir", + "id": 29 + }, + { + "name": "Nasarawa", + "id": 30 + }, + { + "name": "Rano", + "id": 31 + }, + { + "name": "Rimin Gado", + "id": 32 + }, + { + "name": "Rogo", + "id": 33 + }, + { + "name": "Shanono", + "id": 34 + }, + { + "name": "Sumaila", + "id": 35 + }, + { + "name": "Takai", + "id": 36 + }, + { + "name": "Tarauni", + "id": 37 + }, + { + "name": "Tofa", + "id": 38 + }, + { + "name": "Tsanyawa", + "id": 39 + }, + { + "name": "Tudun Wada", + "id": 40 + }, + { + "name": "Ungogo", + "id": 41 + }, + { + "name": "Warawa", + "id": 42 + }, + { + "name": "Wudil", + "id": 43 + } + ] + } + }, + { + "state": { + "name": "Katsina State", + "id": 21, + "locals": [ + { + "name": "Batagarawa", + "id": 1 + }, + { + "name": "Batsari", + "id": 2 + }, + { + "name": "Baure", + "id": 3 + }, + { + "name": "Bindawa", + "id": 4 + }, + { + "name": "Charanchi", + "id": 5 + }, + { + "name": "Dandume", + "id": 6 + }, + { + "name": "Danja", + "id": 7 + }, + { + "name": "Dan Musa", + "id": 8 + }, + { + "name": "Daura", + "id": 9 + }, + { + "name": "Dutsi", + "id": 10 + }, + { + "name": "Dutsin Ma", + "id": 11 + }, + { + "name": "Faskari", + "id": 12 + }, + { + "name": "Funtua", + "id": 13 + }, + { + "name": "Ingawa", + "id": 14 + }, + { + "name": "Jibia", + "id": 15 + }, + { + "name": "Kafur", + "id": 16 + }, + { + "name": "Kaita", + "id": 17 + }, + { + "name": "Kankara", + "id": 18 + }, + { + "name": "Kankia", + "id": 19 + }, + { + "name": "Katsina", + "id": 20 + }, + { + "name": "Kurfi", + "id": 21 + }, + { + "name": "Kusada", + "id": 22 + }, + { + "name": "Mai'Adua", + "id": 23 + }, + { + "name": "Malumfashi", + "id": 24 + }, + { + "name": "Mani", + "id": 25 + }, + { + "name": "Mashi", + "id": 26 + }, + { + "name": "Matazu", + "id": 27 + }, + { + "name": "Musawa", + "id": 28 + }, + { + "name": "Rimi", + "id": 29 + }, + { + "name": "Sabuwa", + "id": 30 + }, + { + "name": "Safana", + "id": 31 + }, + { + "name": "Sandamu", + "id": 32 + }, + { + "name": "Zango", + "id": 33 + } + ] + } + }, + { + "state": { + "name": "Kebbi State", + "id": 22, + "locals": [ + { + "name": "Arewa Dandi", + "id": 1 + }, + { + "name": "Argungu", + "id": 2 + }, + { + "name": "Augie", + "id": 3 + }, + { + "name": "Bagudo", + "id": 4 + }, + { + "name": "Birnin Kebbi", + "id": 5 + }, + { + "name": "Bunza", + "id": 6 + }, + { + "name": "Dandi", + "id": 7 + }, + { + "name": "Fakai", + "id": 8 + }, + { + "name": "Gwandu", + "id": 9 + }, + { + "name": "Jega", + "id": 10 + }, + { + "name": "Kalgo", + "id": 11 + }, + { + "name": "Koko/Besse", + "id": 12 + }, + { + "name": "Maiyama", + "id": 13 + }, + { + "name": "Ngaski", + "id": 14 + }, + { + "name": "Sakaba", + "id": 15 + }, + { + "name": "Shanga", + "id": 16 + }, + { + "name": "Suru", + "id": 17 + }, + { + "name": "Wasagu/Danko", + "id": 18 + }, + { + "name": "Yauri", + "id": 19 + }, + { + "name": "Zuru", + "id": 20 + } + ] + } + }, + { + "state": { + "name": "Kogi State", + "id": 23, + "locals": [ + { + "name": "Ajaokuta", + "id": 1 + }, + { + "name": "Ankpa", + "id": 2 + }, + { + "name": "Bassa", + "id": 3 + }, + { + "name": "Dekina", + "id": 4 + }, + { + "name": "Ibaji", + "id": 5 + }, + { + "name": "Idah", + "id": 6 + }, + { + "name": "Igalamela Odolu", + "id": 7 + }, + { + "name": "Ijumu", + "id": 8 + }, + { + "name": "Kabba/Bunu", + "id": 9 + }, + { + "name": "Kogi", + "id": 10 + }, + { + "name": "Lokoja", + "id": 11 + }, + { + "name": "Mopa Muro", + "id": 12 + }, + { + "name": "Ofu", + "id": 13 + }, + { + "name": "Ogori/Magongo", + "id": 14 + }, + { + "name": "Okehi", + "id": 15 + }, + { + "name": "Okene", + "id": 16 + }, + { + "name": "Olamaboro", + "id": 17 + }, + { + "name": "Omala", + "id": 18 + }, + { + "name": "Yagba East", + "id": 19 + }, + { + "name": "Yagba West", + "id": 20 + } + ] + } + }, + { + "state": { + "name": "Kwara State", + "id": 24, + "locals": [ + { + "name": "Baruten", + "id": 1 + }, + { + "name": "Edu", + "id": 2 + }, + { + "name": "Ekiti", + "id": 3 + }, + { + "name": "Ifelodun", + "id": 4 + }, + { + "name": "Ilorin East", + "id": 5 + }, + { + "name": "Ilorin South", + "id": 6 + }, + { + "name": "Ilorin West", + "id": 7 + }, + { + "name": "Irepodun", + "id": 8 + }, + { + "name": "Isin", + "id": 9 + }, + { + "name": "Kaiama", + "id": 10 + }, + { + "name": "Moro", + "id": 11 + }, + { + "name": "Offa", + "id": 12 + }, + { + "name": "Oke Ero", + "id": 13 + }, + { + "name": "Oyun", + "id": 14 + }, + { + "name": "Pategi", + "id": 15 + } + ] + } + }, + { + "state": { + "name": "Lagos State", + "id": 25, + "locals": [ + { + "name": "Ajeromi-Ifelodun", + "id": 1 + }, + { + "name": "Alimosho", + "id": 2 + }, + { + "name": "Amuwo-Odofin", + "id": 3 + }, + { + "name": "Apapa", + "id": 4 + }, + { + "name": "Badagry", + "id": 5 + }, + { + "name": "Epe", + "id": 6 + }, + { + "name": "Eti Osa", + "id": 7 + }, + { + "name": "Ibeju-Lekki", + "id": 8 + }, + { + "name": "Ifako-Ijaiye", + "id": 9 + }, + { + "name": "Ikeja", + "id": 10 + }, + { + "name": "Ikorodu", + "id": 11 + }, + { + "name": "Kosofe", + "id": 12 + }, + { + "name": "Lagos Island", + "id": 13 + }, + { + "name": "Lagos Mainland", + "id": 14 + }, + { + "name": "Mushin", + "id": 15 + }, + { + "name": "Ojo", + "id": 16 + }, + { + "name": "Oshodi-Isolo", + "id": 17 + }, + { + "name": "Shomolu", + "id": 18 + }, + { + "name": "Surulere", + "id": 19 + } + ] + } + }, + { + "state": { + "name": "Nasarawa State", + "id": 26, + "locals": [ + { + "name": "Awe", + "id": 1 + }, + { + "name": "Doma", + "id": 2 + }, + { + "name": "Karu", + "id": 3 + }, + { + "name": "Keana", + "id": 4 + }, + { + "name": "Keffi", + "id": 5 + }, + { + "name": "Kokona", + "id": 6 + }, + { + "name": "Lafia", + "id": 7 + }, + { + "name": "Nasarawa", + "id": 8 + }, + { + "name": "Nasarawa Egon", + "id": 9 + }, + { + "name": "Obi", + "id": 10 + }, + { + "name": "Toto", + "id": 11 + }, + { + "name": "Wamba", + "id": 12 + } + ] + } + }, + { + "state": { + "name": "Niger State", + "id": 27, + "locals": [ + { + "name": "Agwara", + "id": 1 + }, + { + "name": "Bida", + "id": 2 + }, + { + "name": "Borgu", + "id": 3 + }, + { + "name": "Bosso", + "id": 4 + }, + { + "name": "Chanchaga", + "id": 5 + }, + { + "name": "Edati", + "id": 6 + }, + { + "name": "Gbako", + "id": 7 + }, + { + "name": "Gurara", + "id": 8 + }, + { + "name": "Katcha", + "id": 9 + }, + { + "name": "Kontagora", + "id": 10 + }, + { + "name": "Lapai", + "id": 11 + }, + { + "name": "Lavun", + "id": 12 + }, + { + "name": "Magama", + "id": 13 + }, + { + "name": "Mariga", + "id": 14 + }, + { + "name": "Mashegu", + "id": 15 + }, + { + "name": "Mokwa", + "id": 16 + }, + { + "name": "Moya", + "id": 17 + }, + { + "name": "Paikoro", + "id": 18 + }, + { + "name": "Rafi", + "id": 19 + }, + { + "name": "Rijau", + "id": 20 + }, + { + "name": "Shiroro", + "id": 21 + }, + { + "name": "Suleja", + "id": 22 + }, + { + "name": "Tafa", + "id": 23 + }, + { + "name": "Wushishi", + "id": 24 + } + ] + } + }, + { + "state": { + "name": "Ogun State", + "id": 28, + "locals": [ + { + "name": "Abeokuta South", + "id": 1 + }, + { + "name": "Ado-Odo/Ota", + "id": 2 + }, + { + "name": "Egbado North", + "id": 3 + }, + { + "name": "Egbado South", + "id": 4 + }, + { + "name": "Ewekoro", + "id": 5 + }, + { + "name": "Ifo", + "id": 6 + }, + { + "name": "Ijebu East", + "id": 7 + }, + { + "name": "Ijebu North", + "id": 8 + }, + { + "name": "Ijebu North East", + "id": 9 + }, + { + "name": "Ijebu Ode", + "id": 10 + }, + { + "name": "Ikenne", + "id": 11 + }, + { + "name": "Imeko Afon", + "id": 12 + }, + { + "name": "Ipokia", + "id": 13 + }, + { + "name": "Obafemi Owode", + "id": 14 + }, + { + "name": "Odeda", + "id": 15 + }, + { + "name": "Odogbolu", + "id": 16 + }, + { + "name": "Ogun Waterside", + "id": 17 + }, + { + "name": "Remo North", + "id": 18 + }, + { + "name": "Shagamu", + "id": 19 + } + ] + } + }, + { + "state": { + "name": "Ondo State", + "id": 29, + "locals": [ + { + "name": "Akoko North-West", + "id": 1 + }, + { + "name": "Akoko South-West", + "id": 2 + }, + { + "name": "Akoko South-East", + "id": 3 + }, + { + "name": "Akure North", + "id": 4 + }, + { + "name": "Akure South", + "id": 5 + }, + { + "name": "Ese Odo", + "id": 6 + }, + { + "name": "Idanre", + "id": 7 + }, + { + "name": "Ifedore", + "id": 8 + }, + { + "name": "Ilaje", + "id": 9 + }, + { + "name": "Ile Oluji/Okeigbo", + "id": 10 + }, + { + "name": "Irele", + "id": 11 + }, + { + "name": "Odigbo", + "id": 12 + }, + { + "name": "Okitipupa", + "id": 13 + }, + { + "name": "Ondo East", + "id": 14 + }, + { + "name": "Ondo West", + "id": 15 + }, + { + "name": "Ose", + "id": 16 + }, + { + "name": "Owo", + "id": 17 + } + ] + } + }, + { + "state": { + "name": "Osun State", + "id": 30, + "locals": [ + { + "name": "Atakunmosa West", + "id": 1 + }, + { + "name": "Aiyedaade", + "id": 2 + }, + { + "name": "Aiyedire", + "id": 3 + }, + { + "name": "Boluwaduro", + "id": 4 + }, + { + "name": "Boripe", + "id": 5 + }, + { + "name": "Ede North", + "id": 6 + }, + { + "name": "Ede South", + "id": 7 + }, + { + "name": "Ife Central", + "id": 8 + }, + { + "name": "Ife East", + "id": 9 + }, + { + "name": "Ife North", + "id": 10 + }, + { + "name": "Ife South", + "id": 11 + }, + { + "name": "Egbedore", + "id": 12 + }, + { + "name": "Ejigbo", + "id": 13 + }, + { + "name": "Ifedayo", + "id": 14 + }, + { + "name": "Ifelodun", + "id": 15 + }, + { + "name": "Ila", + "id": 16 + }, + { + "name": "Ilesa East", + "id": 17 + }, + { + "name": "Ilesa West", + "id": 18 + }, + { + "name": "Irepodun", + "id": 19 + }, + { + "name": "Irewole", + "id": 20 + }, + { + "name": "Isokan", + "id": 21 + }, + { + "name": "Iwo", + "id": 22 + }, + { + "name": "Obokun", + "id": 23 + }, + { + "name": "Odo Otin", + "id": 24 + }, + { + "name": "Ola Oluwa", + "id": 25 + }, + { + "name": "Olorunda", + "id": 26 + }, + { + "name": "Oriade", + "id": 27 + }, + { + "name": "Orolu", + "id": 28 + }, + { + "name": "Osogbo", + "id": 29 + } + ] + } + }, + { + "state": { + "name": "Oyo State", + "id": 31, + "locals": [ + { + "name": "Akinyele", + "id": 1 + }, + { + "name": "Atiba", + "id": 2 + }, + { + "name": "Atisbo", + "id": 3 + }, + { + "name": "Egbeda", + "id": 4 + }, + { + "name": "Ibadan North", + "id": 5 + }, + { + "name": "Ibadan North-East", + "id": 6 + }, + { + "name": "Ibadan North-West", + "id": 7 + }, + { + "name": "Ibadan South-East", + "id": 8 + }, + { + "name": "Ibadan South-West", + "id": 9 + }, + { + "name": "Ibarapa Central", + "id": 10 + }, + { + "name": "Ibarapa East", + "id": 11 + }, + { + "name": "Ibarapa North", + "id": 12 + }, + { + "name": "Ido", + "id": 13 + }, + { + "name": "Irepo", + "id": 14 + }, + { + "name": "Iseyin", + "id": 15 + }, + { + "name": "Itesiwaju", + "id": 16 + }, + { + "name": "Iwajowa", + "id": 17 + }, + { + "name": "Kajola", + "id": 18 + }, + { + "name": "Lagelu", + "id": 19 + }, + { + "name": "Ogbomosho North", + "id": 20 + }, + { + "name": "Ogbomosho South", + "id": 21 + }, + { + "name": "Ogo Oluwa", + "id": 22 + }, + { + "name": "Olorunsogo", + "id": 23 + }, + { + "name": "Oluyole", + "id": 24 + }, + { + "name": "Ona Ara", + "id": 25 + }, + { + "name": "Orelope", + "id": 26 + }, + { + "name": "Ori Ire", + "id": 27 + }, + { + "name": "Oyo", + "id": 28 + }, + { + "name": "Oyo East", + "id": 29 + }, + { + "name": "Saki East", + "id": 30 + }, + { + "name": "Saki West", + "id": 31 + }, + { + "name": "Surulere", + "id": 32 + } + ] + } + }, + { + "state": { + "name": "Plateau State", + "id": 32, + "locals": [ + { + "name": "Barkin Ladi", + "id": 1 + }, + { + "name": "Bassa", + "id": 2 + }, + { + "name": "Jos East", + "id": 3 + }, + { + "name": "Jos North", + "id": 4 + }, + { + "name": "Jos South", + "id": 5 + }, + { + "name": "Kanam", + "id": 6 + }, + { + "name": "Kanke", + "id": 7 + }, + { + "name": "Langtang South", + "id": 8 + }, + { + "name": "Langtang North", + "id": 9 + }, + { + "name": "Mangu", + "id": 10 + }, + { + "name": "Mikang", + "id": 11 + }, + { + "name": "Pankshin", + "id": 12 + }, + { + "name": "Qua'an Pan", + "id": 13 + }, + { + "name": "Riyom", + "id": 14 + }, + { + "name": "Shendam", + "id": 15 + }, + { + "name": "Wase", + "id": 16 + } + ] + } + }, + { + "state": { + "name": "Rivers State", + "id": 33, + "locals": [ + { + "name": "Ahoada East", + "id": 1 + }, + { + "name": "Ahoada West", + "id": 2 + }, + { + "name": "Akuku-Toru", + "id": 3 + }, + { + "name": "Andoni", + "id": 4 + }, + { + "name": "Asari-Toru", + "id": 5 + }, + { + "name": "Bonny", + "id": 6 + }, + { + "name": "Degema", + "id": 7 + }, + { + "name": "Eleme", + "id": 8 + }, + { + "name": "Emuoha", + "id": 9 + }, + { + "name": "Etche", + "id": 10 + }, + { + "name": "Gokana", + "id": 11 + }, + { + "name": "Ikwerre", + "id": 12 + }, + { + "name": "Khana", + "id": 13 + }, + { + "name": "Obio/Akpor", + "id": 14 + }, + { + "name": "Ogba/Egbema/Ndoni", + "id": 15 + }, + { + "name": "Ogu/Bolo", + "id": 16 + }, + { + "name": "Okrika", + "id": 17 + }, + { + "name": "Omuma", + "id": 18 + }, + { + "name": "Opobo/Nkoro", + "id": 19 + }, + { + "name": "Oyigbo", + "id": 20 + }, + { + "name": "Port Harcourt", + "id": 21 + }, + { + "name": "Tai", + "id": 22 + } + ] + } + }, + { + "state": { + "name": "Sokoto State", + "id": 34, + "locals": [ + { + "name": "Bodinga", + "id": 1 + }, + { + "name": "Dange Shuni", + "id": 2 + }, + { + "name": "Gada", + "id": 3 + }, + { + "name": "Goronyo", + "id": 4 + }, + { + "name": "Gudu", + "id": 5 + }, + { + "name": "Gwadabawa", + "id": 6 + }, + { + "name": "Illela", + "id": 7 + }, + { + "name": "Isa", + "id": 8 + }, + { + "name": "Kebbe", + "id": 9 + }, + { + "name": "Kware", + "id": 10 + }, + { + "name": "Rabah", + "id": 11 + }, + { + "name": "Sabon Birni", + "id": 12 + }, + { + "name": "Shagari", + "id": 13 + }, + { + "name": "Silame", + "id": 14 + }, + { + "name": "Sokoto North", + "id": 15 + }, + { + "name": "Sokoto South", + "id": 16 + }, + { + "name": "Tambuwal", + "id": 17 + }, + { + "name": "Tangaza", + "id": 18 + }, + { + "name": "Tureta", + "id": 19 + }, + { + "name": "Wamako", + "id": 20 + }, + { + "name": "Wurno", + "id": 21 + }, + { + "name": "Yabo", + "id": 22 + } + ] + } + }, + { + "state": { + "name": "Taraba State", + "id": 35, + "locals": [ + { + "name": "Bali", + "id": 1 + }, + { + "name": "Donga", + "id": 2 + }, + { + "name": "Gashaka", + "id": 3 + }, + { + "name": "Gassol", + "id": 4 + }, + { + "name": "Ibi", + "id": 5 + }, + { + "name": "Jalingo", + "id": 6 + }, + { + "name": "Karim Lamido", + "id": 7 + }, + { + "name": "Kumi", + "id": 8 + }, + { + "name": "Lau", + "id": 9 + }, + { + "name": "Sardauna", + "id": 10 + }, + { + "name": "Takum", + "id": 11 + }, + { + "name": "Ussa", + "id": 12 + }, + { + "name": "Wukari", + "id": 13 + }, + { + "name": "Yorro", + "id": 14 + }, + { + "name": "Zing", + "id": 15 + } + ] + } + }, + { + "state": { + "name": "Yobe State", + "id": 36, + "locals": [ + { + "name": "Bursari", + "id": 1 + }, + { + "name": "Damaturu", + "id": 2 + }, + { + "name": "Fika", + "id": 3 + }, + { + "name": "Fune", + "id": 4 + }, + { + "name": "Geidam", + "id": 5 + }, + { + "name": "Gujba", + "id": 6 + }, + { + "name": "Gulani", + "id": 7 + }, + { + "name": "Jakusko", + "id": 8 + }, + { + "name": "Karasuwa", + "id": 9 + }, + { + "name": "Machina", + "id": 10 + }, + { + "name": "Nangere", + "id": 11 + }, + { + "name": "Nguru", + "id": 12 + }, + { + "name": "Potiskum", + "id": 13 + }, + { + "name": "Tarmuwa", + "id": 14 + }, + { + "name": "Yunusari", + "id": 15 + }, + { + "name": "Yusufari", + "id": 16 + } + ] + } + }, + { + "state": { + "name": "Zamfara State", + "id": 37, + "locals": [ + { + "name": "Bakura", + "id": 1 + }, + { + "name": "Birnin Magaji/Kiyaw", + "id": 2 + }, + { + "name": "Bukkuyum", + "id": 3 + }, + { + "name": "Bungudu", + "id": 4 + }, + { + "name": "Gummi", + "id": 5 + }, + { + "name": "Gusau", + "id": 6 + }, + { + "name": "Kaura Namoda", + "id": 7 + }, + { + "name": "Maradun", + "id": 8 + }, + { + "name": "Maru", + "id": 9 + }, + { + "name": "Shinkafi", + "id": 10 + }, + { + "name": "Talata Mafara", + "id": 11 + }, + { + "name": "Chafe", + "id": 12 + }, + { + "name": "Zurmi", + "id": 13 + } + ] + } + } + ] \ No newline at end of file diff --git a/src/Zoit/Zoitapp/fixtures/frsc.json b/src/Zoit/Zoitapp/fixtures/frsc.json new file mode 100644 index 0000000..87561b8 --- /dev/null +++ b/src/Zoit/Zoitapp/fixtures/frsc.json @@ -0,0 +1,409 @@ +[ + { + "model": "Zoitapp.frsc", + "pk": "1", + "fields":{ + "command": "rs9.3.abia@frsc.gov.ng", + "address": "No 57, Asaba Street, Behind General Sani Abacha, Recreation Park Amuzukwu, Umuahia", + "email": "rs9.3.abia@frsc.gov.ng", + "phone": " 08077690903", + "id": "1" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "2", + "fields":{ + "command": "rs3.1.adamawa@frsc.gov.ng", + "address": "Numan Road, Jimeta, Yola", + "email": "rs3.1.adamawa@frsc.gov.ng", + "phone": "08077690301", + "id": "2" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "3", + "fields":{ + "command": "rs6.3.akwaibom@frsc.gov.ng", + "address": "7C, Ben Udo Street, Off Nwaniba Road, Uyo", + "email": "rs6.3.akwaibom@frsc.gov.ng", + "phone": " 08077690603", + "id": "3" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "4", + "fields":{ + "command": "rs5.3.anambra@frsc.gov.ng", + "address": "No.98 Enugu – Agidi Road, Awka", + "email": "rs5.3.anambra@frsc.gov.ng", + "phone": "08077690503", + "id":"4" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "5", + "fields":{ + "command": "rs12.1.bauchi@frsc.gov.ng", + "address": "Jos Road, Gidan Mai, Bauchi", + "email": "rs12.1.bauchi@frsc.gov.ng", + "phone": "08077690121", + "id": "5" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "6", + "fields":{ + "command": "rs6.4.bayelsa@frsc.gov.ng", + "address": "No.1 Road Safety Road, Yenagoa", + "email": "rs6.4.bayelsa@frsc.gov.ng", + "phone": "080776906", + "id": "6" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "7", + "fields":{ + "command": "rs4.2.benue@frsc.gov.ng", + "address": "No. 2 Victor Malu Road, New GRA, Makurdi", + "email": "rs4.2.benue@frsc.gov.ng", + "phone": "08077690402", + "id": "7" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "8", + "fields":{ + "command": "rs12.2.borno@frsc.gov.ng", + "address": "Damboa Road, Former SDP Secretariat, Maiduguri", + "email": "rs12.2.borno@frsc.gov.ng", + "phone": "08077690122", + "id": "8" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "9", + "fields":{ + "command": "rs6.2.crossriver@frsc.gov.ng", + "address": "71 Mariam Road, Calabar", + "email": "rs6.2.crossriver@frsc.gov.ng", + "phone": "08077690602", + "id": "9" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "10", + "fields":{ + "command": "rs5.2.delta@frsc.gov.ng", + "address": "Km 4 Asaba – Benin Road, Asaba", + "email": "rs5.2.delta@frsc.gov.ng", + "phone": "08077690502", + "id": "10" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "11", + "fields":{ + "command": "rs9.2.ebonyi@frsc.gov.ng", + "address": "Km 2, Enugu-Abakiliki Road, Abakaliki", + "email": "rs9.2.ebonyi@frsc.gov.ng", + "phone": "08077690902", + "id": "11" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "12", + "fields":{ + "command": "rs5.1.edo@frsc.gov.ng", + "address": "Ikpoba Hill Layout, Off Auchi Road, Benin-City", + "email": "rs5.1.edo@frsc.gov.ng", + "phone": "08077690501", + "id": "12" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "13", + "fields":{ + "command": "rs8.2.ekiti@frsc.gov.ng", + "address": "Ajalosun Street, Akure Road, Ado-Ekiti", + "email": " rs8.2.ekiti@frsc.gov.ng", + "phone": "08077690802", + "id": "13" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "14", + "fields":{ + "command": "rs9.1.enugu@frsc.gov.ng", + "address": "5, Bridgeway Road GRA, Enugu", + "email": "rs9.1.enugu@frsc.gov.ng", + "phone": "08077690901", + "id": "14" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "15", + "fields":{ + "command": " rs7.1.fct@frsc.gov.ng", + "address": "Olusegun Obasanjo Way, Zone 7, Wuse, Abuja", + "email": "rs7.1.fct@frsc.gov.ng", + "phone": "08077690701", + "id": "15" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "16", + "fields":{ + "command": "rs3.2.gombe@frsc.gov.ng ", + "address": "New GRA Gombe", + "email": "rs3.2.gombe@frsc.gov.ng", + "phone": "08077690302", + "id": "16" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "17", + "fields":{ + "command": "rs9.4.imo@frsc.gov.ng", + "address": "Egbu-Awaka Junction, Owerri", + "email": "rs9.4.imo@frsc.gov.ng", + "phone": "08077690904", + "id": "17" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "18", + "fields":{ + "command": "rs1.4.jigawa@frsc.gov.ng", + "address": "Kiyama Road, Dutse", + "email": "rs1.4.jigawa@frsc.gov.ng", + "phone": "08077690014", + "id": "18" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "19", + "fields":{ + "command": "rs1.1.kaduna@frsc.gov.ng", + "address": "12 Ahmadu Bello Way, Kaduna", + "email": "rs1.1.kaduna@frsc.gov.ng", + "phone": "08077690011", + "id": "19" + } + }, + { + "model": "Zoitapp.frsc", + "pk":"20", + "fields":{ + "command": "rs1.2.kano@frsc.gov.ng", + "address": "Lawan Danbazau Road, Kano, off Zaria Road, Kano", + "email": "rs1.2.kano@frsc.gov.ng", + "phone": "08077690012", + "id": "20" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "21", + "fields":{ + "command": "rs1.3.katsina@frsc.gov.ng", + "address": "Murtala Mohammed Way, Sokoto Rima Premises, Katsina", + "email": "rs1.3.katsina@frsc.gov.ng", + "phone": "08077690013", + "id": "21" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "22", + "fields":{ + "command": "rs10.2.kebbi@frsc.gov.ng", + "address": "Haliu Abdul Old Secretariat Complex, Birnin Kebbi", + "email": "rs10.2.kebbi@frsc.gov.ng", + "phone": "08077690102", + "id": "22" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "23", + "fields":{ + "command": "rs8.3.kogi@frsc.gov.ng", + "address": "Oba Michael Olobayo, Lokoja", + "email": "rs8.3.kogi@frsc.gov.ng", + "phone": "08077690803", + "id": "23" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "24", + "fields":{ + "command": "rs8.1.kwara@frsc.gov.ng", + "address": "1 Abdu Kareem Adisa Rd, Fate, Ilorin", + "email": "rs8.1.kwara@frsc.gov.ng", + "phone": "08077690801", + "id": "24" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "25", + "fields":{ + "command": "rs2.1.lagos@frsc.gov.ng", + "address": "Ojodu-Isheri Road, Ikeja, Lagos", + "email": "rs2.1.lagos@frsc.gov.ng", + "phone": "08077690201", + "id": "25" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "26", + "fields":{ + "command": "rs4.3.nasarawa@frsc.gov.ng", + "address": "Makurdi Road,Lafia", + "email": "rs4.3.nasarawa@frsc.gov.ng", + "phone": "08077690403", + "id": "26" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "27", + "fields":{ + "command": "rs7.2.niger@frsc.gov.ng", + "address": "No. 3 Paiko Road, Minna", + "email": "rs7.2.niger@frsc.gov.ng", + "phone": "08077690702", + "id": "27" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "28", + "fields":{ + "command": "rs2.2.ogun@frsc.gov.ng", + "address": "8 Oba Ademola Road, GRA, Ibara, Abeokuta", + "email": "rs2.2.ogun@frsc.gov.ng", + "phone": "08077690202", + "id": "28" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "29", + "fields":{ + "command": "rs11.2.ondo@frsc.gov.ng", + "address": "Akure – Ilesa Highway, Akure", + "email": "rs11.2.ondo@frsc.gov.ng", + "phone": "08077690112", + "id": "29" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "30", + "fields":{ + "command": "rs11.1.osun@frsc.gov.ng", + "address": "Km 4 Gbogan Road, Osogbo", + "email": "rs11.1.osun@frsc.gov.ng", + "phone": "08077690111", + "id": "30" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "31", + "fields":{ + "command": "rs11.3.oyo@frsc.gov.ng", + "address": "Eleyele, Ibadan", + "email": "rs11.3.oyo@frsc.gov.ng", + "phone": "08077690113", + "id": "31" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "32", + "fields":{ + "command": "rs4.1.plateau@frsc.gov.ng", + "address": "Km 9 Zaria Road, Jos", + "email": "rs4.1.plateau@frsc.gov.ng", + "phone": "08077690401", + "id": "32" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "33", + "fields":{ + "command": "rs6.1.rivers@frsc.gov.ng ", + "address": "39 Aba Road, Port-Harcourt", + "email": "rs6.1.rivers@frsc.gov.ng", + "phone": "08077690601", + "id": "33" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "34", + "fields":{ + "command": "rs3.3.taraba@frsc.gov.ng", + "address": "Jalingo, Taraba State", + "email": "rs3.3.taraba@frsc.gov.ng", + "phone": "08077690303", + "id": "34" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "35", + "fields":{ + "command": "rs10.1.sokoto@frsc.gov.ng", + "address": "Ali Akilu Road, Off Sani Abacha Way,Sokoto", + "email": "rs10.1.sokoto@frsc.gov.ng", + "phone": "08077690101", + "id": "35" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "36", + "fields":{ + "command": "rs12.3.yobe@frsc.gov.ng", + "address": "Phase 1 State Secretariat, Maiduguri Road, Damaturu", + "email": "rs12.3.yobe@frsc.gov.ng", + "phone": "08077690123", + "id": "36" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "37", + "fields":{ + "command": "rs10.3.zamfara@frsc.gov.ng", + "address": "Sokoto Road, Gusau", + "email": "rs10.3.zamfara@frsc.gov.ng", + "phone": "08077690103", + "id": "37" + } + } +] \ No newline at end of file diff --git a/src/Zoit/Zoitapp/fixtures/hospital.json b/src/Zoit/Zoitapp/fixtures/hospital.json new file mode 100644 index 0000000..2de1bac --- /dev/null +++ b/src/Zoit/Zoitapp/fixtures/hospital.json @@ -0,0 +1,964 @@ +[ + { + "model": "Zoitapp.hospital", + "pk": "1", + "fields":{ + "name": "Abia State University Teaching Hospital", + "type": "Government", + "address": "Umueze Road Abayi, Aba, Abia State Nigeria", + "email": "info@absuthng.org", + "phone": "0806 500 000", + "mortuary": "available", + "id": "1" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "2", + "fields":{ + "name": "Ekeoma Memorial Hospital", + "type": "Private", + "address": "15 Scotland Crescent, Aba, Abia State Nigeria", + "email": "ekeomamemorialhospital@yahoo.com", + "phone": "08037079432", + "mortuary": "available", + "id": "2" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "3", + "fields":{ + "name": "Federal Medical Centre, Yola", + "type": "Government", + "address": "Lamido Zubairu Road, Yola-Town Bye Pass, Adamawa State, Nigeria", + "email": "info@fmcyola.com.ng", + "phone": "0803 928 1553", + "mortuary": "available", + "id": "3" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "4", + "fields":{ + "name": "New Life Hospital", + "type": "private", + "address": "No 2 Lokuwa Ward, Mubi, Adamawa State Nigeria", + "email": "newlife@yahoo.com", + "phone": "0802 249 5449", + "mortuary": "available", + "id": "4" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "5", + "fields":{ + "name": "University of Uyo Teaching Hospital", + "type": "Government", + "address": "Abak Road, before Ekom Iman junction, Uyo, Akwa-Ibom Nigeria", + "email": "info@uuthuyo.net", + "phone": "0806 011 1771", + "mortuary": "available", + "id": "5" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "6", + "fields":{ + "name": "Samaritan Hospital", + "type": "Private", + "address": "7 Ekong Uko, Eket, Akwa Ibom State Nigeria", + "email": "support@samaritanclinics.com", + "phone": "0806 475 2204", + "mortuary": "available", + "id": "6" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "7", + "fields":{ + "name": "Toronto Hospital Nigeria Ltd", + "type": "Private", + "address": "2 Upper Niger Bridge Road, Onitsha, Anambra Nigeria", + "email": "torontohospital@yahoo.com", + "phone": "0808 170 0700", + "mortuary": "available", + "id": "7" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "8", + "fields":{ + "name": "Nnamdi Azikiwe Teaching Hospital", + "type": "Government", + "address": "Old Oba-Nnewi Road, Nnewi, Anambra State Nigeria", + "email": "info@nau.org", + "phone": "0806 850 6910", + "mortuary": "available", + "id": "8" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "9", + "fields":{ + "name": "Abubakar Tafawa Balewa University Teaching Hospital", + "type": "Government", + "address": "Yelwa Dass Road, Bauchi, Bauchi State Nigeria", + "email": "info@atbuth.org.ng", + "phone": "077543500", + "mortuary": "available", + "id": "9" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "10", + "fields":{ + "name": "Al-Ameen Hospital", + "type": "Private", + "address": "Nassarawa gate, Bauchi, Bauchi State Nigeria", + "email": "info@alameennigeria.com", + "phone": "08166601660", + "mortuary": "none", + "id": "10" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "11", + "fields":{ + "name": "Federal Medical Centre, Yenagoa", + "type": "Government", + "address": "Hospital Road Ovom, Yenegoa, Bayelsa State Nigeria", + "email": "info@fmcyenagoa.org.ng", + "phone": "0906 000 1156", + "mortuary": "available", + "id": "11" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "12", + "fields":{ + "name": "Niger Delta University Teaching Hospital", + "type": "Government", + "address": "Okolobiri, Gbarain-Ekpetiama Yenagoa, Bayelsa State Nigeria", + "email": "info@nduth.org.ng", + "phone": "0806 137 5047", + "mortuary": "available", + "id": "12" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "13", + "fields":{ + "name": "Benue State University Teaching Hospital", + "type": "Government", + "address": "Kilometer 3, Makurdi-Gboko Road, Makurdi, Benue State Nigeria", + "email": "inquiries@bsuth.org.ng", + "phone": "08066841838", + "mortuary": "available", + "id": "13" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "14", + "fields":{ + "name": "Royal Specialist Hospital", + "type": "Government", + "address": "1 Agatu Street, Behind UBA Bank, Otukpo, Benue State Nigeria", + "email": "info@royalspecialisthospital.com", + "phone": "0813 471 2000", + "mortuary": "available", + "id": "14" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "15", + "fields":{ + "name": "University of Maiduguri Teaching Hospital", + "type": "Government", + "address": "Bama Road, Maiduguri, Borno State Nigeria", + "email": "info@umth.org", + "phone": "0909 305 0548", + "mortuary": "available", + "id": "15" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "16", + "fields":{ + "name": "General Hospital", + "type": "Government", + "address": "Chibok Local Government Area, Chibok, Borno Nigeria", + "email": "governmenthospitalchibok@yahoo.com", + "phone": "0803 345 6077", + "mortuary": "available", + "id": "16" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "17", + "fields":{ + "name": "Arubah Specialist Hospital & Diagnostics", + "type": "Private", + "address": "23 Nsefik Eyo Close, Off Fiesta Fries, Ndiden Usang Iso Road, Calabar, Cross River, Nigeria", + "email": "arubah@yahoo.com", + "phone": "0708 543 1093", + "mortuary": "info@arubahspecialisthospital.com", + "id": "17" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "18", + "fields":{ + "name": "Victoria Medical Centre", + "type": "Private", + "address": "No 101, Ndidem Usang Iso/Marian Road, Calabar, Cross River State, Nigeria", + "email": "victorialmedicalcentre@gmail.com", + "phone": "0706 360 3463", + "mortuary": "available", + "id": "18" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "19", + "fields":{ + "name": "Delta State University Teaching Hospital", + "type": "Government", + "address": "Otefe Road, off Benin-Warri Express Way, Oghara, Delta State Nigeria", + "email": "info@delsuth.com.ng", + "phone": "0813 270 7598", + "mortuary": "available", + "id": "19" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "20", + "fields":{ + "name": "Bryants Hospital Limited", + "type": "Private", + "address": "No 13 Eti Street, Off Emebiren, Okumagba, Warri, Delta State, Nigeria", + "email": "bryantshospital@hotmail.com", + "phone": "0706 266 3989", + "mortuary": "available", + "id": "20" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "21", + "fields":{ + "name": "Federal Teaching Hospital", + "type": "Government", + "address": "Aba Road, Opposite Police Barracks, Abakaliki, Ebonyi State, Nigeria", + "email": "fth@yahoo.com", + "phone": "0815 391 7440", + "mortuary": "available", + "id": "21" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "22", + "fields":{ + "name": "Mater Misericordiae Hospital", + "type": "Government/private", + "address": "No 1 Mater Misericordiae Road, Afikpo, Ebonyi State Nigeria", + "email": "mmh@yahoo.com", + "phone": "0703 705 4713", + "mortuary": "available", + "id": "22" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "23", + "fields":{ + "name": "University of Benin Teaching Hospital (UBTH)", + "type": "Government", + "address": "Ugbowo Lagos Road, Benin City, Edo State Nigeria", + "email": "info@ubth.org", + "phone": "0802 253 5595", + "mortuary": "available", + "id": "23" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "24", + "fields":{ + "name": "St Philomena Catholic Hospital", + "type": "Private", + "address": "No 23, Dawson Road off Akpakpava Road, Oredo Benin City, Edo State Nigeria", + "email": "stphilomena@gmailcom", + "phone": "0807 159 3114", + "mortuary": "available", + "id": "24" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "25", + "fields":{ + "name": "Ekiti State University Teaching Hospital", + "type": "Government", + "address": "No 1 Teaching Hospital Road, Ado Ekiti, Ekiti State, Nigeria", + "email": "info@eksuth.org", + "phone": "0803 453 1236", + "mortuary": "available", + "id": "25" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "26", + "fields":{ + "name": "Federal Medical Center Ado-Ekiti", + "type": "Government", + "address": "Fayose Housing Estate, Ilawe Road, Ado-Ekiti, Ekiti State, Nigeria", + "email": "fmcado@hotmail.com", + "phone": "0806 312 4350", + "mortuary": "available", + "id": "26" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "27", + "fields":{ + "name": "University of Nigeria Teaching Hospital", + "type": "Government", + "address": "Ituku-Ozalla, Ituku, Enugu, Nigeria", + "email": "info@unthenugu.com.ng", + "phone": "0708 662 8572", + "mortuary": "available", + "id": "27" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "28", + "fields":{ + "name": "Annunciation Specialist Hospital", + "type": "Private", + "address": "Plot 27, Annunciation Hospital Road, Emene, Enugu State", + "email": "ashemene@yahoo.com", + "phone": "0803 666 3990", + "mortuary": "available", + "id": "28" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "29", + "fields":{ + "name": "National Hospital Abuja", + "type": "Government", + "address": "Plot 132 Central Business District Phase, Garki, FCT, Nigeria", + "email": "contact@nationalhospital.gov.ng", + "phone": "0809 762 752 0012", + "mortuary": "available", + "id": "29" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "30", + "fields":{ + "name": "Wellington Clinics Abuja", + "type": "Private", + "address": "10, Vanern Crescent, off Euphrate Street, Maitama, Abuja FCT Nigeria", + "email": "info@wellingtonclinicsabuja.com", + "phone": "0816 870 4327", + "mortuary": "available", + "id": "30" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "31", + "fields":{ + "name": "Federal Medical Center Gombe", + "type": "Government", + "address": "Ashaka Road, Gombe, Gombe State", + "email": "fmcgombe@hotmail.com", + "phone": "07081456608", + "mortuary": "available", + "id": "31" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "32", + "fields":{ + "name": "General Hospital", + "type": "Government", + "address": "Behind School Of Health Technology, Kaltungo, Gombe State Nigeria", + "email": "gh@yahoo.com", + "phone": "08039922355", + "mortuary": "available", + "id": "32" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "33", + "fields":{ + "name": "Umezuruike Hospital", + "type": "Government", + "address": "Plot 21/22 Umezuruike Street, Owerri, Imo State Nigeria", + "email": "info@umezuruikehospital.com", + "phone": "0813 390 7095", + "mortuary": "available", + "id": "33" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "34", + "fields":{ + "name": "Imo State University Teaching Hospital (IMSUTH)", + "type": "Government", + "address": "Imo State University Teaching Hospital (IMSUTH) Orlu, Owerri, Imo State Nigeria", + "email": "info@imsuth.org", + "phone": "0803 310 7758", + "mortuary": "available", + "id": "34" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "35", + "fields":{ + "name": "General Hospital", + "type": "Government", + "address": "Kafin Hausa Road, Jahun, Dutse, Jigawa Nigeria", + "email": "ghjigawa@yahoo.com", + "phone": "08034229293", + "mortuary": "available", + "id": "35" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "36", + "fields":{ + "name": "Federal Medical Center, Birnin-Kudu", + "type": "Government", + "address": "Birnin-Kudu, Dutse, Jigawa Nigeria", + "email": "fmckudu@hotmail.com", + "phone": "09088977655", + "mortuary": "available", + "id": "36" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "37", + "fields":{ + "name": "Ahmadu Bello University Teaching Hospital, Zaria", + "type": "Government", + "address": "Zaria, Zaria, Kaduna, Nigeria", + "email": "info@abuth.org", + "phone": "08034521768", + "mortuary": "available", + "id": "37" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "38", + "fields":{ + "name": "St. Gerard's Catholic Hospital", + "type": "Private", + "address": "Kachia Road, Kakuri Mekara Kaduna South, Kaduna Nigeria", + "email": "info@stgch.org", + "phone": "0905 396 4050", + "mortuary": "available", + "id": "38" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "39", + "fields":{ + "name": "Aminu Kano Teaching Hospital", + "type": "Government", + "address": "1 Zaria Road, Kano, Kano Nigeria", + "email": "info@akth.org.ng", + "phone": "0706 829 7399", + "mortuary": "available", + "id": "39" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "40", + "fields":{ + "name": "Murtala Mohammed Specialist Hospital", + "type": "Government", + "address": "Mohammed Abdulahi Wase Road, Kano Municipal, Kano Nigeria", + "email": "mmsh@hotmailcom", + "phone": "0803 643 0059", + "mortuary": "available", + "id": "40" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "41", + "fields":{ + "name": "Federal Medical Center, Katsina", + "type": "Government", + "address": "Murtala Muhammad Way, Jibia Bypass, Katsina, Katsina Nigeria", + "email": "fmckatsina@yahoo.com", + "phone": "08077766655", + "mortuary": "available", + "id": "41" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "42", + "fields":{ + "name": "General Hospital Katsina", + "type": "Government", + "address": "Dusima Street, Dutsin Ma, Katsina, Katsina State Nigeria", + "email": "ghkatsina@yahoo.com", + "phone": "08036284025", + "mortuary": "available", + "id": "42" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "43", + "fields":{ + "name": "Federal Medical Centre", + "type": "Government", + "address": "Bukku Barrack Road, Birnin-Kebbi, Kebbi State, Nigeria", + "email": "fmckebbi@hotmail.com", + "phone": "08033053012", + "mortuary": "available", + "id": "43" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "44", + "fields":{ + "name": "Sir Yahaya Memorial Hospital", + "type": "Private", + "address": "Haliru Abdu Road, Birnin Kebbi, Kebbi Nigeria", + "email": "symh@siryahayahospital.com", + "phone": "08035978511", + "mortuary": "not available", + "id": "44" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "45", + "fields":{ + "name": "Federal Medical Centre, Lokoja", + "type": "Government", + "address": "No 1, Salihu Ibrahim Road, Lokoja, Kogi, Nigeria", + "email": "fmclokoja@gmail.com", + "phone": "0803 698 2781", + "mortuary": "available", + "id": "45" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "46", + "fields":{ + "name": "ECWA Hospital", + "type": "Private", + "address": "5 Hospital Road, Egbe, Kogi State Nigeria", + "email": "ecwahospital@gmail.com", + "phone": "0815 740 6024", + "mortuary": "not available", + "id": "46" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "47", + "fields":{ + "name": "University of Ilorin Teaching Hospital", + "type": "Government", + "address": "Umar Saro Road, Ilorin, Kwara State Nigeria", + "email": "info@uith.org", + "phone": "0803 730 1311", + "mortuary": "available", + "id": "47" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "48", + "fields":{ + "name": "Anchormed Hospital", + "type": "Private", + "address": "Niyi Aniyikaiye Street, Tanke, Ilorin, Kwara State Nigeria", + "email": "info@anchormedhospital.com", + "phone": "0803 830 8465", + "mortuary": "not avalable", + "id": "48" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "49", + "fields":{ + "name": "St. Nicholas Hospital", + "type": "Private", + "address": "57 Campbell Street, Lagos Island, Lagos, Nigeria", + "email": "info@saintnicholashospital.com", + "phone": "0803 525 1295", + "mortuary": "available", + "id": "49" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "50", + "fields":{ + "name": "Lagos University Teaching Hospital", + "type": "Government", + "address": "Ishaga Road, Idi-Araba, Lagos Nigeria", + "email": "info@luth.org.ng", + "phone": "0807 059 1472", + "mortuary": "", + "id": "50" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "51", + "fields":{ + "name": "The Chrane Hospital", + "type": "Private", + "address": "Opposite St. Paul's Anglican Church Junction, Lafia, Nasarawa Nigeria", + "email": "thechrane@yahoo.com", + "phone": "0803 450 0221", + "mortuary": "not available", + "id":"51" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "52", + "fields":{ + "name": "Nagari Allah Magai Hospital", + "type": "Private", + "address": "No 10 Abubakar Burha Road, Keffi, Nasarawa State Nigeria", + "email": "namh@yahoo.com", + "phone": "0805 267 7816", + "mortuary": "not available", + "id": "52" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "53", + "fields":{ + "name": "Berith Specialist Hospital", + "type": "Private", + "address": "Plot 16087 Minna Road Kwamba Layout, Suleja, Niger State Nigeria", + "email": "info@berithspecialisthospital.com", + "phone": "0705 869 4388", + "mortuary": "available", + "id": "53" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "54", + "fields":{ + "name": "Federal Medical Centre", + "type": "Government", + "address": "4 Efu Etsu Yisa Ward, Bida, Minna, Niger State, Nigeria", + "email": "fmcminna@hotmail.com", + "phone": "08035951074", + "mortuary": "available", + "id": "54" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "55", + "fields":{ + "name": "Olabisi Onabanjo University Teaching Hospital", + "type": "Government", + "address": "Hospital Road, Sagamu, Ogun State", + "email": "info@oouth.com", + "phone": "08058376736", + "mortuary": "available", + "id": "55" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "56", + "fields":{ + "name": "Federal Medical Centre, Abeokuta", + "type": "Government", + "address": "Olabisi Onabanjo Way, Idi-Aba, Abeokuta, Ogun, Nigeria", + "email": "info@fmcabeokuta.org", + "phone": "0809 594 7913", + "mortuary": "available", + "id": "56" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "57", + "fields":{ + "name": "St. Louis Catholic Specialist Hospital", + "type": "Private", + "address": "1043, Oke Ogun Street, Owo, Ondo State, Nigeria", + "email": "info@stlouishospitalowo.org", + "phone": "0806 696 2724", + "mortuary": "available", + "id": "57" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "58", + "fields":{ + "name": "Federal Medical Centre, Owo", + "type": "Government", + "address": "Adekunle Ajasin Road, Owo, Ondo, Nigeria", + "email": "fmcowo@hotmail.com", + "phone": "0803 509 4545", + "mortuary": "available", + "id": "58" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "59", + "fields":{ + "name": "Obafemi Awolowo University Teaching Hospital", + "type": "Government", + "address": "Ilesa Road, Ile-Ife, Osun State Nigeria", + "email": "info@oauthc.com", + "phone": "0815 209 2751", + "mortuary": "available", + "id": "59" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "60", + "fields":{ + "name": "Lautech Teaching Hospital, Osogbo", + "type": "Government", + "address": "Oshogbo, , Osun Nigeria", + "email": "info@lth.org", + "phone": "07033328615", + "mortuary": "available", + "id": "60" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "61", + "fields":{ + "name": "Bowen University Teaching Hospital", + "type": "Private", + "address": "Oyo - Ogbomoso Road, Ogbomoso, Oyo State Nigeria", + "email": "da_office@buth.edu.ng", + "phone": "0803 410 2152", + "mortuary": "available", + "id": "61" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "62", + "fields":{ + "name": "Lanark Specialist Hospital", + "type": "Private", + "address": "8 Wuraola-Esan Close Off New Adeoyo State Hospital Road, Ring Road Ibadan,Oyo State", + "email": "info@Lanarkhospital.com", + "phone": "0803 364 3654", + "mortuary": "available", + "id": "62" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "63", + "fields":{ + "name": "Jos University Teaching Hospital", + "type": "Government", + "address": "Jos University Teaching Hospital, Lamingo, Jos, Plateau State Nigeria", + "email": "info@juth.org", + "phone": "073454736", + "mortuary": "available", + "id": "63" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "64", + "fields":{ + "name": "Chilas Specialist Hospital", + "type": "Private", + "address": "20, Zaria Bye Pass, Jos, Plateau State Nigeria", + "email": "chillasspecialist@yahoo.com", + "phone": "0803 320 0635", + "mortuary": "available", + "id": "64" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "65", + "fields":{ + "name": "First Rivers Hospital", + "type": "Private", + "address": "7/9 Old Aba Road, Rumuomasi, Port Harcourt", + "email": "info@firstrivers.com", + "phone": "0803 747 2138", + "mortuary": "available", + "id": "65" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "66", + "fields":{ + "name": "St Catherines Specialist Hospitals", + "type": "Private", + "address": "No 14 Trans Woji Road, Woji, Port Harcourt, Rivers State, Nigeria", + "email": "info@stcatherineshospital.net", + "phone": "0908 783 0739", + "mortuary": "available", + "id": "66" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "67", + "fields":{ + "name": "Usman Dan Fodio University Teaching Hospital", + "type": "Government", + "address": "1 Garba Nadama Road, Sokoto, Sokoto State", + "email": "info@uduth.org", + "phone": "0703 650 5608", + "mortuary": "available", + "id": "67" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "68", + "fields":{ + "name": "Murtala Muhammed Specialist Hospital", + "type": "Government", + "address": "131, Sultan Abubakar Road, Sokoto, Sokoto State Nigeria", + "email": "mmsh@gmail.com", + "phone": "0807 179 2222", + "mortuary": "available", + "id": "68" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "69", + "fields":{ + "name": "General Hospital Bali", + "type": "Government", + "address": "Takum Road Bali, Bali, Taraba State, Nigeria", + "email": "ghbali@yahoo.com", + "phone": "08083491398", + "mortuary": "available", + "id": "69" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "70", + "fields":{ + "name": "Federal Medical Centre", + "type": "Private", + "address": "57 Pound Road, Jalingo, Taraba State Nigeria", + "email": "fmcjalingo@hotmail.com", + "phone": "0802 479 1687", + "mortuary": "available", + "id": "70" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "71", + "fields":{ + "name": "General Sani Abacha Specialist Hospital", + "type": "Government", + "address": "Km 3 Gujiba Road, Damaturu, Yobe State Nigeria", + "email": "gsashospital@yahoo.com", + "phone": "0803 680 3272", + "mortuary": "available", + "id": "71" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "72", + "fields":{ + "name": "Ultra Modern Hospital", + "type": "Private", + "address": "Damaturu-Biu Road, Damaturu, Yobe State Nigeria", + "email": "ultramodernhospitaldamaturu200@gmail.com", + "phone": "08037079432", + "mortuary": "available", + "id": "72" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "73", + "fields":{ + "name": "Rama Hospital", + "type": "Private", + "address": "15 Ahmadu Bello Way, Gasau, Zamfara State, Nigeria", + "email": "remahospital@yahoo.com", + "phone": "08036919425", + "mortuary": "available", + "id": "73" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "74", + "fields":{ + "name": "Arewa Hospital", + "type": "Private", + "address": "5 Sani Abacha Way, Gasau, Zamfara Nigeria", + "email": "arewahospital@gmail.com", + "phone": "08065745495", + "mortuary": "available", + "id": "74" + } + } +] \ No newline at end of file diff --git a/src/Zoit/Zoitapp/fixtures/hotel.json b/src/Zoit/Zoitapp/fixtures/hotel.json new file mode 100644 index 0000000..ab3af76 --- /dev/null +++ b/src/Zoit/Zoitapp/fixtures/hotel.json @@ -0,0 +1,794 @@ +[ + { + "model": "Zoitapp.hotel", + "pk": "1", + "fields":{ + "name": "Hotel De La Paix", + "address": "60 Ekenna Avenue and 38 Brass Street, GRA Aba, Abia State Nigeria", + "email": "info@hoteldelapaixaba.com", + "phone": "08059154035", + "id": "1" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "2", + "fields":{ + "name": "Benidon Hotels and Resort", + "address": "14-16 Immaculate Avenue, Aba, Abia State Nigeria", + "email": "info@hotelbenidon.com", + "phone": "+234(0)7071148468", + "id": "2" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "3", + "fields":{ + "name": "Migela Royal Hotel", + "address": "1 Chouchi Road, Kofare, Jimeta Yola, Adamawa State", + "email": "migelaroyal@hotmail.com", + "phone": "08065111211", + "id": "3" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "4", + "fields":{ + "name": "Bagale Motels Limited", + "address": "Army Baracks Road, Yola, Adamawa State Nigeria", + "email": "bagale@yahoo.com", + "phone": "08022554505", + "id": "4" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "5", + "fields":{ + "name": "Dolly Hills Hotel", + "address": "32 Dr Ngozi Agbasimalo Road, Onitsha North, Anambra Nigeria", + "email": "dollyhillshotel@yahoo.com", + "phone": "0703 451 3661", + "id": "5" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "6", + "fields":{ + "name": "Chunique Royal Hotel & Suites", + "address": "No 14 Afam Ofordeme Street Umudim, Okpunoegbu Nnewi, Anambra State Nigeria", + "email": "info@chuniqueroyalhotel.com", + "phone": "0907 276 9174", + "id": "6" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "7", + "fields":{ + "name": "Daaty Hotel", + "address": "Plot 4 D- Line, Ewet Housing Estate, By AKIPOC, Uyo, Akwa Ibom Nigeria", + "email": "info@daatyhotel.com", + "phone": "0803 158 2765", + "id": "7" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "8", + "fields":{ + "name": "Darrels Hotel Limited", + "address": "18 Marina Road, Eket, Akwa Ibom State Nigeria", + "email": "info@darrelshotel.com", + "phone": "0803 533 0784", + "id": "8" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "9", + "fields":{ + "name": "Royal Abbey Suites", + "address": "Justice Quarters, Murtala International Airport Road, Bauchi, Bauchi State Nigeria", + "email": "royalabbey@gnail.com", + "phone": "07084101951", + "id": "9" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "10", + "fields":{ + "name": "Bauchi State Hotel", + "address": "Dass road, GRA, Bauchi, Bauchi State Nigeria", + "email": "bsh@hotel.com", + "phone": "077542156", + "id": "10" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "11", + "fields":{ + "name": "Atlantic Choice Hotel", + "address": "Swali Road, Yenagoa, Bayelsa", + "email": "atlanticchoicehotel@gmail.com", + "phone": "0705 438 1999", + "id": "11" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "12", + "fields":{ + "name": "El-Barbara Hotels", + "address": "39/41, Azikoro Road, Off Mbiama Yenagoa Road, Yenagoa, Bayelsa State Nigeria", + "email": "info@elbarbarahotel.com", + "phone": "0701 034 5444", + "id": "12" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "13", + "fields":{ + "name": "Apa Gate Hotel", + "address": "Opp Jesus College,, Otukpo, Benue State, Nigeria", + "email": "apagatehotels@yahoo.com", + "phone": "0813 183 4325", + "id": "13" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "14", + "fields":{ + "name": "Kings Inn", + "address": "30 Damjor Street, Off Gyado Hospital Road, GRA Gboko, Benue State Nigeria", + "email": "kings.inn@dr.com", + "phone": "08100317663", + "id": "14" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "15", + "fields":{ + "name": "Lake Chad Hotel", + "address": "Sir Kashiru Ibrahim Road, Maiduguri, Borno", + "email": "07062324531", + "phone": "lch@gmail.com", + "id": "15" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "16", + "fields":{ + "name": "Grand Pinnacle Hotel", + "address": "Jimna Road, Bulumkutu, Maiduguri, Borno State Nigeria", + "email": "pinnacle@hotmail.com", + "phone": "08038921433", + "id": "16" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "17", + "fields":{ + "name": "Transcorp Hotels Calabar", + "address": "10 Murtala Mohammed Highway, Calabar, Cross River State, Nigeria", + "email": "0806 690 0009", + "phone": "info.calabar@transcorphotels.com", + "id": "17" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "18", + "fields":{ + "name": "Tinapa Lakeside Hotel", + "address": "Tinapa Free Zone & Resort, Calabar-Ikang Road, Calabar, Cross River State, Nigeria", + "email": "reservations@tinapalakesidehotel.com", + "phone": "0802 648 3929", + "id": "18" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "19", + "fields":{ + "name": "Grand Hotel Asaba", + "address": "112, Nnebisi Road, By Capable Point, Delta State, Nigeria", + "email": "bookings@grandhotelasaba.com", + "phone": "0813 885 2239", + "id": "19" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "20", + "fields":{ + "name": "Hotel Benizia", + "address": "1-4, Kingsley Emu Street, Behind Fine Homes, Asaba, Delta State, Nigeria", + "email": "hotelbenizia@yahoo.com", + "phone": "0818 706 3332", + "id": "20" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "21", + "fields":{ + "name": "Hotel Geneza", + "address": "19, Onwe Road, Abakiliki, Ebonyi State, Nigeria", + "email": "info@hotelgeneza.com", + "phone": "0810 878 6632", + "id": "21" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "22", + "fields":{ + "name": "Osborn La Palm Royal Resort Ltd", + "address": "1, Osborn Avenue, Off Kpirikpiri Road, Mile 50, Abakiliki, Ebonyi State, Nigeria", + "email": "info@osbornlapalm.net", + "phone": "0803 216 1681", + "id": "22" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "23", + "fields":{ + "name": "Boston Hotel", + "address": "1 Oguigo Avenue Along Adeyan Street off Ihama Road, GRA Benin City, Edo Nigeria", + "email": "concierge@bostonhotelng.com", + "phone": "0805 406 9515", + "id": "23" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "24", + "fields":{ + "name": "MindCast Hotels", + "address": "College Road, Ujoelen Ekpoma, Edo State Nigeria", + "email": "mindcast@hotmail.com", + "phone": "0803 501 1081", + "id": "24" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "25", + "fields":{ + "name": "De Jewels Apartment", + "address": "2 Olatunji Street Immigration along Federal Poly Road, Ado-Ekiti, Ekiti Nigeria", + "email": "info@dejewelsapartments.com", + "phone": "0803 861 1586", + "id": "25" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "26", + "fields":{ + "name": "Delight Hotel & Suites", + "address": "Ilawe Road, Ado-Ekiti, Ekiti Nigeria", + "email": "info@delighthotel.com.ng", + "phone": "0815 503 0636", + "id": "26" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "27", + "fields":{ + "name": "Golden Royale", + "address": "10, Bisalla Road, Independent Layout, Enugu, Enugu, Nigeria", + "email": "info@goldenroyalehotels.com", + "phone": "0809 036 5223", + "id": "27" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "28", + "fields":{ + "name": "Neocourts", + "address": "Plot 3,5 Byron Onyeama Close, New Haven, Enugu State, Nigeria", + "email": "0808 763 4406", + "phone": "info@neocourts.com", + "id": "28" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "29", + "fields":{ + "name": "Transcorp Hilton Abuja ", + "address": "1 Aguiyi Ironsi Street, Maitama Abuja, FCT Nigeria", + "email": "hilton.abuja@hilton.com", + "phone": "0803 901 3000", + "id": "29" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "30", + "fields":{ + "name": "Bolton White Hotels", + "address": "Plot 7, Gwandu Street, Area 11, Garki, Abuja, FCT", + "email": "info@boltonwhitehotel.com", + "phone": "+234(0)92200222", + "id": "30" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "31", + "fields":{ + "name": "Custodian Hotel Limited", + "address": "Opp. Sub-Treasury Office Along Bauchi Road, Gombe, Gombe State", + "email": "info@custodianhotel.com.ng", + "phone": "08107412344", + "id": "31" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "32", + "fields":{ + "name": "Zuma Royal Suite", + "address": "72 Jonathan Goodluck Road, Federal Lowcost, Gombe, Gombe State", + "email": "zumaroyal@gmail.com", + "phone": "08038740561", + "id": "32" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "33", + "fields":{ + "name": "Mavis Suites", + "address": "No. 1/3 Nkwerre Street, Works Layout, Off (IMSU) Junction, Owerri, Imo State Nigeria", + "email": "mavissuite@yahoo.com", + "phone": "0703 089 2297", + "id": "33" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "34", + "fields":{ + "name": "Rockview Hotel", + "address": "Plot Cp/2-Cp/5, Government Station Layout, Owerri, Imo State Nigeria", + "email": "reservationowerri@rockviewhotels.com", + "phone": " 0701 064 5842", + "id": "34" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "35", + "fields":{ + "name": "Jigawa Hotels Ltd", + "address": "Kiyawa Road, Dutse, Jigawa Nigeria", + "email": "jigawahotels@yahoo.com", + "phone": "064-721470", + "id": "35" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "36", + "fields":{ + "name": "C N Morning Star Hotel Nigeria Ltd", + "address": "Rafin Sanyi Area Yadi Qtrs, Dutse, Jigawa Nigeria", + "email": "csmorningstar@hotmail.com", + "phone": "08036234107", + "id": "36" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "37", + "fields":{ + "name": "Elvic Hotel & Suites Ltd", + "address": "25/26 Jaafar Road Bagado, Kamazou, Kaduna, Kaduna State Nigeria", + "email": "elvichotelltd@gmail.com", + "phone": "0706 461 3603", + "id": "37" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "38", + "fields":{ + "name": "Saminaka Holiday Resort", + "address": "Saminaka Holiday Resort, Kaduna South, Kaduna Nigeria", + "email": "saholresort@gmail.com", + "phone": "0809 674 7676", + "id": "38" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "39", + "fields":{ + "name": "Royal Tropicana Hotels Ltd", + "address": "17/19, Niger Street, Kano City, Kano State, Nigeria", + "email": "info@royaltropicana.com", + "phone": "0806 515 9990,", + "id": "39" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "40", + "fields":{ + "name": "Prince Hotel", + "address": "Tamandu Road, Nassarawa GRA, Kano State, Nigeria", + "email": "info@princehotelng.com", + "phone": "0809 769 7979", + "id": "40" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "41", + "fields":{ + "name": "New Katsina Motel", + "address": "1 Muhammed Bashir Road, G.R.A, Katsina, Katsina State Nigeria", + "email": "nkmotel@yahoo.com", + "phone": "08070711278", + "id": "41" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "42", + "fields":{ + "name": "Lifaya Palace Hotel", + "address": "Off IBB Way, Kano Road, Batagarawa, Katsina State Nigeria", + "email": "lifaya@yahoo.com", + "phone": "070 3030 7752", + "id": "42" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "43", + "fields":{ + "name": "Grand Fishing Hotel", + "address": "Sokoto Road, Argungu, Birnin Kebbi, Kebbi Nigeria", + "email": "grandfishing@yahoo.com", + "phone": "060-550547", + "id": "43" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "44", + "fields":{ + "name": "Zinari Hotels & Resort", + "address": "Birnin Kebbi, Birnin Kebbi, Kebbi Nigeria", + "email": "zinarihotels@hotmail.com", + "phone": "08068322663", + "id": "44" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "45", + "fields":{ + "name": "Wisdom Home Hotels", + "address": "Anyigba-Ankpa Road Opposite Kogi State University, Beside Skye Bank, Anyigba, Kogi State Nigeria", + "email": "enquires@wisdomhomehotels.com", + "phone": "0805 5891 768", + "id": "45" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "46", + "fields":{ + "name": "Edgedrive Hotel", + "address": "23 Kunama Street, GRA, Lokoja, Kogi state, Nigeria", + "email": "edgedrive@yahoo.com", + "phone": "08132867025", + "id": "46" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "47", + "fields":{ + "name": "E-Phoenix Hotel", + "address": "45, Aderemi Adeleye Street, Opp. Federal Secretariat, GRA, Ilorin, Kwara State Nigeria", + "email": "booking@ephoenixhotel.com", + "phone": "0809 774 1584", + "id": "47" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "48", + "fields":{ + "name": "Princess Luxury Hotel", + "address": "Plot 31, Pipeline Road, Ilorin, Kwara State Nigeria", + "email": "info@princessluxuryhotels.com", + "phone": "08163962419", + "id": "48" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "49", + "fields":{ + "name": "Golden Tulip", + "address": "Mile 2, Festac Town Amuwo Odofin, Lagos Nigeria", + "email": "info@goldentulipfestaclagos.com", + "phone": "08003580846", + "id": "49" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "50", + "fields":{ + "name": "Eko Hotel & Suites", + "address": "1415, Adetokunbo Ademola Street, Victoria Island Eti Osa, Lagos Nigeria", + "email": "reservations@ekohotels.com", + "phone": "01 277 2725", + "id": "50" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "51", + "fields":{ + "name": "Manyi Royal Suite", + "address": "4 Jos Road, Lafia, Nasarawa Nigeria", + "email": "manyiroyahsuite@yahoo.com", + "phone": "08032584343", + "id": "51" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "52", + "fields":{ + "name": "Ta'al Conference Hotel", + "address": "Stadium Road, Jos Road, Lafia, Nasarawa Nigeria", + "email": "taalhotel@yahoo.com", + "phone": "08021290436", + "id": "52" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "53", + "fields":{ + "name": "Nasfah Hotel", + "address": "Old Alheri Road, Minna, Niger State", + "email": "nasfah@yahoo.com", + "phone": "08188077048", + "id": "53" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "54", + "fields":{ + "name": "Niger Hotel", + "address": "93 Bale Street, Ajegunle, Apapa", + "email": "nigerhotel@yahoo.com", + "phone": "08183517793", + "id": "54" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "55", + "fields":{ + "name": "Quarry Imperial", + "address": "No 52, Quarry Road, Abeokuta, Ogun Nigeria", + "email": "info@quarryimperialhotel", + "phone": "0816 957 4982", + "id": "55" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "56", + "fields":{ + "name": "Park Inn by Radisson Hotel", + "address": "1, Ibrahim Babangida Boulevard Kuto Roundabout, Abeokuta, Ogun State Nigeria", + "email": "info.abeokuta@rezidorparkinn.com", + "phone": "0813 986 0020", + "id": "56" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "57", + "fields":{ + "name": "Sunview Hotel", + "address": "8, El Shaddai Road, GRA Alagbaka Akure, Ondo Nigeria", + "email": "sunviewhotelakure@yahoo.com", + "phone": "0809 999 9164", + "id": "57" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "58", + "fields":{ + "name": "Flourish Hotel and Suites", + "address": "Plot 14, Block 41, Along WAEC Office Road, Alagbaka Akure, Ondo Nigeria", + "email": "flourishhotelonline@yahoo.com", + "phone": "0816 183 5703", + "id": "58" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "59", + "fields":{ + "name": "Crownfit Hotels & Suites", + "address": "Ekusa road, Okuku, Osun SNigeria", + "email": "enquiries@crownfithotels.com", + "phone": "08051037866", + "id": "59" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "60", + "fields":{ + "name": "Royal Park International Hotel & Resort", + "address": "Oba Oladele Olashore Way, Iloko - Ilesha, Osun State", + "email": "dappivsaj@gmail.com", + "phone": "0807 120 0017", + "id": "60" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "61", + "fields":{ + "name": "La Maison Hotel and Suites", + "address": "23, Jibowu Street, Iyaganku GRA, Ibadan, Oyo State, Nigeria", + "email": "info@lamaisonhotel-ng.com", + "phone": "0816 068 4669", + "id": "61" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "62", + "fields":{ + "name": "Euro Lounge and Suites", + "address": "30, Alafin Avenue, Oluyole Estate Ring Road, Ibadan, Oyo State, Nigeria", + "email": "info@euroloungeandsuites.com", + "phone": "0814 292 1055", + "id": "62" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "63", + "fields":{ + "name": "Maria�s Lodge", + "address": "1 Grey Garden Off Tafawa Balewa Street, Jos, Plateau State Nigeria", + "email": "reservations@mariaslodge.com", + "phone": "08134088789", + "id": "63" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "64", + "fields":{ + "name": "Sharna Place", + "address": "9 Sharna Close, Near NNPC Mega Station, Bauchi Road, Jos, Plateau State Nigeria", + "email": "booking@sharnaplace.com", + "phone": "07098813868", + "id": "64" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "65", + "fields":{ + "name": "Echelon Heights Hotel", + "address": "No 73 Ken Saro-Wiwa Road (former Stadium Road), Port Harcourt, Rivers State Nigeria", + "email": "reservations@echelonheights.com", + "phone": "0909 163 0932", + "id": "65" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "66", + "fields":{ + "name": "Bougainvillea Hotel", + "address": "Plot F / 1A Abacha Road, GRA, Phase 3, Port Harcourt, Rivers State", + "email": "Admin@bougainvilleahotel.com", + "phone": "0803 051 2229", + "id": "66" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "67", + "fields":{ + "name": "Elim Top Suites", + "address": "GRA, Ibi Road, Wukari, Jalingo, Taraba", + "email": "info@eelimtopsuites.com", + "phone": "0816 068 4669", + "id": "67" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "68", + "fields":{ + "name": "Eldavido Hotels Limited", + "address": "Mayo Renewo Crescent, Jalingo, Taraba State, Nigeria", + "email": "info@eldavidohotels.com", + "phone": "08012106973", + "id": "68" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "69", + "fields":{ + "name": "Hayas Guest Inn", + "address": "Cross Road,, Damaturu, Yobe State", + "email": "hayasguestinn@yahoo.com", + "phone": "078-522700", + "id": "69" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "70", + "fields":{ + "name": "Motel Benin Plaza", + "address": "Damaturu, , Yobe State, Nigeria", + "email": "mbplaza@yahoo.com", + "phone": "0814 292 1055", + "id": "70" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "71", + "fields":{ + "name": "Donatus Travellers Guest Inn", + "address": "Anguwar Gwaza Road, Gasau, Zamfara Nigeria", + "email": "dtgi@hotmail.com", + "phone": "08034530410", + "id": "71" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "72", + "fields":{ + "name": "Bliss Guxury Guest Inn", + "address": "Janyau Gabbas Road, Gusau, Zamfara Nigeria", + "email": "blissguxury@yahoo.com", + "phone": "08139097450", + "id": "72" + } + } +] \ No newline at end of file diff --git a/src/Zoit/Zoitapp/fixtures/lga.json b/src/Zoit/Zoitapp/fixtures/lga.json new file mode 100644 index 0000000..c98116e --- /dev/null +++ b/src/Zoit/Zoitapp/fixtures/lga.json @@ -0,0 +1,862 @@ +[ + { + "model": "Zoitapp.lga", + "pk": "1", + "fields":{ + "name": "Aba North", + "zone": "South-East", + "Stateid": "1", + "id": "1" + } + }, + { + "model": "Zoitapp.lga", + "pk": "2", + "fields":{ + "name":"Aba South", + "zone":"South-East", + "Stateid": "1", + "id": "2" + } + }, + { + "model": "Zoitapp.lga", + "pk": "3", + "fields":{ + "name": "Arochukwu", + "zone": "South-East", + "Stateid": "1", + "id": "3" + } + }, + { + "model": "Zoitapp.lga", + "pk": "4", + "fields":{ + "name":"Bende", + "zone":"South-East", + "Stateid": "1", + "id": "4" + } + }, + { + "model": "Zoitapp.lga", + "pk": "5", + "fields":{ + "name": "Ikwuano", + "zone": "South-East", + "Stateid": "1", + "id": "5" + } + }, + { + "model": "Zoitapp.lga", + "pk": "6", + "fields":{ + "name":"Isiala Ngwa North", + "zone":"South-East", + "Stateid": "1", + "id": "6" + } + }, + { + "model": "Zoitapp.lga", + "pk": "7", + "fields":{ + "name": "Isiala Ngwa South", + "zone": "South-East", + "Stateid": "1", + "id": "7" + } + }, + { + "model": "Zoitapp.lga", + "pk": "8", + "fields":{ + "name":"Isuikwuato", + "zone":"South-East", + "Stateid": "1", + "id": "8" + } + }, + { + "model": "Zoitapp.lga", + "pk": "9", + "fields":{ + "name": "Obi Ngwa", + "zone": "South-East", + "Stateid": "1", + "id": "9" + } + }, + { + "model": "Zoitapp.lga", + "pk": "10", + "fields":{ + "name":"Ohafia", + "zone":"South-East", + "Stateid": "1", + "id": "10" + } + }, + { + "model": "Zoitapp.lga", + "pk": "11", + "fields":{ + "name": "Osisioma", + "zone": "South-East", + "Stateid": "1", + "id": "11" + } + }, + { + "model": "Zoitapp.lga", + "pk": "12", + "fields":{ + "name":"Ugwunagbo", + "zone":"South-East", + "Stateid": "1", + "id": "12" + } + }, + { + "model": "Zoitapp.lga", + "pk": "13", + "fields":{ + "name": "Ukwa East", + "zone": "South-East", + "Stateid": "1", + "id": "13" + } + }, + { + "model": "Zoitapp.lga", + "pk": "14", + "fields":{ + "name":"Ukwa West", + "zone":"South-East", + "Stateid": "1", + "id": "14" + } + }, + { + "model": "Zoitapp.lga", + "pk": "15", + "fields":{ + "name": "Umuahia North", + "zone": "South-East", + "Stateid": "1", + "id": "15" + } + }, + { + "model": "Zoitapp.lga", + "pk": "16", + "fields":{ + "name":"Umuahia South", + "zone":"South-East", + "Stateid": "1", + "id": "16" + } + }, + { + "model": "Zoitapp.lga", + "pk": "17", + "fields":{ + "name": "Umu Nneochi", + "zone": "South-East", + "Stateid": "1", + "id": "17" + } + }, + { + "model": "Zoitapp.lga", + "pk": "18", + "fields":{ + "name":"Fufure", + "zone":"Nort-East", + "Stateid": "2", + "id": "18" + } + }, + { + "model": "Zoitapp.lga", + "pk": "19", + "fields":{ + "name": "Ganye", + "zone": "Nort-East", + "Stateid": "2", + "id": "1" + } + }, + { + "model": "Zoitapp.lga", + "pk": "20", + "fields":{ + "name": "Gayuk", + "zone": "Nort-East", + "Stateid": "2", + "id": 3 + } + }, + { + "model": "Zoitapp.lga", + "pk": "21", + "fields":{ + "name": "Gombi", + "zone": "Nort-East", + "Stateid": "2", + "id": 4 + } + }, + { + "model": "Zoitapp.lga", + "pk": "22", + "fields":{ + "name": "Grie", + "zone": "Nort-East", + "Stateid": "2", + "id": 5 + } + }, + { + "model": "Zoitapp.lga", + "pk": "23", + "fields":{ + "name": "Hong", + "zone": "Nort-East", + "Stateid": "2", + "id": 6 + } + }, + { + "model": "Zoitapp.lga", + "pk": "24", + "fields":{ + "name": "Jada", + "zone": "Nort-East", + "Stateid": "2", + "id": 7 + } + }, + { + "model": "Zoitapp.lga", + "pk": "25", + "fields":{ + "name": "Lamurde", + "zone": "Nort-East", + "Stateid": "2", + "id": 8 + } + }, + { + "model": "Zoitapp.lga", + "pk": "26", + "fields":{ + "name": "Maiha", + "zone": "Nort-East", + "Stateid": "2", + "id": 10 + } + }, + { + "model": "Zoitapp.lga", + "pk": "27", + "fields":{ + "name": "Mayo Belwa", + "zone": "Nort-East", + "Stateid": "2", + "id": 11 + } + }, + { + "model": "Zoitapp.lga", + "pk": "28", + "fields":{ + "name": "Michika", + "zone": "Nort-East", + "Stateid": "2", + "id": 12 + } + }, + { + "model": "Zoitapp.lga", + "pk": "29", + "fields":{ + "name": "Mubi North", + "zone": "Nort-East", + "Stateid": "2", + "id": 13 + } + }, + { + "model": "Zoitapp.lga", + "pk": "30", + "fields":{ + "name": "Mubi South", + "zone": "Nort-East", + "Stateid": "2", + "id": 14 + } + }, + { + "model": "Zoitapp.lga", + "pk": "31", + "fields":{ + "name": "Numan", + "zone": "Nort-East", + "Stateid": "2", + "id": 15 + } + }, + { + "model": "Zoitapp.lga", + "pk": "32", + "fields":{ + "name": "Shelleng", + "zone": "Nort-East", + "Stateid": "2", + "id": 16 + } + }, + { + "model": "Zoitapp.lga", + "pk": "33", + "fields":{ + "name": "Song", + "zone": "Nort-East", + "Stateid": "2", + "id": 17 + } + }, + { + "model": "Zoitapp.lga", + "pk": "34", + "fields":{ + "name": "Toungo", + "zone": "Nort-East", + "Stateid": "2", + "id": 18 + } + }, + { + "model": "Zoitapp.lga", + "pk": "35", + "fields":{ + "name": "Yola North", + "zone": "Nort-East", + "Stateid": "2", + "id": 19 + } + }, + { + "model": "Zoitapp.lga", + "pk": "36", + "fields":{ + "name": "Yola South", + "zone": "Nort-East", + "Stateid": "2", + "id": 20 + } + }, + { + "model": "Zoitapp.lga", + "pk": "36", + "fields":{ + "name": "Eastern Obolo", + "zone": "South-South", + "Stateid": "3", + "id": 1 + } + }, + { + "model": "Zoitapp.lga", + "pk": "37", + "fields":{ + "name": "Eket", + "zone": "South-South", + "Stateid": "3", + "id": 2 + } + }, + { + "model": "Zoitapp.lga", + "pk": "37", + "fields":{ + "name": "Esit Eket", + "zone": "South-South", + "Stateid": "3", + "id": 3 + } + }, + { + "model": "Zoitapp.lga", + "pk": "38", + "fields":{ + "name": "Essien Udim", + "zone": "South-South", + "Stateid": "3", + "id": "4" + } + }, + { + "model": "Zoitapp.lga", + "pk": "39", + "fields":{ + "name": "Etim Ekpo", + "zone": "South-South", + "Stateid": "3", + "id": 5 + } + }, + { + "model": "Zoitapp.lga", + "pk": "40", + "fields":{ + "name": "Etinan", + "zone": "South-South", + "Stateid": "3", + "id": 6 + } + }, + { + "model": "Zoitapp.lga", + "pk": "41", + "fields":{ + "name": "Ibeno", + "zone": "South-South", + "Stateid": "3", + "id": 7 + } + }, + { + "model": "Zoitapp.lga", + "pk": "42", + "fields":{ + "name": "Ibesikpo Asutan", + "zone": "South-South", + "Stateid": "3", + "id": 8 + } + }, + { + "model": "Zoitapp.lga", + "pk": "43", + "fields":{ + "name": "Ibiono-Ibom", + "zone": "South-South", + "Stateid": "3", + "id": 9 + } + }, + { + "model": "Zoitapp.lga", + "pk": "44", + "fields":{ + "name": "Ika", + "zone": "South-South", + "Stateid": "3", + "id": 10 + } + }, + { + "model": "Zoitapp.lga", + "pk": "45", + "fields":{ + "name": "Ikono", + "zone": "South-South", + "Stateid": "3", + "id": 11 + } + }, + { + "model": "Zoitapp.lga", + "pk": "46", + "fields":{ + "name": "Ikot Abasi", + "zone": "South-South", + "Stateid": "3", + "id": 12 + } + }, + { + "model": "Zoitapp.lga", + "pk": "47", + "fields":{ + "name": "Ikot Ekpene", + "zone": "South-South", + "Stateid": "3", + "id": 13 + } + }, + { + "model": "Zoitapp.lga", + "pk": "48", + "fields":{ + "name": "Ini", + "zone": "South-South", + "Stateid": "3", + "id": 14 + } + }, + { + "model": "Zoitapp.lga", + "pk": "49", + "fields":{ + "name": "Itu", + "zone": "South-South", + "Stateid": "3", + "id": 15 + } + }, + { + "model": "Zoitapp.lga", + "pk": "50", + "fields":{ + "name": "Nbo", + "zone": "South-South", + "Stateid": "3", + "id": 16 + } + }, + { + "model": "Zoitapp.lga", + "pk": "51", + "fields":{ + "name": "Mkpat-Enin", + "zone": "South-South", + "Stateid": "3", + "id": 17 + } + }, + { + "model": "Zoitapp.lga", + "pk": "52", + "fields":{ + "name": "Nsit-Atai", + "zone": "South-South", + "Stateid": "3", + "id": 18 + } + }, + { + "model": "Zoitapp.lga", + "pk": "53", + "fields":{ + "name": "Nsit-Ibom", + "zone": "South-South", + "Stateid": "3", + "id": 19 + } + }, + { + "model": "Zoitapp.lga", + "pk": "54", + "fields":{ + "name": "Nsit-Ubium", + "zone": "South-South", + "Stateid": "3", + "id": 20 + } + }, + { + "model": "Zoitapp.lga", + "pk": "55", + "fields":{ + "name": "Obot Akara", + "zone": "South-South", + "Stateid": "3", + "id": 21 + } + }, + { + "model": "Zoitapp.lga", + "pk": "56", + "fields":{ + "name": "Okobo", + "zone": "South-South", + "Stateid": "3", + "id": 22 + } + }, + { + "model": "Zoitapp.lga", + "pk": "57", + "fields":{ + "name": "Onn", + "zone": "South-South", + "Stateid": "3", + "id": 23 + } + }, + { + "model": "Zoitapp.lga", + "pk": "58", + "fields":{ + "name": "Oron", + "zone": "South-South", + "Stateid": "3", + "id": 24 + } + }, + { + "model": "Zoitapp.lga", + "pk": "59", + "fields":{ + "name": "Oruk-Anam", + "zone": "South-South", + "Stateid": "3", + "id": 25 + } + }, + { + "model": "Zoitapp.lga", + "pk": "60", + "fields":{ + "name": "Udung-Uko", + "zone": "South-South", + "Stateid": "3", + "id": 26 + } + }, + { + "model": "Zoitapp.lga", + "pk": "61", + "fields":{ + "name": "Ukanfun", + "zone": "South-South", + "Stateid": "3", + "id": 27 + } + }, + { + "model": "Zoitapp.lga", + "pk": "62", + "fields":{ + "name": "Uruan", + "zone": "South-South", + "Stateid": "3", + "id": 28 + } + }, + { + "model": "Zoitapp.lga", + "pk": "63", + "fields":{ + "name": "Urue-Offong/Oruko", + "zone": "South-South", + "Stateid": "3", + "id": 29 + } + }, + { + "model": "Zoitapp.lga", + "pk": "64", + "fields":{ + "name": "Uyo", + "zone": "South-South", + "Stateid": "3", + "id": 30 + } + }, + { + "model": "Zoitapp.lga", + "pk": "65", + "fields":{ + "name": "Anambra East", + "zone": "South-East", + "Stateid": "4", + "id": 1 + } + }, + { + "model": "Zoitapp.lga", + "pk": "66", + "fields":{ + "name": "Anambra West", + "zone": "South-East", + "Stateid": "4", + "id": 2 + } + }, + { + "model": "Zoitapp.lga", + "pk": "67", + "fields":{ + "name": "Anaocha", + "zone": "South-East", + "Stateid": "4", + "id": 3 + } + }, + { + "model": "Zoitapp.lga", + "pk": "68", + "fields":{ + "name": "Awka North", + "zone": "South-East", + "Stateid": "4", + "id": 4 + } + }, + { + "model": "Zoitapp.lga", + "pk": "69", + "fields":{ + "name": "Awka South", + "zone": "South-East", + "Stateid": "4", + "id": 5 + } + }, + { + "model": "Zoitapp.lga", + "pk": "70", + "fields":{ + "name": "Ayamelum", + "zone": "South-East", + "Stateid": "4", + "id": 6 + } + }, + { + "model": "Zoitapp.lga", + "pk": "71", + "fields":{ + "name": "Dunukofia", + "zone": "South-East", + "Stateid": "4", + "id": 7 + } + }, + { + "model": "Zoitapp.lga", + "pk": "72", + "fields":{ + "name": "Ekwusigo", + "zone": "South-East", + "Stateid": "4", + "id": 8 + } + }, + { + "model": "Zoitapp.lga", + "pk": "73", + "fields":{ + "name": "Idemili North", + "zone": "South-East", + "Stateid": "4", + "id": 9 + } + }, + { + "model": "Zoitapp.lga", + "pk": "74", + "fields":{ + "name": "Idemili South", + "zone": "South-East", + "Stateid": "4", + "id": 10 + } + }, + { + "model": "Zoitapp.lga", + "pk": "75", + "fields":{ + "name": "Ihiala", + "zone": "South-East", + "Stateid": "4", + "id": 11 + } + }, + { + "model": "Zoitapp.lga", + "pk": "76", + "fields":{ + "name": "Njikoka", + "zone": "South-East", + "Stateid": "4", + "id": 12 + } + }, + { + "model": "Zoitapp.lga", + "pk": "77", + "fields":{ + "name": "Nnewi North", + "zone": "South-East", + "Stateid": "4", + "id": 13 + } + }, + { + "model": "Zoitapp.lga", + "pk": "78", + "fields":{ + "name": "Nnewi South", + "zone": "South-East", + "Stateid": "4", + "id": 14 + } + }, + { + "model": "Zoitapp.lga", + "pk": "79", + "fields":{ + "name": "Ogbaru", + "zone": "South-East", + "Stateid": "4", + "id": 15 + } + }, + { + "model": "Zoitapp.lga", + "pk": "80", + "fields":{ + "name": "Onitsha North", + "zone": "South-East", + "Stateid": "4", + "id": 16 + } + }, + { + "model": "Zoitapp.lga", + "pk": "81", + "fields":{ + "name": "Onitsha South", + "zone": "South-East", + "Stateid": "4", + "id": 17 + } + }, + { + "model": "Zoitapp.lga", + "pk": "81", + "fields":{ + "name": "Orumba North", + "zone": "South-East", + "Stateid": "4", + "id": 18 + } + }, + { + "model": "Zoitapp.lga", + "pk": "82", + "fields":{ + "name": "Orumba South", + "zone": "South-East", + "Stateid": "4", + "id": 19 + } + }, + { + "model": "Zoitapp.lga", + "pk": "83", + "fields":{ + "name": "Oyi", + "zone": "South-East", + "Stateid": "4", + "id": 20 + } + } +] \ No newline at end of file diff --git a/src/Zoit/Zoitapp/fixtures/lga_data.json b/src/Zoit/Zoitapp/fixtures/lga_data.json new file mode 100644 index 0000000..58d6747 --- /dev/null +++ b/src/Zoit/Zoitapp/fixtures/lga_data.json @@ -0,0 +1,3675 @@ +[ + { + "name": "Aba North", + "zone": "South-East", + "id": 1 + }, + { + "name": "Aba South", + "zone": "South-East", + "ïd": 2 + }, + { + "name": "Arochukwu", + "zone": "South-East", + "id": 3 + }, + { + "name": "Bende", + "zone": "South-East", + "id": 4 + }, + { + "name": "Ikwuano", + "zone": "South-East", + "id": 5 + }, + { + "name": "Isiala Ngwa North", + "zone": "South-East", + "id": 6 + }, + { + "name": "Isiala Ngwa South", + "zone": "South-East", + "id": 7 + }, + { + "name": "Isuikwuato", + "zone": "South-East", + "id": 8 + }, + { + "name": "Obi Ngwa", + "zone": "South-East", + "id": 9 + }, + { + "name": "Ohafia", + "zone": "South-East", + "id": 10 + }, + { + "name": "Osisioma", + "zone": "South-East", + "id": 11 + }, + { + "name": "Ugwunagbo", + "zone": "South-East", + "id": 12 + }, + { + "name": "Ukwa East", + "zone": "South-East", + "id": 13 + }, + { + "name": "Ukwa West", + "zone": "South-East", + "id": 14 + }, + { + "name": "Umuahia North", + "zone": "South-East", + "id": 15 + }, + { + "name": "Umuahia South", + "zone": "South-East", + "id": 16 + }, + { + "name": "Umu Nneochi", + "zone": "South-East", + "id": 17 + }, + { + "name": "Grie", + "zone": "Nort-East", + "id": 5 + }, + { + "name": "Hong", + "zone": "Nort-East", + "id": 6 + }, + { + "name": "Jada", + "zone": "Nort-East", + "id": 7 + }, + { + "name": "Lamurde", + "zone": "Nort-East", + "id": 8 + }, + { + "name": "Madagali", + "zone": "Nort-East", + "id": 9 + }, + { + "name": "Maiha", + "zone": "Nort-East", + "id": 10 + }, + { + "name": "Mayo Belwa", + "zone": "Nort-East", + "id": 11 + }, + { + "name": "Michika", + "zone": "Nort-East", + "id": 12 + }, + { + "name": "Mubi North", + "zone": "Nort-East", + "id": 13 + }, + { + "name": "Mubi South", + "zone": "Nort-East", + "id": 14 + }, + { + "name": "Numan", + "zone": "Nort-East", + "id": 15 + }, + { + "name": "Shelleng", + "zone": "Nort-East", + "id": 16 + }, + { + "name": "Song", + "zone": "Nort-East", + "id": 17 + }, + { + "name": "Toungo", + "zone": "Nort-East", + "id": 18 + }, + { + "name": "Yola North", + "zone": "Nort-East", + "id": 19 + }, + { + "name": "Yola South", + "zone": "Nort-East", + "id": 20 + }, + { + "name": "Eastern Obolo", + "zone": "South-South", + "id": 1 + }, + { + "name": "Eket", + "zone": "South-South", + "id": 2 + }, + { + "name": "Esit Eket", + "zone": "South-South", + "id": 3 + }, + { + "name": "Essien Udim", + "zone": "South-South", + "id": 4 + }, + { + "name": "Etim Ekpo", + "zone": "South-South", + "id": 5 + }, + { + "name": "Etinan", + "zone": "South-South", + "id": 6 + }, + { + "name": "Ibeno", + "zone": "South-South", + "id": 7 + }, + { + "name": "Ibesikpo Asutan", + "zone": "South-South", + "id": 8 + }, + { + "name": "Ibiono-Ibom", + "zone": "South-South", + "id": 9 + }, + { + "name": "Ika", + "zone": "South-South", + "id": 10 + }, + { + "name": "Ikono", + "zone": "South-South", + "id": 11 + }, + { + "name": "Ikot Abasi", + "zone": "South-South", + "id": 12 + }, + { + "name": "Ikot Ekpene", + "zone": "South-South", + "id": 13 + }, + { + "name": "Ini", + "zone": "South-South", + "id": 14 + }, + { + "name": "Itu", + "zone": "South-South", + "id": 15 + }, + { + "name": "Mbo", + "zone": "South-South", + "id": 16 + }, + { + "name": "Mkpat-Enin", + "zone": "South-South", + "id": 17 + }, + { + "name": "Nsit-Atai", + "zone": "South-South", + "id": 18 + }, + { + "name": "Nsit-Ibom", + "zone": "South-South", + "id": 19 + }, + { + "name": "Nsit-Ubium", + "zone": "South-South", + "id": 20 + }, + { + "name": "Obot Akara", + "zone": "South-South", + "id": 21 + }, + { + "name": "Okobo", + "zone": "South-South", + "id": 22 + }, + { + "name": "Onna", + "zone": "South-South", + "id": 23 + }, + { + "name": "Oron", + "zone": "South-South", + "id": 24 + }, + { + "name": "Oruk Anam", + "zone": "South-South", + "id": 25 + }, + { + "name": "Udung-Uko", + "zone": "South-South", + "id": 26 + }, + { + "name": "Ukanafun", + "zone": "South-South", + "id": 27 + }, + { + "name": "Uruan", + "zone": "South-South", + "id": 28 + }, + { + "name": "Urue-Offong/Oruko", + "zone": "South-South", + "id": 29 + }, + { + "name": "Uyo", + "zone": "South-South", + "id": 30 + }, + { + "name": "Anambra East", + "zone": "South-East", + "id": 1 + }, + { + "name": "Anambra West", + "zone": "South-East", + "id": 2 + }, + { + "name": "Anaocha", + "zone": "South-East", + "id": 3 + }, + { + "name": "Awka North", + "zone": "South-East", + "id": 4 + }, + { + "name": "Awka South", + "zone": "South-East", + "id": 5 + }, + { + "name": "Ayamelum", + "zone": "South-East", + "id": 6 + }, + { + "name": "Dunukofia", + "zone": "South-East", + "id": 7 + }, + { + "name": "Ekwusigo", + "zone": "South-East", + "id": 8 + }, + { + "name": "Idemili North", + "zone": "South-East", + "id": 9 + }, + { + "name": "Idemili South", + "zone": "South-East", + "id": 10 + }, + { + "name": "Ihiala", + "zone": "South-East", + "id": 11 + }, + { + "name": "Njikoka", + "zone": "South-East", + "id": 12 + }, + { + "name": "Nnewi North", + "zone": "South-East", + "id": 13 + }, + { + "name": "Nnewi South", + "zone": "South-East", + "id": 14 + }, + { + "name": "Ogbaru", + "zone": "South-East", + "id": 15 + }, + { + "name": "Onitsha North", + "zone": "South-East", + "id": 16 + }, + { + "name": "Onitsha South", + "zone": "South-East", + "id": 17 + }, + { + "name": "Orumba North", + "zone": "South-East", + "id": 18 + }, + { + "name": "Orumba South", + "zone": "South-East", + "id": 19 + }, + { + "name": "Oyi", + "zone": "South-East", + "id": 20 + }, + { + "name": "Bauchi", + "zone": "Nort-East", + "id": 1 + }, + { + "name": "Bogoro", + "zone": "Nort-East", + "id": 2 + }, + { + "name": "Damban", + "zone": "Nort-East", + "id": 3 + }, + { + "name": "Darazo", + "zone": "Nort-East", + "id": 4 + }, + { + "name": "Dass", + "zone": "Nort-East", + "id": 5 + }, + { + "name": "Gamawa", + "zone": "Nort-East", + "id": 6 + }, + { + "name": "Ganjuwa", + "zone": "Nort-East", + "id": 7 + }, + { + "name": "Giade", + "zone": "Nort-East", + "id": 8 + }, + { + "name": "Itas/Gadau", + "zone": "Nort-East", + "id": 9 + }, + { + "name": "Jama'are", + "zone": "Nort-East", + "id": 10 + }, + { + "name": "Katagum", + "zone": "Nort-East", + "id": 11 + }, + { + "name": "Kirfi", + "zone": "Nort-East", + "id": 12 + }, + { + "name": "Misau", + "zone": "Nort-East", + "id": 13 + }, + { + "name": "Ningi", + "zone": "Nort-East", + "id": 14 + }, + { + "name": "Shira", + "zone": "Nort-East", + "id": 15 + }, + { + "name": "Tafawa Balewa", + "zone": "Nort-East", + "id": 16 + }, + { + "name": "Toro", + "zone": "Nort-East", + "id": 17 + }, + { + "name": "Warji", + "zone": "Nort-East", + "id": 18 + }, + { + "name": "Zaki", + "zone": "Nort-East", + "id": 19 + }, + { + "name": "Ekeremor", + "zone": "South-South", + "id": 1 + }, + { + "name": "Kolokuma/Opokuma", + "zone": "South-South", + "id": 2 + }, + { + "name": "Nembe", + "zone": "South-South", + "id": 3 + }, + { + "name": "Ogbia", + "zone": "South-South", + "id": 4 + }, + { + "name": "Sagbama", + "zone": "South-South", + "id": 5 + }, + { + "name": "Southern Ijaw", + "zone": "South-South", + "id": 6 + }, + { + "name": "Yenagoa", + "zone": "South-South", + "id": 7 + }, + { + "name": "Apa", + "zone": "North-Central", + "id": 1 + }, + { + "name": "Ado", + "zone": "North-Central", + "id": 2 + }, + { + "name": "Buruku", + "zone": "North-Central", + "id": 3 + }, + { + "name": "Gboko", + "zone": "North-Central", + "id": 4 + }, + { + "name": "Guma", + "zone": "North-Central", + "id": 5 + }, + { + "name": "Gwer East", + "zone": "North-Central", + "id": 6 + }, + { + "name": "Gwer West", + "zone": "North-Central", + "id": 7 + }, + { + "name": "Katsina-Ala", + "zone": "North-Central", + "id": 8 + }, + { + "name": "Konshisha", + "zone": "North-Central", + "id": 9 + }, + { + "name": "Kwande", + "zone": "North-Central", + "id": 10 + }, + { + "name": "Logo", + "zone": "North-Central", + "id": 11 + }, + { + "name": "Makurdi", + "zone": "North-Central", + "id": 12 + }, + { + "name": "Obi", + "zone": "North-Central", + "id": 13 + }, + { + "name": "Ogbadibo", + "zone": "North-Central", + "id": 14 + }, + { + "name": "Ohimini", + "zone": "North-Central", + "id": 15 + }, + { + "name": "Oju", + "zone": "North-Central", + "id": 16 + }, + { + "name": "Okpokwu", + "zone": "North-Central", + "id": 17 + }, + { + "name": "Oturkpo", + "zone": "North-Central", + "id": 18 + }, + { + "name": "Tarka", + "zone": "North-Central", + "id": 19 + }, + { + "name": "Ukum", + "zone": "North-Central", + "id": 20 + }, + { + "name": "Ushongo", + "zone": "North-Central", + "id": 21 + }, + { + "name": "Vandeikya", + "zone": "North-Central", + "id": 22 + }, + { + "name": "Askira/Uba", + "zone": "Nort-East", + "id": 1 + }, + { + "name": "Bama", + "zone": "Nort-East", + "id": 2 + }, + { + "name": "Bayo", + "zone": "Nort-East", + "id": 3 + }, + { + "name": "Biu", + "zone": "Nort-East", + "id": 4 + }, + { + "name": "Chibok", + "zone": "Nort-East", + "id": 5 + }, + { + "name": "Damboa", + "zone": "Nort-East", + "id": 6 + }, + { + "name": "Dikwa", + "zone": "Nort-East", + "id": 7 + }, + { + "name": "Gubio", + "zone": "Nort-East", + "id": 8 + }, + { + "name": "Guzamala", + "zone": "Nort-East", + "id": 9 + }, + { + "name": "Gwoza", + "zone": "Nort-East", + "id": 10 + }, + { + "name": "Hawul", + "zone": "Nort-East", + "id": 11 + }, + { + "name": "Jere", + "zone": "Nort-East", + "id": 12 + }, + { + "name": "Kaga", + "zone": "Nort-East", + "id": 13 + }, + { + "name": "Kala/Balge", + "zone": "Nort-East", + "id": 14 + }, + { + "name": "Konduga", + "zone": "Nort-East", + "id": 15 + }, + { + "name": "Kukawa", + "zone": "Nort-East", + "id": 16 + }, + { + "name": "Kwaya Kusar", + "zone": "Nort-East", + "id": 17 + }, + { + "name": "Mafa", + "zone": "Nort-East", + "id": 18 + }, + { + "name": "Magumeri", + "zone": "Nort-East", + "id": 19 + }, + { + "name": "Maiduguri", + "zone": "Nort-East", + "id": 20 + }, + { + "name": "Marte", + "zone": "Nort-East", + "id": 21 + }, + { + "name": "Mobbar", + "zone": "Nort-East", + "id": 22 + }, + { + "name": "Monguno", + "zone": "Nort-East", + "id": 23 + }, + { + "name": "Ngala", + "zone": "Nort-East", + "id": 24 + }, + { + "name": "Nganzai", + "zone": "Nort-East", + "id": 25 + }, + { + "name": "Shani", + "zone": "Nort-East", + "id": 26 + }, + { + "name": "Akamkpa", + "zone": "South-South", + "id": 1 + }, + { + "name": "Akpabuyo", + "zone": "South-South", + "id": 2 + }, + { + "name": "Bakassi", + "zone": "South-South", + "id": 3 + }, + { + "name": "Bekwarra", + "zone": "South-South", + "id": 4 + }, + { + "name": "Biase", + "zone": "South-South", + "id": 5 + }, + { + "name": "Boki", + "zone": "South-South", + "id": 6 + }, + { + "name": "Calabar Municipal", + "zone": "South-South", + "id": 7 + }, + { + "name": "Calabar South", + "zone": "South-South", + "id": 8 + }, + { + "name": "Etung", + "zone": "South-South", + "id": 9 + }, + { + "name": "Ikom", + "zone": "South-South", + "id": 10 + }, + { + "name": "Obanliku", + "zone": "South-South", + "id": 11 + }, + { + "name": "Obubra", + "zone": "South-South", + "id": 12 + }, + { + "name": "Obudu", + "zone": "South-South", + "id": 13 + }, + { + "name": "Odukpani", + "zone": "South-South", + "id": 14 + }, + { + "name": "Ogoja", + "zone": "South-South", + "id": 15 + }, + { + "name": "Yakuur", + "zone": "South-South", + "id": 16 + }, + { + "name": "Yala", + "zone": "South-South", + "id": 17 + }, + { + "name": "Aniocha South", + "zone": "South-South", + "id": 1 + }, + { + "name": "Bomadi", + "zone": "South-South", + "id": 2 + }, + { + "name": "Burutu", + "zone": "South-South", + "id": 3 + }, + { + "name": "Ethiope East", + "zone": "South-South", + "id": 4 + }, + { + "name": "Ethiope West", + "zone": "South-South", + "id": 5 + }, + { + "name": "Ika North East", + "zone": "South-South", + "id": 6 + }, + { + "name": "Ika South", + "zone": "South-South", + "id": 7 + }, + { + "name": "Isoko North", + "zone": "South-South", + "id": 8 + }, + { + "name": "Isoko South", + "zone": "South-South", + "id": 9 + }, + { + "name": "Ndokwa East", + "zone": "South-South", + "id": 10 + }, + { + "name": "Ndokwa West", + "zone": "South-South", + "id": 11 + }, + { + "name": "Okpe", + "zone": "South-South", + "id": 12 + }, + { + "name": "Oshimili North", + "zone": "South-South", + "id": 13 + }, + { + "name": "Oshimili South", + "zone": "South-South", + "id": 14 + }, + { + "name": "Patani", + "zone": "South-South", + "id": 15 + }, + { + "name": "Sapele", + "zone": "South-South", + "id": 16 + }, + { + "name": "Udu", + "zone": "South-South", + "id": 17 + }, + { + "name": "Ughelli North", + "zone": "South-South", + "id": 18 + }, + { + "name": "Ughelli South", + "zone": "South-South", + "id": 19 + }, + { + "name": "Ukwuani", + "zone": "South-South", + "id": 20 + }, + { + "name": "Uvwie", + "zone": "South-South", + "id": 21 + }, + { + "name": "Warri North", + "zone": "South-South", + "id": 22 + }, + { + "name": "Warri South", + "zone": "South-South", + "id": 23 + }, + { + "name": "Warri South West", + "zone": "South-South", + "id": 24 + }, + { + "name": "Afikpo North", + "zone": "South-East", + "id": 1 + }, + { + "name": "Afikpo South", + "zone": "South-East", + "id": 2 + }, + { + "name": "Ebonyi", + "zone": "South-East", + "id": 3 + }, + { + "name": "Ezza North", + "zone": "South-East", + "id": 4 + }, + { + "name": "Ezza South", + "zone": "South-East", + "id": 5 + }, + { + "name": "Ikwo", + "zone": "South-East", + "id": 6 + }, + { + "name": "Ishielu", + "zone": "South-East", + "id": 7 + }, + { + "name": "Ivo", + "zone": "South-East", + "id": 8 + }, + { + "name": "Izzi", + "zone": "South-East", + "id": 9 + }, + { + "name": "Ohaozara", + "zone": "South-East", + "id": 10 + }, + { + "name": "Ohaukwu", + "zone": "South-East", + "id": 11 + }, + { + "name": "Onicha", + "zone": "South-East", + "id": 12 + }, + { + "name": "Egor", + "zone": "South-South", + "id": 1 + }, + { + "name": "Esan Central", + "zone": "South-South", + "id": 2 + }, + { + "name": "Esan North-East", + "zone": "South-South", + "id": 3 + }, + { + "name": "Esan South-East", + "zone": "South-South", + "id": 4 + }, + { + "name": "Esan West", + "zone": "South-South", + "id": 5 + }, + { + "name": "Etsako Central", + "zone": "South-South", + "id": 6 + }, + { + "name": "Etsako East", + "zone": "South-South", + "id": 7 + }, + { + "name": "Etsako West", + "zone": "South-South", + "id": 8 + }, + { + "name": "Igueben", + "zone": "South-South", + "id": 9 + }, + { + "name": "Ikpoba Okha", + "zone": "South-South", + "id": 10 + }, + { + "name": "Orhionmwon", + "zone": "South-South", + "id": 11 + }, + { + "name": "Oredo", + "zone": "South-South", + "id": 12 + }, + { + "name": "Ovia North-East", + "zone": "South-South", + "id": 13 + }, + { + "name": "Ovia South-West", + "zone": "South-South", + "id": 14 + }, + { + "name": "Owan East", + "zone": "South-South", + "id": 15 + }, + { + "name": "Owan West", + "zone": "South-South", + "id": 16 + }, + { + "name": "Uhunmwonde", + "zone": "South-South", + "id": 17 + }, + { + "name": "Efon", + "zone": "South-West", + "id": 1 + }, + { + "name": "Ekiti East", + "zone": "South-West", + "id": 2 + }, + { + "name": "Ekiti South-West", + "zone": "South-West", + "id": 3 + }, + { + "name": "Ekiti West", + "zone": "South-West", + "id": 4 + }, + { + "name": "Emure", + "zone": "South-West", + "id": 5 + }, + { + "name": "Gbonyin", + "zone": "South-West", + "id": 6 + }, + { + "name": "Ido Osi", + "zone": "South-West", + "id": 7 + }, + { + "name": "Ijero", + "zone": "South-West", + "id": 8 + }, + { + "name": "Ikere", + "zone": "South-West", + "id": 9 + }, + { + "name": "Ikole", + "zone": "South-West", + "id": 10 + }, + { + "name": "Ilejemeje", + "zone": "South-West", + "id": 11 + }, + { + "name": "Irepodun/Ifelodun", + "zone": "South-West", + "id": 12 + }, + { + "name": "Ise/Orun", + "zone": "South-West", + "id": 13 + }, + { + "name": "Moba", + "zone": "South-West", + "id": 14 + }, + { + "name": "Oye", + "zone": "South-West", + "id": 15 + }, + { + "name": "Awgu", + "zone": "South-East", + "id": 1 + }, + { + "name": "Enugu East", + "zone": "South-East", + "id": 2 + }, + { + "name": "Enugu North", + "zone": "South-East", + "id": 3 + }, + { + "name": "Enugu South", + "zone": "South-East", + "id": 4 + }, + { + "name": "Ezeagu", + "zone": "South-East", + "id": 5 + }, + { + "name": "Igbo Etiti", + "zone": "South-East", + "id": 6 + }, + { + "name": "Igbo Eze North", + "zone": "South-East", + "id": 7 + }, + { + "name": "Igbo Eze South", + "zone": "South-East", + "id": 8 + }, + { + "name": "Isi Uzo", + "zone": "South-East", + "id": 9 + }, + { + "name": "Nkanu East", + "zone": "South-East", + "id": 10 + }, + { + "name": "Nkanu West", + "zone": "South-East", + "id": 11 + }, + { + "name": "Nsukka", + "zone": "South-East", + "id": 12 + }, + { + "name": "Oji River", + "zone": "South-East", + "id": 13 + }, + { + "name": "Udenu", + "zone": "South-East", + "id": 14 + }, + { + "name": "Udi", + "zone": "South-East", + "id": 15 + }, + { + "name": "Uzo Uwani", + "zone": "South-East", + "id": 16 + }, + { + "name": "Bwari", + "zone": "North-Central", + "id": 1 + }, + { + "name": "Gwagwalada", + "zone": "North-Central", + "id": 2 + }, + { + "name": "Kuje", + "zone": "North-Central", + "id": 3 + }, + { + "name": "Kwali", + "zone": "North-Central", + "id": 4 + }, + { + "name": "Municipal Area Council", + "zone": "North-Central", + "id": 5 + }, + { + "name": "Balanga", + "zone": "Nort-East", + "id": 1 + }, + { + "name": "Billiri", + "zone": "Nort-East", + "id": 2 + }, + { + "name": "Dukku", + "zone": "Nort-East", + "id": 3 + }, + { + "name": "Funakaye", + "zone": "Nort-East", + "id": 4 + }, + { + "name": "Gombe", + "zone": "Nort-East", + "id": 5 + }, + { + "name": "Kaltungo", + "zone": "Nort-East", + "id": 6 + }, + { + "name": "Kwami", + "zone": "Nort-East", + "id": 7 + }, + { + "name": "Nafada", + "zone": "Nort-East", + "id": 8 + }, + { + "name": "Shongom", + "zone": "Nort-East", + "id": 9 + }, + { + "name": "Yamaltu/Deba", + "zone": "Nort-East", + "id": 10 + }, + { + "name": "Ahiazu Mbaise", + "zone": "South-East", + "id": 1 + }, + { + "name": "Ehime Mbano", + "zone": "South-East", + "id": 2 + }, + { + "name": "Ezinihitte", + "zone": "South-East", + "id": 3 + }, + { + "name": "Ideato North", + "zone": "South-East", + "id": 4 + }, + { + "name": "Ideato South", + "zone": "South-East", + "id": 5 + }, + { + "name": "Ihitte/Uboma", + "zone": "South-East", + "id": 6 + }, + { + "name": "Ikeduru", + "zone": "South-East", + "id": 7 + }, + { + "name": "Isiala Mbano", + "zone": "South-East", + "id": 8 + }, + { + "name": "Isu", + "zone": "South-East", + "id": 9 + }, + { + "name": "Mbaitoli", + "zone": "South-East", + "id": 10 + }, + { + "name": "Ngor Okpala", + "zone": "South-East", + "id": 11 + }, + { + "name": "Njaba", + "zone": "South-East", + "id": 12 + }, + { + "name": "Nkwerre", + "zone": "South-East", + "id": 13 + }, + { + "name": "Nwangele", + "zone": "South-East", + "id": 14 + }, + { + "name": "Obowo", + "zone": "South-East", + "id": 15 + }, + { + "name": "Oguta", + "zone": "South-East", + "id": 16 + }, + { + "name": "Ohaji/Egbema", + "zone": "South-East", + "id": 17 + }, + { + "name": "Okigwe", + "zone": "South-East", + "id": 18 + }, + { + "name": "Orlu", + "zone": "South-East", + "id": 19 + }, + { + "name": "Orsu", + "zone": "South-East", + "id": 20 + }, + { + "name": "Oru East", + "zone": "South-East", + "id": 21 + }, + { + "name": "Oru West", + "zone": "South-East", + "id": 22 + }, + { + "name": "Owerri Municipal", + "zone": "South-East", + "id": 23 + }, + { + "name": "Owerri North", + "zone": "South-East", + "id": 24 + }, + { + "name": "Owerri West", + "zone": "South-East", + "id": 25 + }, + { + "name": "Unuimo", + "zone": "South-East", + "id": 26 + }, + { + "name": "Babura", + "zone": "North-West", + "id": 1 + }, + { + "name": "Biriniwa", + "zone": "North-West", + "id": 2 + }, + { + "name": "Birnin Kudu", + "zone": "North-West", + "id": 3 + }, + { + "name": "Buji", + "zone": "North-West", + "id": 4 + }, + { + "name": "Dutse", + "zone": "North-West", + "id": 5 + }, + { + "name": "Gagarawa", + "zone": "North-West", + "id": 6 + }, + { + "name": "Garki", + "zone": "North-West", + "id": 7 + }, + { + "name": "Gumel", + "zone": "North-West", + "id": 8 + }, + { + "name": "Guri", + "zone": "North-West", + "id": 9 + }, + { + "name": "Gwaram", + "zone": "North-West", + "id": 10 + }, + { + "name": "Gwiwa", + "zone": "North-West", + "id": 11 + }, + { + "name": "Hadejia", + "zone": "North-West", + "id": 12 + }, + { + "name": "Jahun", + "zone": "North-West", + "id": 13 + }, + { + "name": "Kafin Hausa", + "zone": "North-West", + "id": 14 + }, + { + "name": "Kazaure", + "zone": "North-West", + "id": 15 + }, + { + "name": "Kiri Kasama", + "zone": "North-West", + "id": 16 + }, + { + "name": "Kiyawa", + "zone": "North-West", + "id": 17 + }, + { + "name": "Kaugama", + "zone": "North-West", + "id": 18 + }, + { + "name": "Maigatari", + "zone": "North-West", + "id": 19 + }, + { + "name": "Malam Madori", + "zone": "North-West", + "id": 20 + }, + { + "name": "Miga", + "zone": "North-West", + "id": 21 + }, + { + "name": "Ringim", + "zone": "North-West", + "id": 22 + }, + { + "name": "Roni", + "zone": "North-West", + "id": 23 + }, + { + "name": "Sule Tankarkar", + "zone": "North-West", + "id": 24 + }, + { + "name": "Taura", + "zone": "North-West", + "id": 25 + }, + { + "name": "Yankwashi", + "zone": "North-West", + "id": 26 + }, + { + "name": "Chikun", + "zone": "North-West", + "id": 1 + }, + { + "name": "Giwa", + "zone": "North-West", + "id": 2 + }, + { + "name": "Igabi", + "zone": "North-West", + "id": 3 + }, + { + "name": "Ikara", + "zone": "North-West", + "id": 4 + }, + { + "name": "Jaba", + "zone": "North-West", + "id": 5 + }, + { + "name": "Jema'a", + "zone": "North-West", + "id": 6 + }, + { + "name": "Kachia", + "zone": "North-West", + "id": 7 + }, + { + "name": "Kaduna North", + "zone": "North-West", + "id": 8 + }, + { + "name": "Kaduna South", + "zone": "North-West", + "id": 9 + }, + { + "name": "Kagarko", + "zone": "North-West", + "id": 10 + }, + { + "name": "Kajuru", + "zone": "North-West", + "id": 11 + }, + { + "name": "Kaura", + "zone": "North-West", + "id": 12 + }, + { + "name": "Kauru", + "zone": "North-West", + "id": 13 + }, + { + "name": "Kubau", + "zone": "North-West", + "id": 14 + }, + { + "name": "Kudan", + "zone": "North-West", + "id": 15 + }, + { + "name": "Lere", + "zone": "North-West", + "id": 16 + }, + { + "name": "Makarfi", + "zone": "North-West", + "id": 17 + }, + { + "name": "Sabon Gari", + "zone": "North-West", + "id": 18 + }, + { + "name": "Sanga", + "zone": "North-West", + "id": 19 + }, + { + "name": "Soba", + "zone": "North-West", + "id": 20 + }, + { + "name": "Zangon Kataf", + "zone": "North-West", + "id": 21 + }, + { + "name": "Zaria", + "zone": "North-West", + "id": 22 + }, + { + "name": "Albasu", + "zone": "North-West", + "id": 1 + }, + { + "name": "Bagwai", + "zone": "North-West", + "id": 2 + }, + { + "name": "Bebeji", + "zone": "North-West", + "id": 3 + }, + { + "name": "Bichi", + "zone": "North-West", + "id": 4 + }, + { + "name": "Bunkure", + "zone": "North-West", + "id": 5 + }, + { + "name": "Dala", + "zone": "North-West", + "id": 6 + }, + { + "name": "Dambatta", + "zone": "North-West", + "id": 7 + }, + { + "name": "Dawakin Kudu", + "zone": "North-West", + "id": 8 + }, + { + "name": "Dawakin Tofa", + "zone": "North-West", + "id": 9 + }, + { + "name": "Doguwa", + "zone": "North-West", + "id": 10 + }, + { + "name": "Fagge", + "zone": "North-West", + "id": 11 + }, + { + "name": "Gabasawa", + "zone": "North-West", + "id": 12 + }, + { + "name": "Garko", + "zone": "North-West", + "id": 13 + }, + { + "name": "Garun Mallam", + "zone": "North-West", + "id": 14 + }, + { + "name": "Gaya", + "zone": "North-West", + "id": 15 + }, + { + "name": "Gezawa", + "zone": "North-West", + "id": 16 + }, + { + "name": "Gwale", + "zone": "North-West", + "id": 17 + }, + { + "name": "Gwarzo", + "zone": "North-West", + "id": 18 + }, + { + "name": "Kabo", + "zone": "North-West", + "id": 19 + }, + { + "name": "Kano Municipal", + "zone": "North-West", + "id": 20 + }, + { + "name": "Karaye", + "zone": "North-West", + "id": 21 + }, + { + "name": "Kibiya", + "zone": "North-West", + "id": 22 + }, + { + "name": "Kiru", + "zone": "North-West", + "id": 23 + }, + { + "name": "Kumbotso", + "zone": "North-West", + "id": 24 + }, + { + "name": "Kunchi", + "zone": "North-West", + "id": 25 + }, + { + "name": "Kura", + "zone": "North-West", + "id": 26 + }, + { + "name": "Madobi", + "zone": "North-West", + "id": 27 + }, + { + "name": "Makoda", + "zone": "North-West", + "id": 28 + }, + { + "name": "Minjibir", + "zone": "North-West", + "id": 29 + }, + { + "name": "Nasarawa", + "zone": "North-West", + "id": 30 + }, + { + "name": "Rano", + "zone": "North-West", + "id": 31 + }, + { + "name": "Rimin Gado", + "zone": "North-West", + "id": 32 + }, + { + "name": "Rogo", + "zone": "North-West", + "id": 33 + }, + { + "name": "Shanono", + "zone": "North-West", + "id": 34 + }, + { + "name": "Sumaila", + "zone": "North-West", + "id": 35 + }, + { + "name": "Takai", + "zone": "North-West", + "id": 36 + }, + { + "name": "Tarauni", + "zone": "North-West", + "id": 37 + }, + { + "name": "Tofa", + "zone": "North-West", + "id": 38 + }, + { + "name": "Tsanyawa", + "zone": "North-West", + "id": 39 + }, + { + "name": "Tudun Wada", + "zone": "North-West", + "id": 40 + }, + { + "name": "Ungogo", + "zone": "North-West", + "id": 41 + }, + { + "name": "Warawa", + "zone": "North-West", + "id": 42 + }, + { + "name": "Wudil", + "zone": "North-West", + "id": 43 + }, + { + "name": "Batagarawa", + "zone": "North-West", + "id": 1 + }, + { + "name": "Batsari", + "zone": "North-West", + "id": 2 + }, + { + "name": "Baure", + "zone": "North-West", + "id": 3 + }, + { + "name": "Bindawa", + "zone": "North-West", + "id": 4 + }, + { + "name": "Charanchi", + "zone": "North-West", + "id": 5 + }, + { + "name": "Dandume", + "zone": "North-West", + "id": 6 + }, + { + "name": "Danja", + "zone": "North-West", + "id": 7 + }, + { + "name": "Dan Musa", + "zone": "North-West", + "id": 8 + }, + { + "name": "Daura", + "zone": "North-West", + "id": 9 + }, + { + "name": "Dutsi", + "zone": "North-West", + "id": 10 + }, + { + "name": "Dutsin Ma", + "zone": "North-West", + "id": 11 + }, + { + "name": "Faskari", + "zone": "North-West", + "id": 12 + }, + { + "name": "Funtua", + "zone": "North-West", + "id": 13 + }, + { + "name": "Ingawa", + "zone": "North-West", + "id": 14 + }, + { + "name": "Jibia", + "zone": "North-West", + "id": 15 + }, + { + "name": "Kafur", + "zone": "North-West", + "id": 16 + }, + { + "name": "Kaita", + "zone": "North-West", + "id": 17 + }, + { + "name": "Kankara", + "zone": "North-West", + "id": 18 + }, + { + "name": "Kankia", + "zone": "North-West", + "id": 19 + }, + { + "name": "Katsina", + "zone": "North-West", + "id": 20 + }, + { + "name": "Kurfi", + "zone": "North-West", + "id": 21 + }, + { + "name": "Kusada", + "zone": "North-West", + "id": 22 + }, + { + "name": "Mai'Adua", + "zone": "North-West", + "id": 23 + }, + { + "name": "Malumfashi", + "zone": "North-West", + "id": 24 + }, + { + "name": "Mani", + "zone": "North-West", + "id": 25 + }, + { + "name": "Mashi", + "zone": "North-West", + "id": 26 + }, + { + "name": "Matazu", + "zone": "North-West", + "id": 27 + }, + { + "name": "Musawa", + "zone": "North-West", + "id": 28 + }, + { + "name": "Rimi", + "zone": "North-West", + "id": 29 + }, + { + "name": "Sabuwa", + "zone": "North-West", + "id": 30 + }, + { + "name": "Safana", + "zone": "North-West", + "id": 31 + }, + { + "name": "Sandamu", + "zone": "North-West", + "id": 32 + }, + { + "name": "Zango", + "zone": "North-West", + "id": 33 + }, + { + "name": "Arewa Dandi", + "zone": "North-West", + "id": 1 + }, + { + "name": "Argungu", + "zone": "North-West", + "id": 2 + }, + { + "name": "Augie", + "zone": "North-West", + "id": 3 + }, + { + "name": "Bagudo", + "zone": "North-West", + "id": 4 + }, + { + "name": "Birnin Kebbi", + "zone": "North-West", + "id": 5 + }, + { + "name": "Bunza", + "zone": "North-West", + "id": 6 + }, + { + "name": "Dandi", + "zone": "North-West", + "id": 7 + }, + { + "name": "Fakai", + "zone": "North-West", + "id": 8 + }, + { + "name": "Gwandu", + "zone": "North-West", + "id": 9 + }, + { + "name": "Jega", + "zone": "North-West", + "id": 10 + }, + { + "name": "Kalgo", + "zone": "North-West", + "id": 11 + }, + { + "name": "Koko/Besse", + "zone": "North-West", + "id": 12 + }, + { + "name": "Maiyama", + "zone": "North-West", + "id": 13 + }, + { + "name": "Ngaski", + "zone": "North-West", + "id": 14 + }, + { + "name": "Sakaba", + "zone": "North-West", + "id": 15 + }, + { + "name": "Shanga", + "zone": "North-West", + "id": 16 + }, + { + "name": "Suru", + "zone": "North-West", + "id": 17 + }, + { + "name": "Wasagu/Danko", + "zone": "North-West", + "id": 18 + }, + { + "name": "Yauri", + "zone": "North-West", + "id": 19 + }, + { + "name": "Zuru", + "zone": "North-West", + "id": 20 + }, + { + "name": "Ajaokuta", + "zone": "North-Central", + "id": 1 + }, + { + "name": "Ankpa", + "zone": "North-Central", + "id": 2 + }, + { + "name": "Bassa", + "zone": "North-Central", + "id": 3 + }, + { + "name": "Dekina", + "zone": "North-Central", + "id": 4 + }, + { + "name": "Ibaji", + "zone": "North-Central", + "id": 5 + }, + { + "name": "Idah", + "zone": "North-Central", + "id": 6 + }, + { + "name": "Igalamela Odolu", + "zone": "North-Central", + "id": 7 + }, + { + "name": "Ijumu", + "zone": "North-Central", + "id": 8 + }, + { + "name": "Kabba/Bunu", + "zone": "North-Central", + "id": 9 + }, + { + "name": "Kogi", + "zone": "North-Central", + "id": 10 + }, + { + "name": "Lokoja", + "zone": "North-Central", + "id": 11 + }, + { + "name": "Mopa Muro", + "zone": "North-Central", + "id": 12 + }, + { + "name": "Ofu", + "zone": "North-Central", + "id": 13 + }, + { + "name": "Ogori/Magongo", + "zone": "North-Central", + "id": 14 + }, + { + "name": "Okehi", + "zone": "North-Central", + "id": 15 + }, + { + "name": "Okene", + "zone": "North-Central", + "id": 16 + }, + { + "name": "Olamaboro", + "zone": "North-Central", + "id": 17 + }, + { + "name": "Omala", + "zone": "North-Central", + "id": 18 + }, + { + "name": "Yagba East", + "zone": "North-Central", + "id": 19 + }, + { + "name": "Yagba West", + "zone": "North-Central", + "id": 20 + }, + { + "name": "Baruten", + "zone": "North-Central", + "id": 1 + }, + { + "name": "Edu", + "zone": "North-Central", + "id": 2 + }, + { + "name": "Ekiti", + "zone": "North-Central", + "id": 3 + }, + { + "name": "Ifelodun", + "zone": "North-Central", + "id": 4 + }, + { + "name": "Ilorin East", + "zone": "North-Central", + "id": 5 + }, + { + "name": "Ilorin South", + "zone": "North-Central", + "id": 6 + }, + { + "name": "Ilorin West", + "zone": "North-Central", + "id": 7 + }, + { + "name": "Irepodun", + "zone": "North-Central", + "id": 8 + }, + { + "name": "Isin", + "zone": "North-Central", + "id": 9 + }, + { + "name": "Kaiama", + "zone": "North-Central", + "id": 10 + }, + { + "name": "Moro", + "zone": "North-Central", + "id": 11 + }, + { + "name": "Offa", + "zone": "North-Central", + "id": 12 + }, + { + "name": "Oke Ero", + "zone": "North-Central", + "id": 13 + }, + { + "name": "Oyun", + "zone": "North-Central", + "id": 14 + }, + { + "name": "Pategi", + "zone": "North-Central", + "id": 15 + }, + { + "name": "Ajeromi-Ifelodun", + "zone": "South-West", + "id": 1 + }, + { + "name": "Alimosho", + "zone": "South-West", + "id": 2 + }, + { + "name": "Amuwo-Odofin", + "zone": "South-West", + "id": 3 + }, + { + "name": "Apapa", + "zone": "South-West", + "id": 4 + }, + { + "name": "Badagry", + "zone": "South-West", + "id": 5 + }, + { + "name": "Epe", + "zone": "South-West", + "id": 6 + }, + { + "name": "Eti Osa", + "zone": "South-West", + "id": 7 + }, + { + "name": "Ibeju-Lekki", + "zone": "South-West", + "id": 8 + }, + { + "name": "Ifako-Ijaiye", + "zone": "South-West", + "id": 9 + }, + { + "name": "Ikeja", + "zone": "South-West", + "id": 10 + }, + { + "name": "Ikorodu", + "zone": "South-West", + "id": 11 + }, + { + "name": "Kosofe", + "zone": "South-West", + "id": 12 + }, + { + "name": "Lagos Island", + "zone": "South-West", + "id": 13 + }, + { + "name": "Lagos Mainland", + "zone": "South-West", + "id": 14 + }, + { + "name": "Mushin", + "zone": "South-West", + "id": 15 + }, + { + "name": "Ojo", + "zone": "South-West", + "id": 16 + }, + { + "name": "Oshodi-Isolo", + "zone": "South-West", + "id": 17 + }, + { + "name": "Shomolu", + "zone": "South-West", + "id": 18 + }, + { + "name": "Surulere", + "zone": "South-West", + "id": 19 + }, + { + "name": "Awe", + "zone": "North-Central", + "id": 1 + }, + { + "name": "Doma", + "zone": "North-Central", + "id": 2 + }, + { + "name": "Karu", + "zone": "North-Central", + "id": 3 + }, + { + "name": "Keana", + "zone": "North-Central", + "id": 4 + }, + { + "name": "Keffi", + "zone": "North-Central", + "id": 5 + }, + { + "name": "Kokona", + "zone": "North-Central", + "id": 6 + }, + { + "name": "Lafia", + "zone": "North-Central", + "id": 7 + }, + { + "name": "Nasarawa", + "zone": "North-Central", + "id": 8 + }, + { + "name": "Nasarawa Egon", + "zone": "North-Central", + "id": 9 + }, + { + "name": "Obi", + "zone": "North-Central", + "id": 10 + }, + { + "name": "Toto", + "zone": "North-Central", + "id": 11 + }, + { + "name": "Wamba", + "zone": "North-Central", + "id": 12 + }, + { + "name": "Agwara", + "zone": "North-Central", + "id": 1 + }, + { + "name": "Bida", + "zone": "North-Central", + "id": 2 + }, + { + "name": "Borgu", + "zone": "North-Central", + "id": 3 + }, + { + "name": "Bosso", + "zone": "North-Central", + "id": 4 + }, + { + "name": "Chanchaga", + "zone": "North-Central", + "id": 5 + }, + { + "name": "Edati", + "zone": "North-Central", + "id": 6 + }, + { + "name": "Gbako", + "zone": "North-Central", + "id": 7 + }, + { + "name": "Gurara", + "zone": "North-Central", + "id": 8 + }, + { + "name": "Katcha", + "zone": "North-Central", + "id": 9 + }, + { + "name": "Kontagora", + "zone": "North-Central", + "id": 10 + }, + { + "name": "Lapai", + "zone": "North-Central", + "id": 11 + }, + { + "name": "Lavun", + "zone": "North-Central", + "id": 12 + }, + { + "name": "Magama", + "zone": "North-Central", + "id": 13 + }, + { + "name": "Mariga", + "zone": "North-Central", + "id": 14 + }, + { + "name": "Mashegu", + "zone": "North-Central", + "id": 15 + }, + { + "name": "Mokwa", + "zone": "North-Central", + "id": 16 + }, + { + "name": "Moya", + "zone": "North-Central", + "id": 17 + }, + { + "name": "Paikoro", + "zone": "North-Central", + "id": 18 + }, + { + "name": "Rafi", + "zone": "North-Central", + "id": 19 + }, + { + "name": "Rijau", + "zone": "North-Central", + "id": 20 + }, + { + "name": "Shiroro", + "zone": "North-Central", + "id": 21 + }, + { + "name": "Suleja", + "zone": "North-Central", + "id": 22 + }, + { + "name": "Tafa", + "zone": "North-Central", + "id": 23 + }, + { + "name": "Wushishi", + "zone": "North-Central", + "id": 24 + }, + { + "name": "Abeokuta South", + "zone": "South-West", + "id": 1 + }, + { + "name": "Ado-Odo/Ota", + "zone": "South-West", + "id": 2 + }, + { + "name": "Egbado North", + "zone": "South-West", + "id": 3 + }, + { + "name": "Egbado South", + "zone": "South-West", + "id": 4 + }, + { + "name": "Ewekoro", + "zone": "South-West", + "id": 5 + }, + { + "name": "Ifo", + "zone": "South-West", + "id": 6 + }, + { + "name": "Ijebu East", + "zone": "South-West", + "id": 7 + }, + { + "name": "Ijebu North", + "zone": "South-West", + "id": 8 + }, + { + "name": "Ijebu North East", + "zone": "South-West", + "id": 9 + }, + { + "name": "Ijebu Ode", + "zone": "South-West", + "id": 10 + }, + { + "name": "Ikenne", + "zone": "South-West", + "id": 11 + }, + { + "name": "Imeko Afon", + "zone": "South-West", + "id": 12 + }, + { + "name": "Ipokia", + "zone": "South-West", + "id": 13 + }, + { + "name": "Obafemi Owode", + "zone": "South-West", + "id": 14 + }, + { + "name": "Odeda", + "zone": "South-West", + "id": 15 + }, + { + "name": "Odogbolu", + "zone": "South-West", + "id": 16 + }, + { + "name": "Ogun Waterside", + "zone": "South-West", + "id": 17 + }, + { + "name": "Remo North", + "zone": "South-West", + "id": 18 + }, + { + "name": "Shagamu", + "zone": "South-West", + "id": 19 + }, + { + "name": "Akoko North-West", + "zone": "South-West", + "id": 1 + }, + { + "name": "Akoko South-West", + "zone": "South-West", + "id": 2 + }, + { + "name": "Akoko South-East", + "zone": "South-West", + "id": 3 + }, + { + "name": "Akure North", + "zone": "South-West", + "id": 4 + }, + { + "name": "Akure South", + "zone": "South-West", + "id": 5 + }, + { + "name": "Ese Odo", + "zone": "South-West", + "id": 6 + }, + { + "name": "Idanre", + "zone": "South-West", + "id": 7 + }, + { + "name": "Ifedore", + "zone": "South-West", + "id": 8 + }, + { + "name": "Ilaje", + "zone": "South-West", + "id": 9 + }, + { + "name": "Ile Oluji/Okeigbo", + "zone": "South-West", + "id": 10 + }, + { + "name": "Irele", + "zone": "South-West", + "id": 11 + }, + { + "name": "Odigbo", + "zone": "South-West", + "id": 12 + }, + { + "name": "Okitipupa", + "zone": "South-West", + "id": 13 + }, + { + "name": "Ondo East", + "zone": "South-West", + "id": 14 + }, + { + "name": "Ondo West", + "zone": "South-West", + "id": 15 + }, + { + "name": "Ose", + "zone": "South-West", + "id": 16 + }, + { + "name": "Owo", + "zone": "South-West", + "id": 17 + }, + { + "name": "Atakunmosa West", + "zone": "South-West", + "id": 1 + }, + { + "name": "Aiyedaade", + "zone": "South-West", + "id": 2 + }, + { + "name": "Aiyedire", + "zone": "South-West", + "id": 3 + }, + { + "name": "Boluwaduro", + "zone": "South-West", + "id": 4 + }, + { + "name": "Boripe", + "zone": "South-West", + "id": 5 + }, + { + "name": "Ede North", + "zone": "South-West", + "id": 6 + }, + { + "name": "Ede South", + "zone": "South-West", + "id": 7 + }, + { + "name": "Ife Central", + "zone": "South-West", + "id": 8 + }, + { + "name": "Ife East", + "zone": "South-West", + "id": 9 + }, + { + "name": "Ife North", + "zone": "South-West", + "id": 10 + }, + { + "name": "Ife South", + "zone": "South-West", + "id": 11 + }, + { + "name": "Egbedore", + "zone": "South-West", + "id": 12 + }, + { + "name": "Ejigbo", + "zone": "South-West", + "id": 13 + }, + { + "name": "Ifedayo", + "zone": "South-West", + "id": 14 + }, + { + "name": "Ifelodun", + "zone": "South-West", + "id": 15 + }, + { + "name": "Ila", + "zone": "South-West", + "id": 16 + }, + { + "name": "Ilesa East", + "zone": "South-West", + "id": 17 + }, + { + "name": "Ilesa West", + "zone": "South-West", + "id": 18 + }, + { + "name": "Irepodun", + "zone": "South-West", + "id": 19 + }, + { + "name": "Irewole", + "zone": "South-West", + "id": 20 + }, + { + "name": "Isokan", + "zone": "South-West", + "id": 21 + }, + { + "name": "Iwo", + "zone": "South-West", + "id": 22 + }, + { + "name": "Obokun", + "zone": "South-West", + "id": 23 + }, + { + "name": "Odo Otin", + "zone": "South-West", + "id": 24 + }, + { + "name": "Ola Oluwa", + "zone": "South-West", + "id": 25 + }, + { + "name": "Olorunda", + "zone": "South-West", + "id": 26 + }, + { + "name": "Oriade", + "zone": "South-West", + "id": 27 + }, + { + "name": "Orolu", + "zone": "South-West", + "id": 28 + }, + { + "name": "Osogbo", + "zone": "South-West", + "id": 29 + }, + { + "name": "Akinyele", + "zone": "South-West", + "id": 1 + }, + { + "name": "Atiba", + "zone": "South-West", + "id": 2 + }, + { + "name": "Atisbo", + "zone": "South-West", + "id": 3 + }, + { + "name": "Egbeda", + "zone": "South-West", + "id": 4 + }, + { + "name": "Ibadan North", + "zone": "South-West", + "id": 5 + }, + { + "name": "Ibadan North-East", + "zone": "South-West", + "id": 6 + }, + { + "name": "Ibadan North-West", + "zone": "South-West", + "id": 7 + }, + { + "name": "Ibadan South-East", + "zone": "South-West", + "id": 8 + }, + { + "name": "Ibadan South-West", + "zone": "South-West", + "id": 9 + }, + { + "name": "Ibarapa Central", + "zone": "South-West", + "id": 10 + }, + { + "name": "Ibarapa East", + "zone": "South-West", + "id": 11 + }, + { + "name": "Ibarapa North", + "zone": "South-West", + "id": 12 + }, + { + "name": "Ido", + "zone": "South-West", + "id": 13 + }, + { + "name": "Irepo", + "zone": "South-West", + "id": 14 + }, + { + "name": "Iseyin", + "zone": "South-West", + "id": 15 + }, + { + "name": "Itesiwaju", + "zone": "South-West", + "id": 16 + }, + { + "name": "Iwajowa", + "zone": "South-West", + "id": 17 + }, + { + "name": "Kajola", + "zone": "South-West", + "id": 18 + }, + { + "name": "Lagelu", + "zone": "South-West", + "id": 19 + }, + { + "name": "Ogbomosho North", + "zone": "South-West", + "id": 20 + }, + { + "name": "Ogbomosho South", + "zone": "South-West", + "id": 21 + }, + { + "name": "Ogo Oluwa", + "zone": "South-West", + "id": 22 + }, + { + "name": "Olorunsogo", + "zone": "South-West", + "id": 23 + }, + { + "name": "Oluyole", + "zone": "South-West", + "id": 24 + }, + { + "name": "Ona Ara", + "zone": "South-West", + "id": 25 + }, + { + "name": "Orelope", + "zone": "South-West", + "id": 26 + }, + { + "name": "Ori Ire", + "zone": "South-West", + "id": 27 + }, + { + "name": "Oyo", + "zone": "South-West", + "id": 28 + }, + { + "name": "Oyo East", + "zone": "South-West", + "id": 29 + }, + { + "name": "Saki East", + "zone": "South-West", + "id": 30 + }, + { + "name": "Saki West", + "zone": "South-West", + "id": 31 + }, + { + "name": "Surulere", + "zone": "South-West", + "id": 32 + }, + { + "name": "Barkin Ladi", + "zone": "North-Central", + "id": 1 + }, + { + "name": "Bassa", + "zone": "North-Central", + "id": 2 + }, + { + "name": "Jos East", + "zone": "North-Central", + "id": 3 + }, + { + "name": "Jos North", + "zone": "North-Central", + "id": 4 + }, + { + "name": "Jos South", + "zone": "North-Central", + "id": 5 + }, + { + "name": "Kanam", + "zone": "North-Central", + "id": 6 + }, + { + "name": "Kanke", + "zone": "North-Central", + "id": 7 + }, + { + "name": "Langtang South", + "zone": "North-Central", + "id": 8 + }, + { + "name": "Langtang North", + "zone": "North-Central", + "id": 9 + }, + { + "name": "Mangu", + "zone": "North-Central", + "id": 10 + }, + { + "name": "Mikang", + "zone": "North-Central", + "id": 11 + }, + { + "name": "Pankshin", + "zone": "North-Central", + "id": 12 + }, + { + "name": "Qua'an Pan", + "zone": "North-Central", + "id": 13 + }, + { + "name": "Riyom", + "zone": "North-Central", + "id": 14 + }, + { + "name": "Shendam", + "zone": "North-Central", + "id": 15 + }, + { + "name": "Wase", + "zone": "North-Central", + "id": 16 + }, + { + "name": "Ahoada East", + "zone": "South-South", + "id": 1 + }, + { + "name": "Ahoada West", + "zone": "South-South", + "id": 2 + }, + { + "name": "Akuku-Toru", + "zone": "South-South", + "id": 3 + }, + { + "name": "Andoni", + "zone": "South-South", + "id": 4 + }, + { + "name": "Asari-Toru", + "zone": "South-South", + "id": 5 + }, + { + "name": "Bonny", + "zone": "South-South", + "id": 6 + }, + { + "name": "Degema", + "zone": "South-South", + "id": 7 + }, + { + "name": "Eleme", + "zone": "South-South", + "id": 8 + }, + { + "name": "Emuoha", + "zone": "South-South", + "id": 9 + }, + { + "name": "Etche", + "zone": "South-South", + "id": 10 + }, + { + "name": "Gokana", + "zone": "South-South", + "id": 11 + }, + { + "name": "Ikwerre", + "zone": "South-South", + "id": 12 + }, + { + "name": "Khana", + "zone": "South-South", + "id": 13 + }, + { + "name": "Obio/Akpor", + "zone": "South-South", + "id": 14 + }, + { + "name": "Ogba/Egbema/Ndoni", + "zone": "South-South", + "id": 15 + }, + { + "name": "Ogu/Bolo", + "zone": "South-South", + "id": 16 + }, + { + "name": "Okrika", + "zone": "South-South", + "id": 17 + }, + { + "name": "Omuma", + "zone": "South-South", + "id": 18 + }, + { + "name": "Opobo/Nkoro", + "zone": "South-South", + "id": 19 + }, + { + "name": "Oyigbo", + "zone": "South-South", + "id": 20 + }, + { + "name": "Port Harcourt", + "zone": "South-South", + "id": 21 + }, + { + "name": "Tai", + "zone": "South-South", + "id": 22 + }, + { + "name": "Bodinga", + "zone": "North-West", + "id": 1 + }, + { + "name": "Dange Shuni", + "zone": "North-West", + "id": 2 + }, + { + "name": "Gada", + "zone": "North-West", + "id": 3 + }, + { + "name": "Goronyo", + "zone": "North-West", + "id": 4 + }, + { + "name": "Gudu", + "zone": "North-West", + "id": 5 + }, + { + "name": "Gwadabawa", + "zone": "North-West", + "id": 6 + }, + { + "name": "Illela", + "zone": "North-West", + "id": 7 + }, + { + "name": "Isa", + "zone": "North-West", + "id": 8 + }, + { + "name": "Kebbe", + "zone": "North-West", + "id": 9 + }, + { + "name": "Kware", + "zone": "North-West", + "id": 10 + }, + { + "name": "Rabah", + "zone": "North-West", + "id": 11 + }, + { + "name": "Sabon Birni", + "zone": "North-West", + "id": 12 + }, + { + "name": "Shagari", + "zone": "North-West", + "id": 13 + }, + { + "name": "Silame", + "zone": "North-West", + "id": 14 + }, + { + "name": "Sokoto North", + "zone": "North-West", + "id": 15 + }, + { + "name": "Sokoto South", + "zone": "North-West", + "id": 16 + }, + { + "name": "Tambuwal", + "zone": "North-West", + "id": 17 + }, + { + "name": "Tangaza", + "zone": "North-West", + "id": 18 + }, + { + "name": "Tureta", + "zone": "North-West", + "id": 19 + }, + { + "name": "Wamako", + "zone": "North-West", + "id": 20 + }, + { + "name": "Wurno", + "zone": "North-West", + "id": 21 + }, + { + "name": "Yabo", + "zone": "North-West", + "id": 22 + }, + { + "name": "Bali", + "zone": "Nort-East", + "id": 1 + }, + { + "name": "Donga", + "zone": "Nort-East", + "id": 2 + }, + { + "name": "Gashaka", + "zone": "Nort-East", + "id": 3 + }, + { + "name": "Gassol", + "zone": "Nort-East", + "id": 4 + }, + { + "name": "Ibi", + "zone": "Nort-East", + "id": 5 + }, + { + "name": "Jalingo", + "zone": "Nort-East", + "id": 6 + }, + { + "name": "Karim Lamido", + "zone": "Nort-East", + "id": 7 + }, + { + "name": "Kumi", + "zone": "Nort-East", + "id": 8 + }, + { + "name": "Lau", + "zone": "Nort-East", + "id": 9 + }, + { + "name": "Sardauna", + "zone": "Nort-East", + "id": 10 + }, + { + "name": "Takum", + "zone": "Nort-East", + "id": 11 + }, + { + "name": "Ussa", + "zone": "Nort-East", + "id": 12 + }, + { + "name": "Wukari", + "zone": "Nort-East", + "id": 13 + }, + { + "name": "Yorro", + "zone": "Nort-East", + "id": 14 + }, + { + "name": "Zing", + "zone": "Nort-East", + "id": 15 + }, + { + "name": "Bursari", + "zone": "Nort-East", + "id": 1 + }, + { + "name": "Damaturu", + "zone": "Nort-East", + "id": 2 + }, + { + "name": "Fika", + "zone": "Nort-East", + "id": 3 + }, + { + "name": "Fune", + "zone": "Nort-East", + "id": 4 + }, + { + "name": "Geidam", + "zone": "Nort-East", + "id": 5 + }, + { + "name": "Gujba", + "zone": "Nort-East", + "id": 6 + }, + { + "name": "Gulani", + "zone": "Nort-East", + "id": 7 + }, + { + "name": "Jakusko", + "zone": "Nort-East", + "id": 8 + }, + { + "name": "Karasuwa", + "zone": "Nort-East", + "id": 9 + }, + { + "name": "Machina", + "zone": "Nort-East", + "id": 10 + }, + { + "name": "Nangere", + "zone": "Nort-East", + "id": 11 + }, + { + "name": "Nguru", + "zone": "Nort-East", + "id": 12 + }, + { + "name": "Potiskum", + "zone": "Nort-East", + "id": 13 + }, + { + "name": "Tarmuwa", + "zone": "Nort-East", + "id": 14 + }, + { + "name": "Yunusari", + "zone": "Nort-East", + "id": 15 + }, + { + "name": "Yusufari", + "zone": "Nort-East", + "id": 16 + }, + { + "name": "Bakura", + "zone": "North-West", + "id": 1 + }, + { + "name": "Birnin Magaji/Kiyaw", + "zone": "North-West", + "id": 2 + }, + { + "name": "Bukkuyum", + "zone": "North-West", + "id": 3 + }, + { + "name": "Bungudu", + "zone": "North-West", + "id": 4 + }, + { + "name": "Gummi", + "zone": "North-West", + "id": 5 + }, + { + "name": "Gusau", + "zone": "North-West", + "id": 6 + }, + { + "name": "Kaura Namoda", + "zone": "North-West", + "id": 7 + }, + { + "name": "Maradun", + "zone": "North-West", + "id": 8 + }, + { + "name": "Maru", + "zone": "North-West", + "id": 9 + }, + { + "name": "Shinkafi", + "zone": "North-West", + "id": 10 + }, + { + "name": "Talata Mafara", + "zone": "North-West", + "id": 11 + }, + { + "name": "Chafe", + "zone": "North-West", + "id": 12 + }, + { + "name": "Zurmi", + "zone": "North-West", + "id": 13 + } + + + +] \ No newline at end of file diff --git a/src/Zoit/Zoitapp/fixtures/ps.json b/src/Zoit/Zoitapp/fixtures/ps.json new file mode 100644 index 0000000..e5637cf --- /dev/null +++ b/src/Zoit/Zoitapp/fixtures/ps.json @@ -0,0 +1,589 @@ +[ + { + "model": "Zoitapp.policestation", + "pk": "1", + "fields":{ + "division": "Eziama Police Station Aba", + "address": "Aba North", + "phone": "07069441296", + "id": "1" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "2", + "fields":{ + "division": "Divisional Police Headquarters Ogborhill Aba", + "address": "Ogborhill", + "phone": "0706944129", + "id": "2" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "3", + "fields":{ + "division": "Uratta Police Station Aba", + "address": "Aba South", + "phone": "07069441296", + "id": "3" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "4", + "fields":{ + "division": "Bende Divisional Police Headquarters Bende", + "address": "Aba", + "phone": "08035415405", + "id": "4" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "5", + "fields":{ + "division": "Ozu Abam Police Station Arochukwu", + "address": "Arochukwu", + "phone": "08079210003", + "id": "5" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "6", + "fields":{ + "division": "Agboakoli Police Station Bende", + "address": "Bende", + "phone": "07069441296", + "id": "6" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "7", + "fields":{ + "division": "Amaeke Police Station Bende", + "address": "Amaeke", + "phone": "07069441296", + "id": "7" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "8", + "fields":{ + "division": "Itumbauzo Police Station Bende", + "address": "Bende", + "phone": "07069441296", + "id": "8" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "9", + "fields":{ + "division": "Police Station Ganye Division Adamawa", + "address": "Ganye", + "phone": "08089671313", + "id": "9" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "10", + "fields":{ + "division": "Gombi police station Adamawa", + "address": "Balda", + "phone": "08085208086", + "id": "10" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "11", + "fields":{ + "division": "Girei Police Station Adamawa", + "address": "Yola, Mubi Rd, Girei ", + "phone": "08089671313", + "id": "11" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "12", + "fields":{ + "division": "Gombi police station", + "address": "Balda", + "phone": "08089671313", + "id": "12" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "13", + "fields":{ + "division": "Adamawa State Police HQ", + "address": "1 Justice Buba Ardo Road, Jimeta", + "phone": "08089671313", + "id": "13" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "14", + "fields":{ + "division": "Area Command, Yola Division ", + "address": "Abuja Road, Wuro Hausa, Yola", + "phone": "08089671313", + "id": "14" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "15", + "fields":{ + "division": "Shagari Police Station", + "address": "Madumari, Yola", + "phone": "08089671313", + "id": "15" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "16", + "fields":{ + "division": "Mararaba Mubi Police Division", + "address": "Marraraba", + "phone": "08089671313", + "id": "16" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "17", + "fields":{ + "division": "A' Division Uyo", + "address": "A' Divisional command Barrack Road Uyo", + "phone": "07069441296", + "id": "17" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "18", + "fields":{ + "division": "Abak Police Division Uyo", + "address": "Abak Divisional Police headquarters", + "phone": "0706944129", + "id": "18" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "19", + "fields":{ + "division": "C Police Division Uyo", + "address": "C Divisional Command Ikot Akpan", + "phone": "07069441296", + "id": "19" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "20", + "fields":{ + "division": "Estern Obolo Police Station", + "address": "Eastern Obolo Divisional command", + "phone": "08035415405", + "id": "20" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "21", + "fields":{ + "division": "Eket Police Division", + "address": "Etim Ekpo Divisional Command", + "phone": "08079210003", + "id": "21" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "22", + "fields":{ + "division": "Ibeno Police Division", + "address": "Ibeno Divisional Command", + "phone": "07069441296", + "id": "22" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "23", + "fields":{ + "division": "Ika Police Division", + "address": "Ika Divisional Command", + "phone": "07069441296", + "id": "23" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "24", + "fields":{ + "division": "Oron Police Division", + "address": "Divisional Police Headquarters, Oron", + "phone": "07069441296", + "id": "24" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "25", + "fields":{ + "division": "Area Command Headquarters", + "address": "Abakaliki Rd, New Haven, Enugu", + "phone": "08037157768", + "id": "25" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "26", + "fields":{ + "division": "Igboeze Police Station", + "address": "Igbo-etiti ", + "phone": "08037157786", + "id": "26" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "27", + "fields":{ + "division": "Uwani Police Station", + "address": "46 Zik Ave, Uwani, Enugu", + "phone": "08037157786", + "id": "28" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "28", + "fields":{ + "division": "Railway Police Station", + "address": "Enugu North", + "phone": "08035415405", + "id": "28" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "29", + "fields":{ + "division": "Okpuje Police Station", + "address": "Nsukka", + "phone": "08079210003", + "id": "29" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "30", + "fields":{ + "division": "Ibagwa Aka Police Station", + "address": "Igbo-Eze-South", + "phone": "07069441296", + "id": "30" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "31", + "fields":{ + "division": "Igbo Eze North Police Station", + "address": "Amaeke", + "phone": "07069441296", + "id": "31" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "32", + "fields":{ + "division": "Awkunanaw Police Station", + "address": "Enugu South", + "phone": "07069441296", + "id": "32" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "33", + "fields":{ + "division": "Nigerian Police Force Headquarters", + "address": "Shehu Shagari Way, Force Head Quarters, Louise Edet House, Central ,Abuja", + "phone": "092340868", + "id": "33" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "34", + "fields":{ + "division": "Asokoro Division Police Station", + "address": "Kef/Nyanya Road, A.Y.A, Asokoro, Abuja", + "phone": "093148360", + "id": "34" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "35", + "fields":{ + "division": "Federal Secretariat Police Station", + "address": "Federal Secretariat Complex, Shehu Shagari Way, Central Business District, Abuja", + "phone": "095234252", + "id": "35" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "36", + "fields":{ + "division": "Gwagwalada Police Station", + "address": "Specialist Hospital Road, Gwagwalada, Abuja", + "phone": "098821296", + "id": "36" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "37", + "fields":{ + "division": "Maitama Police Station", + "address": "30,Nile Street,Off Alvan Ikoku Way, Maitama, Abuja.", + "phone": "094134683", + "id": "37" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "38", + "fields":{ + "division": "National Assembly Police Station", + "address": "National Assembly, Three Arms Zone Maitama,Abuja", + "phone": "092340241", + "id": "38" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "39", + "fields":{ + "division": "Federal Highway Patrol Office Abuja", + "address": "F.C.T", + "phone": "092349403", + "id": "39" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "40", + "fields":{ + "division": "Central Police Station", + "address": "Abuja Central", + "phone": "07069441296", + "id": "40" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "41", + "fields":{ + "division": "Kam Salem House Nigeria Police Hq Annex", + "address": "Obalende, Moloney St, Lagos", + "phone": "08033183477", + "id": "41" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "42", + "fields":{ + "division": "Ijora Badia Police Station Fadaini Street", + "address": "Fadaini Street Ijora, Apapa", + "phone": "08056250710", + "id": "42" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "43", + "fields":{ + "division": "Bode Thomas Police Station", + "address": "Bode Thomas St, Alaka, Lagosh", + "phone": "08033011052", + "id": "43" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "44", + "fields":{ + "division": "Alakara Police Station", + "address": "Agege Motor Rd, Idi Oro, Lagos", + "phone": "08033183477", + "id": "44" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "45", + "fields":{ + "division": "Ikotun Police Divisional Hq", + "address": "Ikotun – Idimu Rd, Ikotun, Lagos", + "phone": "08056250710", + "id": "45" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "46", + "fields":{ + "division": "Airport Police Command", + "address": "Alhaji Azeez St", + "phone": "08033183477", + "id": "46" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "47", + "fields":{ + "division": "Police Divisional Hq Victoria Island", + "address": "VI, Police Barracks, Bar–Beach, Ahmadu Bello Way, Lagos", + "phone": "08033183477", + "id": "47" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "48", + "fields":{ + "division": "Marina Leventis Police Station", + "address": "Marina, Lagos Island", + "phone": "08056250710", + "id": "48" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "49", + "fields":{ + "division": "Oginigba Police Station", + "address": "Adjacent glass industry, oginigba road Trans-Amadi, Port-Harcourt", + "phone": "08032003514", + "id": "49" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "50", + "fields":{ + "division": "Elekahia Police Station", + "address": "Elekahia Rd, Rumumasi, Port Harcourt", + "phone": "08028915460", + "id": "50" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "51", + "fields":{ + "division": "Old GRA Police Station", + "address": "Old GRA police divisional head quarters", + "phone": "08028915462", + "id": "51" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "52", + "fields":{ + "division": "GRA Police Station", + "address": "10 Sani Abacha Road, Rumueme, Port Harcourt", + "phone": "08032003514", + "id": "52" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "53", + "fields":{ + "division": "Elelewon Police Station", + "address": "54-56 Elelenwo Rd, Umurolu, Port Harcourt", + "phone": "08028915460", + "id": "53" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "54", + "fields":{ + "division": "The Nigeria Police Divisional Headquarters", + "address": "Ikwerre Road, Rumuepirikom, Port Harcourt, Rivers", + "phone": "08032003514", + "id": "54" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "55", + "fields":{ + "division": "Rumuomasi Police Post", + "address": "7A Arochukwu Street, Rumuomasi, Port Harcourt", + "phone": "08032003510", + "id": "55" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "56", + "fields":{ + "division": "Oyibgo Police Station", + "address": "Police Station, Kings Ave, Oyigbo", + "phone": "08160723892", + "id": "56" + } + } +] diff --git a/src/Zoit/Zoitapp/fixtures/state.json b/src/Zoit/Zoitapp/fixtures/state.json new file mode 100644 index 0000000..8bb56bc --- /dev/null +++ b/src/Zoit/Zoitapp/fixtures/state.json @@ -0,0 +1,372 @@ +[ + { + "model": "Zoitapp.state", + "pk": "1", + "fields": { + "name": "Abia State", + "capital": "Umuahia", + "zone": "South-East", + "id": 1 + } + }, + { + "model": "Zoitapp.state", + "pk": "2", + "fields": { + "name": "Adamawa State", + "capital": "Yola", + "zone": "North-East", + "id": 2 + } + }, + { + "model": "Zoitapp.state", + "pk": "3", + "fields": { + "name": "Akwa Ibom State", + "capital": "Uyo", + "zone": "South-South", + "id": 3 + } + }, + { + "model": "Zoitapp.state", + "pk": "4", + "fields": { + "name": "Anambra State", + "capital": "Awka", + "zone": "South-East", + "id": 4 + } + }, + { + "model": "Zoitapp.state", + "pk": "5", + "fields": { + "name": "Bauchi State", + "capital": "Bauchi", + "zone": "North-East", + "id": 5 + } + }, + { + "model": "Zoitapp.state", + "pk": "6", + "fields": { + "name": "Bayelsa State", + "capital": "Yenagoa", + "zone": "South-South", + "id": 6 + } + }, + { + "model": "Zoitapp.state", + "pk": "7", + "fields": { + "name": "Benue State", + "capital": "Makurdi", + "zone": "North-Central", + "id": 7 + } + }, + { + "model": "Zoitapp.state", + "pk": "8", + "fields": { + "name": "Borno State", + "capital": "Maiduguri", + "zone": "North-East", + "id": 8 + } + }, + { + "model": "Zoitapp.state", + "pk": "9", + "fields": { + "name": "Cross River State", + "capital": "Calabar", + "zone": "South-South", + "id": 9 + } + }, + { + "model": "Zoitapp.state", + "pk": "10", + "fields": { + "name": "Delta State", + "capital": "Asaba", + "zone": "South-South", + "id": 10 + } + }, + { + "model": "Zoitapp.state", + "pk": "11", + "fields": { + "name": "Ebonyi State", + "capital": "Abakaliki", + "zone": "South-East", + "id": 11 + } + }, + { + "model": "Zoitapp.state", + "pk": "12", + "fields": { + "name": "Edo State", + "capital": "Benin City", + "zone": "South-South", + "id": 12 + } + }, + { + "model": "Zoitapp.state", + "pk": "13", + "fields": { + "name": "Ekiti State", + "capital": "Ekiti", + "zone": "South-West", + "id": 13 + } + }, + { + "model": "Zoitapp.state", + "pk": "14", + "fields": { + "name": "Enugu State", + "capital": "Enugu", + "zone": "South-East", + "id": 14 + } + }, + { + "model": "Zoitapp.state", + "pk": "15", + "fields": { + "name": "Federal Capital Territory", + "capital": "Abuja", + "zone": "North-Central", + "id": 15 + } + }, + { + "model": "Zoitapp.state", + "pk": "16", + "fields": { + "name": "Gombe State", + "capital": "Gombe", + "zone": "North-East", + "id": 16 + } + }, + { + "model": "Zoitapp.state", + "pk": "17", + "fields": { + "name": "Imo State", + "capital": "Owerri", + "zone": "South-East", + "id": 17 + } + }, + { + "model": "Zoitapp.state", + "pk": "18", + "fields": { + "name": "Jigawa State", + "capital": "Dutse", + "zone": "North-East", + "id": 18 + } + }, + { + "model": "Zoitapp.state", + "pk": "19", + "fields": { + "name": "Kaduna State", + "capital": "Kaduna", + "zone": "North-West", + "id": 19 + } + }, + { + "model": "Zoitapp.state", + "pk": "20", + "fields": { + "name": "Kano State", + "capital": "Kano", + "zone": "North-West", + "id": 20 + } + }, + { + "model": "Zoitapp.state", + "pk": "21", + "fields": { + "name": "Katsina State", + "capital": "Katsina", + "zone": "North-West", + "id": 21 + } + }, + { + "model": "Zoitapp.state", + "pk": "22", + "fields": { + "name": "Kebbi State", + "capital": "Birin-Kebbi", + "zone": "North-West", + "id": 22 + } + }, + { + "model": "Zoitapp.state", + "pk": "23", + "fields": { + "name": "Kogi State", + "capital": "Lokoja", + "zone": "North-Central", + "id": 23 + } + }, + { + "model": "Zoitapp.state", + "pk": "24", + "fields": { + "name": "Kwara State", + "capital": "Ilorin", + "zone": "North-Central", + "id": 24 + } + }, + { + "model": "Zoitapp.state", + "pk": "25", + "fields": { + "name": "Lagos State", + "capital": "Ikeja", + "zone": "South-West", + "id": 25 + } + }, + { + "model": "Zoitapp.state", + "pk": "26", + "fields": { + "name": "Nasarawa State", + "capital": "Lafia", + "zone": "North-Central", + "id": 26 + } + }, + { + "model": "Zoitapp.state", + "pk": "27", + "fields": { + "name": "Niger State", + "capital": "Minna", + "zone": "North-Central", + "id": 27 + } + }, + { + "model": "Zoitapp.state", + "pk": "28", + "fields": { + "name": "Ogun State", + "capital": "Abeokuta", + "zone": "South-west", + "id": 28 + } + }, + { + "model": "Zoitapp.state", + "pk": "29", + "fields": { + "name": "Ondo State", + "capital": "Akure", + "zone": "South-West", + "id": 29 + } + }, + { + "model": "Zoitapp.state", + "pk": "30", + "fields": { + "name": "Osun State", + "capital": "Oshogbo", + "zone": "South-West", + "id": 30 + } + }, + { + "model": "Zoitapp.state", + "pk": "31", + "fields": { + "name": "Oyo State", + "capital": "Ibadan", + "zone": "South-West", + "id": 31 + } + }, + { + "model": "Zoitapp.state", + "pk": "32", + "fields": { + "name": "Plateau State", + "capital": "Jos", + "zone": "North-Central", + "id": 32 + } + }, + { + "model": "Zoitapp.state", + "pk": "33", + "fields": { + "name": "Rivers State", + "capital": "Port-Harcourt", + "zone": "South-South", + "id": 33 + } + }, + { + "model": "Zoitapp.state", + "pk": "34", + "fields": { + "name": "Sokoto State", + "capital": "Sokoto", + "zone": "North-West", + "id": 34 + } + }, + { + "model": "Zoitapp.state", + "pk": "35", + "fields": { + "name": "Taraba State", + "capital": "Jalingo", + "zone": "North-East", + "id": 35 + } + }, + { + "model": "Zoitapp.state", + "pk": "36", + "fields": { + "name": "Yobe State", + "capital": "Damaturu", + "zone": "North-East", + "id": 36 + } + }, + { + "model": "Zoitapp.state", + "pk": "37", + "fields": { + "name": "Zamfara State", + "capital": "Gusau", + "zone": "North-West", + "id": 37 + } + } +] diff --git a/src/Zoit/Zoitapp/migrations/0001_initial.py b/src/Zoit/Zoitapp/migrations/0001_initial.py new file mode 100644 index 0000000..060b373 --- /dev/null +++ b/src/Zoit/Zoitapp/migrations/0001_initial.py @@ -0,0 +1,95 @@ +# Generated by Django 3.0.6 on 2020-05-11 06:27 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='LG_ID', + fields=[ + ('local_govt_id', models.AutoField(primary_key=True, serialize=False)), + ], + ), + migrations.CreateModel( + name='STATE_ID', + fields=[ + ('state_id', models.AutoField(primary_key=True, serialize=False)), + ], + ), + migrations.CreateModel( + name='State', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('state_name', models.CharField(max_length=45)), + ('state_capital', models.CharField(max_length=45)), + ('state_zone', models.CharField(max_length=45)), + ('local_govt_id', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Zoitapp.LG_ID')), + ], + ), + migrations.CreateModel( + name='Police_Station', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('police_station_division', models.CharField(max_length=45)), + ('police_station_address', models.CharField(max_length=100)), + ('police_station_email', models.CharField(max_length=50, unique=True)), + ('police_station_phone', models.CharField(max_length=45)), + ('local_govt_id', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Zoitapp.LG_ID')), + ('state_id', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Zoitapp.STATE_ID')), + ], + ), + migrations.CreateModel( + name='Local_Government', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('local_govt_name', models.CharField(max_length=45)), + ('local_govt_hqrt', models.CharField(max_length=45)), + ('local_govt_zone', models.CharField(max_length=45)), + ('state_id', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Zoitapp.STATE_ID')), + ], + ), + migrations.CreateModel( + name='Hotel', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('hotel_name', models.CharField(max_length=45)), + ('hotel_phone', models.CharField(max_length=45)), + ('hotel_email', models.CharField(max_length=50, unique=True)), + ('hotel_address', models.CharField(max_length=100)), + ('local_govt_id', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Zoitapp.LG_ID')), + ('state_id', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Zoitapp.STATE_ID')), + ], + ), + migrations.CreateModel( + name='Hospital', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('hospital_name', models.CharField(max_length=45)), + ('hospital_type', models.CharField(max_length=45)), + ('hospital_phone', models.CharField(max_length=45)), + ('hospital_email', models.CharField(max_length=50, unique=True)), + ('hospital_address', models.CharField(max_length=100)), + ('local_govt_id', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Zoitapp.LG_ID')), + ('state_id', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Zoitapp.STATE_ID')), + ], + ), + migrations.CreateModel( + name='FRSC', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('frsc_address', models.CharField(max_length=100)), + ('frsc_email', models.CharField(max_length=50, unique=True)), + ('frsc_phone', models.CharField(max_length=45)), + ('local_govt_id', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Zoitapp.LG_ID')), + ('state_id', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Zoitapp.STATE_ID')), + ], + ), + ] diff --git a/src/Zoit/Zoitapp/migrations/0002_auto_20200525_1421.py b/src/Zoit/Zoitapp/migrations/0002_auto_20200525_1421.py new file mode 100644 index 0000000..bdf3409 --- /dev/null +++ b/src/Zoit/Zoitapp/migrations/0002_auto_20200525_1421.py @@ -0,0 +1,62 @@ +# Generated by Django 3.0.6 on 2020-05-25 13:21 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Zoitapp', '0001_initial'), + ] + + operations = [ + migrations.RenameField( + model_name='frsc', + old_name='state_id', + new_name='State', + ), + migrations.RenameField( + model_name='hospital', + old_name='state_id', + new_name='State', + ), + migrations.RenameField( + model_name='hotel', + old_name='state_id', + new_name='State', + ), + migrations.RenameField( + model_name='local_government', + old_name='state_id', + new_name='State', + ), + migrations.RenameField( + model_name='police_station', + old_name='state_id', + new_name='State', + ), + migrations.RemoveField( + model_name='state', + name='local_govt_id', + ), + migrations.AlterField( + model_name='frsc', + name='frsc_email', + field=models.EmailField(max_length=50, unique=True), + ), + migrations.AlterField( + model_name='hospital', + name='hospital_email', + field=models.EmailField(max_length=50, unique=True), + ), + migrations.AlterField( + model_name='hotel', + name='hotel_email', + field=models.EmailField(max_length=50, unique=True), + ), + migrations.AlterField( + model_name='police_station', + name='police_station_email', + field=models.EmailField(max_length=50, unique=True), + ), + ] diff --git a/src/Zoit/Zoitapp/migrations/0003_auto_20200604_0352.py b/src/Zoit/Zoitapp/migrations/0003_auto_20200604_0352.py new file mode 100644 index 0000000..aa6926b --- /dev/null +++ b/src/Zoit/Zoitapp/migrations/0003_auto_20200604_0352.py @@ -0,0 +1,133 @@ +# Generated by Django 3.0.6 on 2020-06-04 02:52 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('Zoitapp', '0002_auto_20200525_1421'), + ] + + operations = [ + migrations.RemoveField( + model_name='local_government', + name='local_govt_hqrt', + ), + migrations.AlterField( + model_name='frsc', + name='frsc_address', + field=models.CharField(blank=True, max_length=100, null=True), + ), + migrations.AlterField( + model_name='frsc', + name='frsc_email', + field=models.EmailField(blank=True, max_length=50, unique=True), + ), + migrations.AlterField( + model_name='frsc', + name='frsc_phone', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AlterField( + model_name='hospital', + name='hospital_address', + field=models.CharField(blank=True, max_length=100, null=True), + ), + migrations.AlterField( + model_name='hospital', + name='hospital_email', + field=models.EmailField(blank=True, max_length=50, unique=True), + ), + migrations.AlterField( + model_name='hospital', + name='hospital_name', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AlterField( + model_name='hospital', + name='hospital_phone', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AlterField( + model_name='hospital', + name='hospital_type', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AlterField( + model_name='hotel', + name='hotel_address', + field=models.CharField(blank=True, max_length=100, null=True), + ), + migrations.AlterField( + model_name='hotel', + name='hotel_email', + field=models.EmailField(blank=True, max_length=50, unique=True), + ), + migrations.AlterField( + model_name='hotel', + name='hotel_name', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AlterField( + model_name='hotel', + name='hotel_phone', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AlterField( + model_name='local_government', + name='State', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Zoitapp.State'), + ), + migrations.AlterField( + model_name='local_government', + name='local_govt_name', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AlterField( + model_name='local_government', + name='local_govt_zone', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AlterField( + model_name='police_station', + name='police_station_address', + field=models.CharField(blank=True, max_length=100, null=True), + ), + migrations.AlterField( + model_name='police_station', + name='police_station_division', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AlterField( + model_name='police_station', + name='police_station_email', + field=models.EmailField(blank=True, max_length=50, unique=True), + ), + migrations.AlterField( + model_name='police_station', + name='police_station_phone', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AlterField( + model_name='state', + name='state_capital', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AlterField( + model_name='state', + name='state_name', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AlterField( + model_name='state', + name='state_zone', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AlterField( + model_name='state_id', + name='state_id', + field=models.AutoField(primary_key=True, serialize=False, unique=True), + ), + ] diff --git a/src/Zoit/Zoitapp/migrations/0004_auto_20200604_1431.py b/src/Zoit/Zoitapp/migrations/0004_auto_20200604_1431.py new file mode 100644 index 0000000..27cb18a --- /dev/null +++ b/src/Zoit/Zoitapp/migrations/0004_auto_20200604_1431.py @@ -0,0 +1,247 @@ +# Generated by Django 3.0.6 on 2020-06-04 13:31 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('Zoitapp', '0003_auto_20200604_0352'), + ] + + operations = [ + migrations.CreateModel( + name='LGA', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('name', models.CharField(blank=True, max_length=150, null=True)), + ('zone', models.CharField(blank=True, max_length=45, null=True)), + ], + options={ + 'verbose_name': 'LGA', + 'verbose_name_plural': 'LGAs', + }, + ), + migrations.CreateModel( + name='PoliceStation', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('division', models.CharField(blank=True, max_length=45, null=True)), + ('address', models.CharField(blank=True, max_length=100, null=True)), + ('email', models.EmailField(max_length=45, null=True, unique=True)), + ('phone', models.CharField(blank=True, max_length=45, null=True)), + ('lga', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='stations', to='Zoitapp.LGA')), + ], + options={ + 'verbose_name': 'PoliceStation', + 'verbose_name_plural': 'PoliceStations', + 'managed': True, + }, + ), + migrations.RemoveField( + model_name='local_government', + name='State', + ), + migrations.RemoveField( + model_name='police_station', + name='State', + ), + migrations.RemoveField( + model_name='police_station', + name='local_govt_id', + ), + migrations.AlterModelOptions( + name='frsc', + options={'managed': True, 'verbose_name': 'FRSC', 'verbose_name_plural': 'FRSC'}, + ), + migrations.AlterModelOptions( + name='hospital', + options={'managed': True, 'verbose_name': 'Hospital', 'verbose_name_plural': 'Hospitals'}, + ), + migrations.AlterModelOptions( + name='hotel', + options={'managed': True, 'verbose_name': 'Hotel', 'verbose_name_plural': 'Hotels'}, + ), + migrations.AlterModelOptions( + name='state', + options={'verbose_name': 'State', 'verbose_name_plural': 'States'}, + ), + migrations.RenameField( + model_name='frsc', + old_name='frsc_address', + new_name='address', + ), + migrations.RenameField( + model_name='frsc', + old_name='frsc_phone', + new_name='phone', + ), + migrations.RenameField( + model_name='hospital', + old_name='hospital_address', + new_name='address', + ), + migrations.RenameField( + model_name='hospital', + old_name='hospital_phone', + new_name='phone', + ), + migrations.RenameField( + model_name='hospital', + old_name='hospital_type', + new_name='type', + ), + migrations.RenameField( + model_name='hotel', + old_name='hotel_address', + new_name='address', + ), + migrations.RenameField( + model_name='hotel', + old_name='hotel_name', + new_name='name', + ), + migrations.RenameField( + model_name='hotel', + old_name='hotel_phone', + new_name='phone', + ), + migrations.RenameField( + model_name='state', + old_name='state_capital', + new_name='capital', + ), + migrations.RenameField( + model_name='state', + old_name='state_name', + new_name='name', + ), + migrations.RenameField( + model_name='state', + old_name='state_zone', + new_name='zone', + ), + migrations.RemoveField( + model_name='frsc', + name='State', + ), + migrations.RemoveField( + model_name='frsc', + name='frsc_email', + ), + migrations.RemoveField( + model_name='frsc', + name='local_govt_id', + ), + migrations.RemoveField( + model_name='hospital', + name='State', + ), + migrations.RemoveField( + model_name='hospital', + name='hospital_email', + ), + migrations.RemoveField( + model_name='hospital', + name='hospital_name', + ), + migrations.RemoveField( + model_name='hospital', + name='local_govt_id', + ), + migrations.RemoveField( + model_name='hotel', + name='State', + ), + migrations.RemoveField( + model_name='hotel', + name='hotel_email', + ), + migrations.RemoveField( + model_name='hotel', + name='local_govt_id', + ), + migrations.AddField( + model_name='frsc', + name='command', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AddField( + model_name='frsc', + name='email', + field=models.EmailField(blank=True, max_length=45, unique=True), + ), + migrations.AddField( + model_name='frsc', + name='state', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='road_safety', to='Zoitapp.State'), + ), + migrations.AddField( + model_name='hospital', + name='email', + field=models.EmailField(blank=True, max_length=45, unique=True), + ), + migrations.AddField( + model_name='hospital', + name='mortuary', + field=models.CharField(blank=True, max_length=45, null=True), + ), + migrations.AddField( + model_name='hospital', + name='name', + field=models.CharField(blank=True, max_length=100, null=True), + ), + migrations.AddField( + model_name='hospital', + name='state', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='hospital', to='Zoitapp.State'), + ), + migrations.AddField( + model_name='hotel', + name='email', + field=models.EmailField(blank=True, max_length=45, unique=True), + ), + migrations.AddField( + model_name='hotel', + name='state', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='hospitality', to='Zoitapp.State'), + ), + migrations.DeleteModel( + name='LG_ID', + ), + migrations.DeleteModel( + name='Local_Government', + ), + migrations.DeleteModel( + name='Police_Station', + ), + migrations.DeleteModel( + name='STATE_ID', + ), + migrations.AddField( + model_name='policestation', + name='state', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='stations', to='Zoitapp.State'), + ), + migrations.AddField( + model_name='lga', + name='State', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='lgas', to='Zoitapp.State'), + ), + migrations.AddField( + model_name='frsc', + name='lga', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='road_safety', to='Zoitapp.LGA'), + ), + migrations.AddField( + model_name='hospital', + name='lga', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='hospital', to='Zoitapp.LGA'), + ), + migrations.AddField( + model_name='hotel', + name='lga', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='hospitality', to='Zoitapp.LGA'), + ), + ] diff --git a/src/Zoit/Zoitapp/migrations/0005_auto_20200605_1804.py b/src/Zoit/Zoitapp/migrations/0005_auto_20200605_1804.py new file mode 100644 index 0000000..bcd08db --- /dev/null +++ b/src/Zoit/Zoitapp/migrations/0005_auto_20200605_1804.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.6 on 2020-06-05 17:04 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('Zoitapp', '0004_auto_20200604_1431'), + ] + + operations = [ + migrations.RenameField( + model_name='lga', + old_name='State', + new_name='state', + ), + ] diff --git a/src/Zoit/Zoitapp/migrations/0006_auto_20200607_1151.py b/src/Zoit/Zoitapp/migrations/0006_auto_20200607_1151.py new file mode 100644 index 0000000..25aa86b --- /dev/null +++ b/src/Zoit/Zoitapp/migrations/0006_auto_20200607_1151.py @@ -0,0 +1,13 @@ +# Generated by Django 3.0.6 on 2020-06-07 10:51 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('Zoitapp', '0005_auto_20200605_1804'), + ] + + operations = [ + ] diff --git a/src/Zoit/Zoitapp/migrations/0007_auto_20200607_1420.py b/src/Zoit/Zoitapp/migrations/0007_auto_20200607_1420.py new file mode 100644 index 0000000..cdaec97 --- /dev/null +++ b/src/Zoit/Zoitapp/migrations/0007_auto_20200607_1420.py @@ -0,0 +1,21 @@ +# Generated by Django 3.0.6 on 2020-06-07 13:20 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('Zoitapp', '0006_auto_20200607_1151'), + ] + + operations = [ + migrations.RemoveField( + model_name='lga', + name='zone', + ), + migrations.RemoveField( + model_name='policestation', + name='email', + ), + ] diff --git a/src/Zoit/Zoitapp/migrations/__init__.py b/src/Zoit/Zoitapp/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/Zoit/Zoitapp/models.py b/src/Zoit/Zoitapp/models.py new file mode 100644 index 0000000..1c97230 --- /dev/null +++ b/src/Zoit/Zoitapp/models.py @@ -0,0 +1,102 @@ +from enum import unique + +from django.db import models + +# Create Your models here. + +class State(models.Model): +# Model definition for State. + name = models.CharField(max_length=45,null=True,blank=True) + capital = models.CharField(max_length=45,null=True,blank=True) + zone = models.CharField(max_length=45,null=True,blank=True) + + class Meta: + # Meta definition for State. + + verbose_name = 'State' + verbose_name_plural = 'States' + + def __str__(self): + # Unicode representation of State. + return self.name + +class LGA(models.Model): + # Model definition for LGA. + + name = models.CharField(max_length=150,null=True,blank=True) + state = models.ForeignKey(State, related_name="lgas", on_delete=models.CASCADE) + + class Meta: + # Meta definition for LGA. + + verbose_name = 'LGA' + verbose_name_plural = 'LGAs' + + def __str__(self): + # Unicode representation of LGA. + return f"{self.name}|{self.state.name}" + +class PoliceStation(models.Model): + division = models.CharField(max_length=45,null=True,blank=True) + address = models.CharField(max_length=100,null=True,blank=True) + phone = models.CharField(max_length=45,null=True,blank=True) + state = models.ForeignKey(State, related_name="stations",null=True, on_delete=models.CASCADE) + lga = models.ForeignKey(LGA, related_name="stations",null=True, on_delete=models.CASCADE) + + def __str__(self): + return f"{self.division}|{self.lga}" + + class Meta: + managed = True + verbose_name = 'PoliceStation' + verbose_name_plural = 'PoliceStations' + +class FRSC(models.Model): + command = models.CharField(max_length=45,null=True,blank=True) + address = models.CharField(max_length=100,null=True,blank=True) + email = models.EmailField(max_length=45,unique=True,blank=True) + phone = models.CharField(max_length=45,null=True,blank=True) + state = models.ForeignKey(State, related_name="road_safety",null=True, on_delete=models.CASCADE) + lga = models.ForeignKey(LGA, related_name="road_safety",null=True, on_delete=models.CASCADE) + + def __str__(self): + return f"{self.command}|{self.lga}" + + class Meta: + managed = True + verbose_name = 'FRSC' + verbose_name_plural = 'FRSC' + +class Hospital(models.Model): + name = models.CharField(max_length=100,null=True,blank=True) + type = models.CharField(max_length=45,null=True,blank=True) + address = models.CharField(max_length=100,null=True,blank=True) + email = models.EmailField(max_length=45,unique=True,blank=True) + phone = models.CharField(max_length=45,null=True,blank=True) + mortuary = models.CharField(max_length=45,null=True,blank=True) + state = models.ForeignKey(State, related_name="hospital",null=True, on_delete=models.CASCADE) + lga = models.ForeignKey(LGA, related_name="hospital",null=True, on_delete=models.CASCADE) + + def __str__(self): + return f"{self.name}|{self.lga}" + + class Meta: + managed = True + verbose_name = 'Hospital' + verbose_name_plural = 'Hospitals' + +class Hotel(models.Model): + name = models.CharField(max_length=45,null=True,blank=True) + address = models.CharField(max_length=100,null=True,blank=True) + email = models.EmailField(max_length=45,unique=True,blank=True) + phone = models.CharField(max_length=45,null=True,blank=True) + state = models.ForeignKey(State, related_name="hospitality",null=True, on_delete=models.CASCADE) + lga = models.ForeignKey(LGA, related_name="hospitality",null=True, on_delete=models.CASCADE) + + def __str__(self): + return f"{self.name}|{self.lga}" + + class Meta: + managed = True + verbose_name = 'Hotel' + verbose_name_plural = 'Hotels' diff --git a/src/Zoit/Zoitapp/templates/hospital.html b/src/Zoit/Zoitapp/templates/hospital.html new file mode 100644 index 0000000..ec96471 --- /dev/null +++ b/src/Zoit/Zoitapp/templates/hospital.html @@ -0,0 +1,94 @@ + + + + + + + + + + Welcome to Emergency room! + + + +
+ +


+ +

Welcome To Emergency Room for Accident, to Search for the Nearest Hospital around


+ +

Welcome to the nearest Hospital

+ + + + + + + + + \ No newline at end of file diff --git a/src/Zoit/Zoitapp/templates/hotel.html b/src/Zoit/Zoitapp/templates/hotel.html new file mode 100644 index 0000000..dcbef55 --- /dev/null +++ b/src/Zoit/Zoitapp/templates/hotel.html @@ -0,0 +1,95 @@ + + + + + + + + + + Welcome to Emergency room! + + + +
+ +


+ +

Welcome To Emergency Room for Accident, to Search for the Nearest Hospital around


+ +

Welcome to Nearest Hotel

+ + + + + + + + + + \ No newline at end of file diff --git a/src/Zoit/Zoitapp/templates/index.html b/src/Zoit/Zoitapp/templates/index.html new file mode 100644 index 0000000..66ee93a --- /dev/null +++ b/src/Zoit/Zoitapp/templates/index.html @@ -0,0 +1,143 @@ + + + + + + + + + + + + Welcome to Emergency room! + + + +
+ +


+ +

Welcome To Emergency Room for Accident, to Search for the Nearest Hospital around


+ +
+
+
+
+

Locate your Nearest
Hospital for Emergency


+

A humanitarian link
between the digital world
and disaster response


+ +

Click the button below to get the nearest map for the your nearest hospital


+ +
+ +
+ map +
+
+
+




+ +
+
+
+
+
+
Card title
+

This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

+

Last updated 3 mins ago

+
+
+
+
+
Card title
+

This card has supporting text below as a natural lead-in to additional content.

+

Last updated 3 mins ago

+
+
+
+
+
Card title
+

This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action.

+

Last updated 3 mins ago

+
+
+
+
+



+ + + + + + + + + + + + \ No newline at end of file diff --git a/src/Zoit/Zoitapp/templates/map.webp b/src/Zoit/Zoitapp/templates/map.webp new file mode 100644 index 0000000000000000000000000000000000000000..cebcb51d74bb6e3b406e14114e343f993fff5b0c GIT binary patch literal 13750 zcmV;nHA%`+Nk&GlH2?rtMM6+kP&go>H2?sR+ ziDWxRxBkcngb0;>z9n)D1GN(IfB1Xb>vxg9%kwk)_r7Ny_Z8@0yZ)U1_4|wX)BB(G zUu@oueXsj}s1JnhegA*{7xFXapZo9mf9QX6zEA##|7rdA;0O4p^1t{X{r~zK{&D^{{&k_Gi*5UZRvH!pC zzvX_RAC&)9|6S?j3yzo2H|D?I|Lgkh{kNMx(fWXYIR35v&)ZM;UKn%({(=4T{tw)@ z%n$w^dA`8^(e4}k>-$&x@9&?Je>WiFcfHXE{%g=uqT_;n|HUH~fy9dKk~Wy{tno~`k`vHCN5PAe z1-f)feS@o+i#>O0>j<>0D2Ej*8?vkRR?e7VCY?gw+=!da7n$IiD_;J$pLt*K0c^Ff zSk|K?>AJEfIQCKT>7)qUh=3!EDJ#hBIIwKje3}D}hTHPn11p9>GVnKjjgZEj^q5gq z_>SNZb3szgI^Fa!`P+ zvAo_F^t?FGz=!e2ffKAsgkzox*3^=f)iB*TmK@Vu?%I!UZK}?~)?9D`CWPIc zdZh|9tny&6zgyB>eVXrWX0n3lJF>GRIc}s{Nq&4eggO|QmTXoS&7JxQl(@?RHz`+nOS}SaeFV_1)yHvx9{HV`F2scGV?55_| zi8)gFw*qhwzp%0r8EQ0L9sj;~ch&M)54(H1^Mb74{a~p14qyUW%vdHaLlMkk%FL(v zrf;CV9AWZG8!qC6Dt3jY|Bb_c?r&LWFPW@R&djy)-Tj{nmu`kC_2p@P%KbS$znN<>2JG?{c zT5VBUtZhXd&(Gv5Z`yk4H|KtFNd!OM5+M{!p7AsqN3Z-akDS--`zq`c{<*wa-3HBq z8cHYzTT#2YR!qvG*JptFxx2cB3l$-0>|6!jKJY5X@H)ip68Lp%l;{(Blg|fO{A6s_ z-6C!YjgkM+;l~$KZ79jBL-^?)2x1 zT#K<@MQ>$aa70QYz``!@ySy( zd!uB95{@$GW}uUo(R;aL4<_K`Lw%5Hr1?U1>r(%cK4}(kRdC!Jv_rcpkSD9f_jhTN zZkJ8JKA303%CLd_RWZGUxxV-7etf)nFT&sG!>C_}R31;r)D#{Ld@3*e05v6lzKHov z1EMysQk0uab5x`C70rr^0!T7Cjuq)<)Vj+=&~^}Jv;c1!w!Q($>0cFjj22R9~|}?Auqh+E%JF1P-0Pmghla7>Z0QUfV3WagkbS0 z^ey@ub;}n27!2#capO*3sbKZtNG|3+yi2l?77`TMdo_Z@mGtI3WVu(fgDJt1VvKoO z@5Ub$YI~Kzj%y!e$1VO);WGJ36V{koJV9f#hHB>Nnfr)w4qVn+V#2eYd(^TY5LXsO zTF*;L8+@>Y%j^SB7u89qRFo04ymKXQ#AiyeyXw8}to!(($~ys;g;6?WBf5haDr#D6 zU%quRp7fXNzetq|w))d)%0?Gok^?6De5(S*gQA7sVugLZT9)*$VZD8}{~`yGvtboq z77>QL2CByJe}_EP*_K?294=dk0QBTLb&m^@FO<|u}51Wpx(G0m4$_eN4pw!)6j+&&G8@W z$zROLYMsNDp=l{d?;H8BW!VMyXq`(;J+Fvu4Smw_ybJQ>)N%CnyhFfG$!piSF&BI0 zz?lG3>VC3n~mh$wiS~03XU@Z49S-bLo^xPs(%&v_C)yJZL5Z}{thPm?q=Isb*!LrIZKq@#{JLdEG5oncc%)NMH zXj;?^DK5}4%6D*ejaoMg00c0`te&et_!d5`&e7Lo5q<1gRfsd#4jP-TT3i}gFM@P5 z$i0LCLC#kIvs4yqCAW$q9#v?CNoZ9I3d)Lyo~X1n!U%gjc43gdj>d~BnBN({6uU2m zUUKw8Be$~W;qw`AUoFp23Hy>nu*3E~kS4`I`n?kMOZGAg9>q(z!X4AS+}5`R)X-3MW`l99kvG{AN zH#`j2AmwXU1x88YS2zm2?G&bpU+yU#bb`}98*%712>HTtG}4C`E<>rqreuaiJZ>`- z&2@?sX;0xg^LjzgU0!#0Qf3yy(y$tvMctNJvg(#>T4S4zoON0e$srkVAF%4I$q%6( z16#$U8C28NO2HT>*a7}VY5eC8Ruj>tsY?A8wa9zHt4V4)2Y7~NzDJ)*&7jzg@!aE% znA%maFvt1kpPxYr^1{+|+`yh!GTpjLNb9C~`B0PuNIf;4$to zZ_t0=;XXjN{7)+x2SOiGdO*Vihe(Qa8Yxn4bsB61#UqkU?Ir|zmax|DLubtF8`Nj_ z*Zzt!<@2Z5Dzjs|d36tqa-|e`40V||@VqsJN#>HXBPx!jbd;{9x_d#BBq`TpVFWH; zNKR_Dy!jwmGVsLC3i;@o{-QsgIHTM(c@l|VnM84qQ1RXE60sIXW~XIm)3QP`0YdMM zjD-H45RV2}r`7<=di0EyKc6`5h`{nG(cTpMZ1vZDDl~@etJ8o z_uZf1yG?lvh%OMzv|R2Jrwi9sr| zV5o{~YW+TsW$F;4a@K!Iw1qtAn2&HFI!fI6$Pf;7EZ@;NjB30HvtJ5iBPAW3HtHQk z-G)KFC$W!qgo=`zWd`jn+POw727JMuIbcD=Nfz8oa(()nb0qZHFjy9{&$n^pX7 zt?h-?z)tuD@A*fn&(`0`5=Z72LLm5ZJofCflg=P1B2aI$bhY*Wbgq3VJ1QkuPFv`J z83}sCW|h{p7W&FqO`=gdal)XK0N5)wx%7e#34K6ThV&46I<+(|gMz;&Y7d;7;_%>! zZ;8ijd0Oyk8SES%LYE`69&oEg>C`F%DZwu1{(Ce}4u!XZcX)S7p93%*1>-+WgTfQT z^o3Olv%#us4~@f#%g;fboet34?=%{gq1B#Bzq6!cUD_J5D&7cfpy>G3f%O$6I6i?4 z-7n-ijk0>i@!f35n(^VXPVg|LU*Q&KMbh{}oo||}bjk^laPb=}9_>#fbYBBrMmctz zIwm|a65Y03bt>>!a=@E~9>3k}ZN3P?EIqcr2o0OhrHPx>KpLpmZ>(X@5u#vRbqPzVNbbQR34k_SSADTgE@6L+jn| zI(O(eS|-BrHg*og&FxWW?xh21fe{Rg~!IVs8X3 zgI&vULi&?TzYGIh87QQOjHg>l!#5fT&GAcrVUit&OA=B0lVu*GI(d32-c)ZI zw1JwMRPVu?8BruzltQy%LOK@^ZQJwzGO$1MTh{fCqzjh&EKXDkGF7mwf-S+7@tORx z19q_jDCE^22olSI&FO_j%j_(2iLWo9x|~I_dM)Ebr~eNj*25JV3W^>oD1A359OIqU zxfKOi5!h#o2&ob{$x4;!`hy;!n|kBG2FaMH3$adGEzj#Yik%@#AQ^X3GO7Qp)t{oa z>G~Py87tX~6|e9-rqH$z+A#b$+yEPHTlE3-LY$$W5YUlh0~pz7hM=3C?=f<7-WSuj zUfP$NhFaAyQS4SK{nHq~TsRrTtx zQf3{wHKcil7rS#`-DIN}i&9ph^P?K9OXstpjjF|qoU?7Coi>ZnxhD3{O!deG)s&Gd zjZjK{!qP5g`w2QWZ*W zhu9#-xV*k>EM6NYq44t|%JJQ+b}^Yz->o$m4-9^SbpC-ZhtOM!*R8I^g`f1z!z#C0 zCx4fe?7sBM>Y=)R@G#;Vi}5h6rKgijNnE*{-Ou8X;;z8p%Nl(MAa5`!XW*t@K+K}f z1I6D0MwSV33KK;aV^$1M1T+C;%C9k%Z?;39fGY_6UXV_8$!WQ)oQRg*p7Zq?9316T zjtw?`sn*!ftCr-}Hte2K5+)Vk(a(bd+Lld~nouQ3+4WD}#K5_bLx+Gi^sTjDCk zU4DXXajM^RfZd4asW!82C3wMmyvv8|!mF2hS>}ZV_M8S*n+0pb$rKRpu_p3>HNUWW z?-!@=BLHDIzeJd^rxz!V4o=k?eTh`1tP0S;Vw6hjo+%qz(i-57;o8a=j+xJMJx z{B58{5PE5$Vr#ujl$s*{@6G={?=Y$BYy1f-L}H;Pdk3wlNOedmJAdXH;-tc(bc&c> zXHk_O@s_q4(Qapu?KjI44-JGWyoH=L;bZq$$0dCL26_4lous<64V& zDj5i%*MuIk<`=fjUv5Nl+&A)>)T_W{QjlddQ{8n0cBewCWYg<)?5)cwK?3q*1yj@#)Zc2eExiOAC1(!Ecbl;}Ah6A;9d|Xv$MGs-Z0h>PF6F#(S z&Ax3^bRr>h+~4*X_h^o$)*X#qIGk<_d)dXFlFvOwJ0az6Rv|zpJGZ++2KPwZ_;#g9 zHM2!8K{+~B{-#Drbj(blue&;8k8As#e%Ux_RPG3lb(M!HCDDc0PkQKyHuPOgDf1FD zPCbN=WJ-<3#U3RjE^ivMxZ(0oLL4uXF+Hr^3e=>;PaM8I%ABeRv9U&Y>*vy?FrS%%;|$y06gC-_DbY8`tm{B&@vC3q$YL;0pt;A z(T^!L*45S8vu4irXTm)1eK*zwo$_)nLM8gx%LVcdK%vHBOe~lKK580Dkl-$R*bub1Z-v{ z289H(1a*c#RL7Mz&1IIjRP`VY?u}d@vP_c(2CbMQlc)Co8O#Jkul}lVXoK3)zQB(9 z*RVd%Y%$wG=(|0^o1stcFuY=oCt2RyXTY?5XJg9*(H?Hy_8@E9qNtXJvih_l(5+JF zv5x`4xQCAX6Weu}-dtR`^{R9G(^H zz<>q}o>s7xC#*Mea0+yuA-JjwE3^_wcaEY`&FE??m*9^-ovJZ0G44UN1re;EA#R z?y#@EDkJJ>%t%{L3a8$6U`6l-xQEzgO^5OJ)iywJDUVajgreZHNtw$|J3g3_>4-3F zSe)#U3z_343Bf*Q=dBH@pcq6zleMxLlqFkg4AfS2k4w3P)EaEE`z*Be+6Ar>bksCr zj{HNAMAe1#a@;JSzN(#?Lz9nhgP5sUNTx>mSV4#!e1lK!mZgnUdpv|2tln$OYx=6H47&;f@N9T2hX1gBb1U^icneQDurCB%D$Xy4?Z zEMm3>D>@b@xqJmB9G%$-(jPfKb4ZvGn0DALbn;?`wOl{MS5E&xjNeW>msVpBU$n;K0kRsdW3Qv2=QJs-gnFIVj zXt7Hc>JW`J3;XO=t)oXf^X|b{nx+%CLY&kFAuQ|6t@MWPmAx#bxrbgsef!Ha1IR#h zD@~4^3PX>j?9A$N7KD_seO8wn zM#-Ic4=X#q9%T<(%T#c+dMOzU8FCk}QV$4b;e~~X?V7qL3OUso6#!F0LPfdb>Y)*l zfk5A~uMY9M{_yMzmF$g7fB52U8%(erRUQsK`iVg>{#hTcFNWj#38}KRzEto2`v+v+a__^gTomc>LKySFd#rj7ZZ^?#dxos>(me$2 zZVfvOw`TDk?(^~(BE$G{^^?$^MO2B7c7~5DgCVU3(^lqcW#l;bzaBMqCW=`7O8uN| z-*(iL`Z9OdKdJIisxyZa@W_bj6jpZmAqAmshjvNTNGD^m6wK`hd3~o00?Oa}a2m3f zbhbs?jCG%S*xrRw#ME(V1Bw}rw{PQ|6Tb*8Xf#ME%{y;W={JSGti8ei`Zak#F4_iO zo+>z;UU5T0s!on`Q>f_2|I{qhhVJKFNooSCWeFJF(NwDBzZ}Z01ahX_%GDh+2)4M* z>w3;t7w;pC;YXcW|;#gJ1RsTMAqTEYVL|lXU|VP2!-iR=Bt7 z$Z`P$oU~Fbyo?EJzwB0JOHue7pvnGs{@Ke^80sZdYH3M#i1eo z6S;^3i+DEsWf?@|syGpENu^{oz@}hRh%Pf$H1*ye2`{2fQYIe+!wk1EuIgR zAz5L83nMDx(hid1{a1s-k`v2e7x1Du&rn%Q@=&d z+?kAwNZSLU@I&;QzW!*`G|lX#J}iJ(2rKyFT(RcdOk9Rfp#yOicu@u^C2h;sPBLq5 zP$K`ojcBh99h#vgJ^GJ{infu|r&)R?3KHKRhGI_kQtUC<{BQ$yDP*SiM@Baj`q!e>QS++4-0kB$S)V)Az@@YHXDHY-x|IQQwBcu@&-?lOqzNF-ORMB5PCK=c3o(4jr(^gwTLSvZy!HZs7Ug?+eRv2n{ zbf6cxMFp2je|Ye2!Y^J zadgNsB7eZHs!m61y2k#eXt6Eev5@WS7W^}0mLCJEc|~DNI%v123ba9x92mnVsueSxyqt%p6jt>I6f&@}3 zT$!t@RWI1-xY!~rN3NDqUZ9#8>lFgrW9Hk8IXDj#mD+Bak0tIkV(ps}05T3Y=H}&F z-8+nbkK65|N5@!juo^wFi#ZO50ds(u^V9yoP587|62D;?)5TAZZNgHeBAnX!zPUdm zfyzxi`_r^#^I|+Non}@&!HyZet4$r?!-v@$4i-H#Rh9D;Ya%>tD5-$mNFYQ2QxFIq z;2dJmp5s51@15h=5eKoLKl;-Optvcpv9?787P#C`!Q7zjDjqhvX|c9$dVy0c);~yh zmwy4>wgRjXb`TF6#!BMhZ6Y^P`aV5n85ykv4M!rM;MbN^b_*XJWAG4|WB3COIsj%j z46;aQ_Ug9pe|ewN_FB=t1ioi$rII5rh`2-3_FB=uy6hmvh)ezYVyPC50Eq7sn6pRd z`@;Y-xL4JYs7lTDh=I4Z{rGc(^_b=z=X)LyT9S&36Clk~9PX%aZ@8biw=H2EihtpF zd&Ia(WwYu%n%Bb6=(ugTBSu<2ks^hcEW5f2WL#{{ z*i9Rj7q34~Re(V2CED8r-3d&$Kbu1p3o`N$S&A@_1KPARM=v-_eo*jUIK#sADJ5fh zpStai7 z7%g4d1slrg7eP0W(HYTmHVQ>DUWB1zxe%On&InFw!5@=@pc?syCJ)P~ZtgiB9gonR zq@2R5N+z&HAd%TNx1gof#X}<{zq*c(0RiZr!4&6ije-8fb=6p1$8IDIQAJMQ0#eggABqH~z7-qqRMoWyYL+h@{@WDB_2Ie@%l|6Ey3F3O)=~|G)*gq)2 z>8PeLs}2VyP9IkE&oWTHN{AqkvPc21OnI5PXZ;(Uyov(GK=w z&kamWx{4Uk)n^G~@5HRxlBtvqbM2);qwFST4sjg?ASGS6@w+@iBTlO<2?QhlLE=9i zIM3DBwYTOcKY$&0et?V$4mg$&&yHOHJdYM+x0y0F))UpW^;@$H4mg{ZL0MY?cQ@hU zJ3B9h&%tfwi7E3KJq8U*=|=v@ zCo39R#)EZR$p^Y$pB$|PiorbwTFrKNj5#<*b~nXlF-388{lutf;+9h3x)%L!F4?QT zX;BLk=J8DoO+I7iA@W4t4gxhV6HePQu}dU zD`*U^IZFP2tmfBk(1Rv_=BiAV zj@m$yRnP;;+UfwMv5AQ+F{ARSh+`j0PcjDw2(~4{vs7<;Bz3@XFs8P>tWS)E`GNy_ zA7KJuA{8|a@Fq0#wHp=Sl+@W6J!Z1F8rl%(L66|OvcY2vvezX1^Jh+K-nvKz;Z9d! z6D!|gfk=4+aH^Mhoi_j}Btq%{#J-iFmG4KaK54IxD14uRyX{z_1Rfcb^rn<=Daf_a z0Y8XD)ne7xu*DvF0kuP-iQ{+#(^2_-UAXeNNNFIwOCZ|Zfakb$&f%vpZZ!n=f*m79 z1JAmMeXyRSFzUA?SpOM08ns-$(QX#zVXV@7pEb(h*;#xL18?+p3CR?Wa`OE?R=SMY z*9@)Y6rUq7E?1(DNi%PVTL7owDLFHpSshEh{nZ;QRe9-a zwQI3ZTU{&F=QfJ4*jc5`5nawa!09lrH~7AzaWec^+WOh2Rtfj<7#$4m#PQM7)F#oA z>4~}TS%$~}0W~iq9-0ka$#M=-4W}BbV4<)1F4fgZt!x7HevFMh7viix2};~|bIZ_g zOpeo-@Je58$KqM&w-dHab7&j90C2%nw%4{t>!7*BrJg#Ri1*d&_m{z!vv|7Hz|7U| z_uF9{@E>MZX(3)&dhW|hLD5v^RE3*qYJh=|38Z`6`m8qIcuG*=xcPGhWX0|c7cnH@ zW!8J7Zn!T*tD*BmO>Jd~%I5v1X$eEVR_xQ_zFtem;S{0+hAsv)r*`f^-&%tyOrF=W z$ocBzVtfPR{)?}qvlNZ%coQ4<5@f521Hqeab?|({R&MZNrUHdCXw+>ylkAe#BT`l52@K)}H3E_qxlkmlg1W3F;YG9*Q z;FZW~v<0(T;_WWprf<|-);*jS+E^Egg8`-zSa>$|uWjDY!?c1b1OToAHw~@kQ9mXe z!9#}Z(wai&joUyT(cO^=I-D(!BN(oWL|+Pq(bsf<#(!zf02c0x$7B|z6kk!@y_p{X zGemck=VUf*-CauP#olO^=Qgw%(QFJG<1X2p=JkHvYqwdtk zWi9~>2RhHr00*=2h!-xcCEPc<;0tGX8~)DidoOdKl&U8lZ&6d)^*KDr-Uue+_r+yDRxKV_pA3yD`EppNN4Y3DdRH_J8{{eh=x-Krb2 z9|2#Kb>`-Ru+z-8A@6A02eE3Qf@gZW>E$BlJ?%V&)EC$FiXI)jSF5=$H6Qm06Z$Sv zD{FndYN7+-&tkE7s^Sy5Rt8~b>fh|wVbp+3|#0^0mltYx-Q_wV&K?d+FL8(sJih9fI5v3?Gyfi0Sb2tcL#7xTQKnJtn zM-Vir9|HJu&)u@FK1CXjn12O!&R?Hon^F}yo;3^ex^Nz^A}(U6Q_!e7@07MyUdE>tPmS*0&vHtIsX0yukKv`lwgmg zT9d^ z8;gzKAYd!QYnwlxtK1T5(cSpB1k8+6WpydF?4eekPlSgrx!@l)YvXkhYb`YJ9k4&r zUGjVL*X0pSebM}H=&9bY;MJLyNAjz}0xSsvwR}$jpAia?Wu)E(w%9>*uAC2pnPV2> z1R#(ln-*gy!Kx&$G8Q>7Gv`xi{#9A*$UNt~A$lkSLe`wCf6cdj-U}R=o2+7MDwO-? z-GSX_Lk-djiVwT1-kxV~*Z_Q{ujOgnpMi|e8RE0M%*inOas|r$PP|95N0D|}Et>5h z=f6M`BjrM!YPyDticPIM6>Howbr!gcW#wmuN;rNzNK+K1nixwvhUIuKbTkdr!d*CG zR~{Qo%zJ%~kvZEE9kif@&axozt9v)+`bhGG!~fnykaaxlK*R*Sr-E3(ElhB zhI8|ZU8lhxYysZpDUU*6Q*&1tD?n$6s|R;c<33Vg1#Jx#S@d1$?!S19C}V&j$cJw| zz}AA+Z&)&+q!N}}kz2K-H&rg~`#np$*&DH7x^y@ot~{kYp$!2o1YwxDW-U6AGl37c znN$l|K|2IL-0T1V0LmVZWkOvAHky|eFtF~ENHr|l36i-p{g}+-qb9(r5iz-42pPi} zVEEP^r0*^H3%_~IsrC4}p*9f*3j{WzCRaw60@9qN?0@vZ$}7QHbDVw@6cbr21Ai4 zCSSWAOjO2!D+bGy!thrqn?x1cOo-SJwb)n{L>BtP)4RxKrcJQfJfer?)xeuugd2DX^F4hpvmYnqOz z?U$6&t}Hfk=~N=*_U3%GD%Z?e0ppGSGA_tINvzd+Y<34MK#bGw3?zMnTdW|(hOyz) z44Q`b4Blr0%s4{&bc9oJ0&4l!>uVGm&>ZAWP(*fi=^s3}R9gX>jI(0z`pa3gxL=~= zCty40gc-RarFcC$DF3LWCpEMW49+lKK4RbVgf{xLulaHx|a-1Gw>khYNH9SjhmgWYnzUx&4IDACLeN5|b-( z#30h8QE+RGk6lS@rA7qBd`dtjmBsZ>4Hds;iNUZ^n+a9S5a5Wd72s&*3m7#g_>36R zX2p1I-9#ugNqG_uvXFF$YC!bn`>pvBZvt}MhRN(lT8AI-Qpf0&oYVF-!3>DBIQ<+z>6Yb%j)!YfM>CG zDKKh#8M@&_L~UzZOOi_s43~}4lGBF|1wp>KbkcwNFVd=mXt}|!9Lq28oS_tWW2y32 zafhqQo_}h%4}!Ro=vY|LnqUx1PUvn0Tm|jV7g#4$FROp5j|;#c;e&0UQDHi5Tg=U= zQq)k)HdPJ2fR@q_6HYJgXx8~8hM$$Xwr&;4qB)~RDq>N_8@CT0Vu$xFA%_O z#=8W%&YTzQIr*)*!>^qm9gjZex zJwE)qCa@wMHTL6zD2<+ao7V=(H37<|+}Sz9iookM`E(}{WQuIRPON)3$`9cUFdGjL zt{G(=m+Y8Bg~Du{i;f_ks}#K3=n=Od-uJil5~E&I8adBIC3~QNIi`rnX&Ae6pM$W& z9E3fj^)CD~oZo40e+hQdG#MGKals6&l%mC(WYjJ;8}T)9gzgO*BG@_Ux-_%gHfXL} zPmmG16=zmU$JuuJCxBN@f^VeUHTjRcs~D&frX@Lo+yK>{T7CdN@^Y_efoB14kRTYL z3YLNhHoKTZ5MSn4OtFsI6q>EI#@>uw9OA@LisiZ@e?O^-E3GiM1c%Mr>t*Jgk2ukLQHz|4hLq17jz6(vz0R)*6jJul_b#pe^u|hlj zTb3Nd950D@L&dP>aCCOw`ng5n{o~``n4;?V$O?xOOe|eC4ccL41@Z)sljv>mZ#Z2! z!;|b^^iEZO6YNYFbf*n{R5Yr5jmR?vADkG;4r=aGhSYNI)ikgCr+lMxrx>Ygh~1+; zBr5AEB5JVvg=Yx+{}@f5Vl~d7Fem1oIBqFF7&e@*i7+SYW%^b`A8G7ImAZ*%3eHGDquJ~$7%R3=Mc7r>>J?FHF z=z2kZME>wq{vLlxo45$l#wnbVFh0&MXPoqHUUU)LX}SFLKf3KCAc&-&w#+FvIeN^6 zMq6ZlgQrvLYjXW(`6rz99Bph~CcpmzQkDZf!1&CtzE`I0|==RpJUB`d< z-|srxa?jO~w>cE86;C#pgA{6}1Z!KXpRRlpnD@y&S05P4{!3fa z*MH~INV(3o$Y1#P`I2MK7Hc$vI^VaZqCwmsnqPrKf6THnQ1!p)q?^uXSB$etfCTi8 z=Yk(GIR>QM)INtDLrap3L4neH&<~n0001OrG;4lIIf8ii&HR;{QK61Lq=v&M1OFm# zBiNimV;65cTlt9cq9jrK9nf&Y#3^hqnRNtE6VzKeA=q-P=aH}d_}b4@ab-(Y@Soe9 z?3WA_2f4YhV}-2oghK~h{~WwlRujp=pPSLgr&QP%&!n4U?Y}h@qDdu3dHeB2wY(jb z`SRj_0ZUY+{=OU}V0`);`Kw2Lbwp6uK8Vl6_$kuiOEwBOJUM(aV)|Yo`+f+!0X`Dh z{%4YwQgJ$s^x4kpYS3SkqBHS63Us(Uj0_&RCdnN0b4Dq%;G{mPuF<|dkG;l3hKkLn z6ou7?bMPgR?F3vDc%1x&xj<(j0Dlj@8_y%ezW<0ckZxi+j&bf@R-upm<)=jJuestg zzi6kCkJ*vblSc-ZvH2fUa!Z|f<4MgQA$d4I3wsN|iXv99%)S>N!}BulK2y;PTW g;YVsIyGr-EB?1y;tJTbuTEJY<*^dAK000000Q$enG5`Po literal 0 HcmV?d00001 diff --git a/src/Zoit/Zoitapp/templates/policepost.html b/src/Zoit/Zoitapp/templates/policepost.html new file mode 100644 index 0000000..eefe9db --- /dev/null +++ b/src/Zoit/Zoitapp/templates/policepost.html @@ -0,0 +1,93 @@ + + + + + + + + + + Welcome to Emergency room! + + + +
+ +


+ +

Welcome To Emergency Room for Accident, to Search for the Nearest Hospital around


+

Welcome to the Nearest Police Post, just wanna let you know police is your friend







+ + + + + + + + + \ No newline at end of file diff --git a/src/Zoit/Zoitapp/templates/reglogin.html b/src/Zoit/Zoitapp/templates/reglogin.html new file mode 100644 index 0000000..3bc4c11 --- /dev/null +++ b/src/Zoit/Zoitapp/templates/reglogin.html @@ -0,0 +1,157 @@ + + + + + + + + + + Welcome to Emergency room! + + + +
+ +


+ +

Welcome To Emergency Room for Accident, to Search for the Nearest Hospital around


+ +
+
+ +


+ + + + + + + + + + \ No newline at end of file diff --git a/src/Zoit/Zoitapp/templates/style.css b/src/Zoit/Zoitapp/templates/style.css new file mode 100644 index 0000000..e558617 --- /dev/null +++ b/src/Zoit/Zoitapp/templates/style.css @@ -0,0 +1,231 @@ +* +{ + padding: 0; + margin: 0; + box-sizing: border-box; + + +} +body +{ + background-image: url(background.jpg); + background-size: cover; + background-position: center; + box-sizing: border-box; + font-family: sans-serif; +} +.menu-bar +{ + background:#3b5998; + text-align: center; +} +.menu-bar ul +{ + display: inline-flex; + list-style: none; + color: #fff; +} +.menu-bar ul li +{ + width: 120px; + margin: 15px; + padding: 15; +} +.menu-bar ul li a +{ + text-decoration: none; + color: #fff; +} +.active .menu-bar ul li:hover +{ + color: #2bab0d; + border-radius: 3px; + +} +.menu-bar .fa +{ + margin-right: 8px; + +} +.sub-menu-1 +{ + display: none; +} +.menu-bar ul li:hover .sub-menu-1 +{ + display: block; + position: absolute; + background: rgb(0,100,0 ); + margin-top: 15px; + margin-left: -15px; + +} +.menu-bar ul li:hover .sub-menu-1 +{ + display: block; +} + + +.site-footer +{ + background-color:#3b5998; + padding:45px 0 20px; + font-size:15px; + line-height:24px; + color:white; +} +.site-footer hr +{ + border-top-color:#bbb; + opacity:0.5 +} +.site-footer hr.small +{ + margin:20px 0 +} +.site-footer h6 +{ + color:#fff; + font-size:16px; + text-transform:uppercase; + margin-top:5px; + letter-spacing:2px +} +.site-footer a +{ + color:white; +} +.site-footer a:hover +{ + color:#3366cc; + text-decoration:none; +} +.footer-links +{ + padding-left:0; + list-style:none +} +.footer-links li +{ + display:block +} +.footer-links a +{ + color:white +} +.footer-links a:active,.footer-links a:focus,.footer-links a:hover +{ + color:#3366cc; + text-decoration:none; +} +.footer-links.inline li +{ + display:inline-block +} +.site-footer .social-icons +{ + text-align:right +} +.site-footer .social-icons a +{ + width:40px; + height:40px; + line-height:40px; + margin-left:6px; + margin-right:0; + border-radius:100%; + background-color:#33353d +} +.copyright-text +{ + margin:0 +} +@media (max-width:991px) +{ + .site-footer [class^=col-] + { + margin-bottom:30px + } +} +@media (max-width:767px) +{ + .site-footer + { + padding-bottom:0 + } + .site-footer .copyright-text,.site-footer .social-icons + { + text-align:center + } +} +.social-icons +{ + padding-left:0; + margin-bottom:0; + list-style:none +} +.social-icons li +{ + display:inline-block; + margin-bottom:4px +} +.social-icons li.title +{ + margin-right:15px; + text-transform:uppercase; + color:#96a2b2; + font-weight:700; + font-size:13px +} +.social-icons a{ + background-color:#eceeef; + color:#818a91; + font-size:16px; + display:inline-block; + line-height:44px; + width:44px; + height:44px; + text-align:center; + margin-right:8px; + border-radius:100%; + -webkit-transition:all .2s linear; + -o-transition:all .2s linear; + transition:all .2s linear +} +.social-icons a:active,.social-icons a:focus,.social-icons a:hover +{ + color:#fff; + background-color:#29aafe +} +.social-icons.size-sm a +{ + line-height:34px; + height:34px; + width:34px; + font-size:14px +} +.social-icons a.facebook:hover +{ + background-color:#3b5998 +} +.social-icons a.twitter:hover +{ + background-color:#00aced +} +.social-icons a.linkedin:hover +{ + background-color:#007bb6 +} +.social-icons a.dribbble:hover +{ + background-color:#ea4c89 +} +@media (max-width:767px) +{ + .social-icons li.title + { + display:block; + margin-right:0; + font-weight:600 + } +} \ No newline at end of file diff --git a/src/Zoit/Zoitapp/tests.py b/src/Zoit/Zoitapp/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/src/Zoit/Zoitapp/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/src/Zoit/Zoitapp/views.py b/src/Zoit/Zoitapp/views.py new file mode 100644 index 0000000..a16b92a --- /dev/null +++ b/src/Zoit/Zoitapp/views.py @@ -0,0 +1,7 @@ +from django.shortcuts import render + +# Create your views here. + + +def admin(request): + return render(request, 'admin/') \ No newline at end of file diff --git a/src/Zoit/file_data.json b/src/Zoit/file_data.json new file mode 100644 index 0000000..f925029 --- /dev/null +++ b/src/Zoit/file_data.json @@ -0,0 +1,3246 @@ +[ + { + "state": { + "name": "Abia State", + "id": 1, + "locals": [ + { + "name": "Aba South", + "id": 1 + }, + { + "name": "Arochukwu", + "id": 2 + }, + { + "name": "Bende", + "id": 3 + }, + { + "name": "Ikwuano", + "id": 4 + }, + { + "name": "Isiala Ngwa North", + "id": 5 + }, + { + "name": "Isiala Ngwa South", + "id": 6 + }, + { + "name": "Isuikwuato", + "id": 7 + }, + { + "name": "Obi Ngwa", + "id": 8 + }, + { + "name": "Ohafia", + "id": 9 + }, + { + "name": "Osisioma", + "id": 10 + }, + { + "name": "Ugwunagbo", + "id": 11 + }, + { + "name": "Ukwa East", + "id": 12 + }, + { + "name": "Ukwa West", + "id": 13 + }, + { + "name": "Umuahia North", + "id": 14 + }, + { + "name": "Umuahia South", + "id": 15 + }, + { + "name": "Umu Nneochi", + "id": 16 + } + ] + } + }, + { + "state": { + "name": "Adamawa State", + "id": 2, + "locals": [ + { + "name": "Fufure", + "id": 1 + }, + { + "name": "Ganye", + "id": 2 + }, + { + "name": "Gayuk", + "id": 3 + }, + { + "name": "Gombi", + "id": 4 + }, + { + "name": "Grie", + "id": 5 + }, + { + "name": "Hong", + "id": 6 + }, + { + "name": "Jada", + "id": 7 + }, + { + "name": "Lamurde", + "id": 8 + }, + { + "name": "Madagali", + "id": 9 + }, + { + "name": "Maiha", + "id": 10 + }, + { + "name": "Mayo Belwa", + "id": 11 + }, + { + "name": "Michika", + "id": 12 + }, + { + "name": "Mubi North", + "id": 13 + }, + { + "name": "Mubi South", + "id": 14 + }, + { + "name": "Numan", + "id": 15 + }, + { + "name": "Shelleng", + "id": 16 + }, + { + "name": "Song", + "id": 17 + }, + { + "name": "Toungo", + "id": 18 + }, + { + "name": "Yola North", + "id": 19 + }, + { + "name": "Yola South", + "id": 20 + } + ] + } + }, + { + "state": { + "name": "Akwa Ibom State", + "id": 3, + "locals": [ + { + "name": "Eastern Obolo", + "id": 1 + }, + { + "name": "Eket", + "id": 2 + }, + { + "name": "Esit Eket", + "id": 3 + }, + { + "name": "Essien Udim", + "id": 4 + }, + { + "name": "Etim Ekpo", + "id": 5 + }, + { + "name": "Etinan", + "id": 6 + }, + { + "name": "Ibeno", + "id": 7 + }, + { + "name": "Ibesikpo Asutan", + "id": 8 + }, + { + "name": "Ibiono-Ibom", + "id": 9 + }, + { + "name": "Ika", + "id": 10 + }, + { + "name": "Ikono", + "id": 11 + }, + { + "name": "Ikot Abasi", + "id": 12 + }, + { + "name": "Ikot Ekpene", + "id": 13 + }, + { + "name": "Ini", + "id": 14 + }, + { + "name": "Itu", + "id": 15 + }, + { + "name": "Mbo", + "id": 16 + }, + { + "name": "Mkpat-Enin", + "id": 17 + }, + { + "name": "Nsit-Atai", + "id": 18 + }, + { + "name": "Nsit-Ibom", + "id": 19 + }, + { + "name": "Nsit-Ubium", + "id": 20 + }, + { + "name": "Obot Akara", + "id": 21 + }, + { + "name": "Okobo", + "id": 22 + }, + { + "name": "Onna", + "id": 23 + }, + { + "name": "Oron", + "id": 24 + }, + { + "name": "Oruk Anam", + "id": 25 + }, + { + "name": "Udung-Uko", + "id": 26 + }, + { + "name": "Ukanafun", + "id": 27 + }, + { + "name": "Uruan", + "id": 28 + }, + { + "name": "Urue-Offong/Oruko", + "id": 29 + }, + { + "name": "Uyo", + "id": 30 + } + ] + } + }, + { + "state": { + "name": "Anambra State", + "id": 4, + "locals": [ + { + "name": "Anambra East", + "id": 1 + }, + { + "name": "Anambra West", + "id": 2 + }, + { + "name": "Anaocha", + "id": 3 + }, + { + "name": "Awka North", + "id": 4 + }, + { + "name": "Awka South", + "id": 5 + }, + { + "name": "Ayamelum", + "id": 6 + }, + { + "name": "Dunukofia", + "id": 7 + }, + { + "name": "Ekwusigo", + "id": 8 + }, + { + "name": "Idemili North", + "id": 9 + }, + { + "name": "Idemili South", + "id": 10 + }, + { + "name": "Ihiala", + "id": 11 + }, + { + "name": "Njikoka", + "id": 12 + }, + { + "name": "Nnewi North", + "id": 13 + }, + { + "name": "Nnewi South", + "id": 14 + }, + { + "name": "Ogbaru", + "id": 15 + }, + { + "name": "Onitsha North", + "id": 16 + }, + { + "name": "Onitsha South", + "id": 17 + }, + { + "name": "Orumba North", + "id": 18 + }, + { + "name": "Orumba South", + "id": 19 + }, + { + "name": "Oyi", + "id": 20 + } + ] + } + }, + { + "state": { + "name": "Bauchi State", + "id": 5, + "locals": [ + { + "name": "Bauchi", + "id": 1 + }, + { + "name": "Bogoro", + "id": 2 + }, + { + "name": "Damban", + "id": 3 + }, + { + "name": "Darazo", + "id": 4 + }, + { + "name": "Dass", + "id": 5 + }, + { + "name": "Gamawa", + "id": 6 + }, + { + "name": "Ganjuwa", + "id": 7 + }, + { + "name": "Giade", + "id": 8 + }, + { + "name": "Itas/Gadau", + "id": 9 + }, + { + "name": "Jama'are", + "id": 10 + }, + { + "name": "Katagum", + "id": 11 + }, + { + "name": "Kirfi", + "id": 12 + }, + { + "name": "Misau", + "id": 13 + }, + { + "name": "Ningi", + "id": 14 + }, + { + "name": "Shira", + "id": 15 + }, + { + "name": "Tafawa Balewa", + "id": 16 + }, + { + "name": "Toro", + "id": 17 + }, + { + "name": "Warji", + "id": 18 + }, + { + "name": "Zaki", + "id": 19 + } + ] + } + }, + { + "state": { + "name": "Bayelsa State", + "id": 6, + "locals": [ + { + "name": "Ekeremor", + "id": 1 + }, + { + "name": "Kolokuma/Opokuma", + "id": 2 + }, + { + "name": "Nembe", + "id": 3 + }, + { + "name": "Ogbia", + "id": 4 + }, + { + "name": "Sagbama", + "id": 5 + }, + { + "name": "Southern Ijaw", + "id": 6 + }, + { + "name": "Yenagoa", + "id": 7 + } + ] + } + }, + { + "state": { + "name": "Benue State", + "id": 7, + "locals": [ + { + "name": "Apa", + "id": 1 + }, + { + "name": "Ado", + "id": 2 + }, + { + "name": "Buruku", + "id": 3 + }, + { + "name": "Gboko", + "id": 4 + }, + { + "name": "Guma", + "id": 5 + }, + { + "name": "Gwer East", + "id": 6 + }, + { + "name": "Gwer West", + "id": 7 + }, + { + "name": "Katsina-Ala", + "id": 8 + }, + { + "name": "Konshisha", + "id": 9 + }, + { + "name": "Kwande", + "id": 10 + }, + { + "name": "Logo", + "id": 11 + }, + { + "name": "Makurdi", + "id": 12 + }, + { + "name": "Obi", + "id": 13 + }, + { + "name": "Ogbadibo", + "id": 14 + }, + { + "name": "Ohimini", + "id": 15 + }, + { + "name": "Oju", + "id": 16 + }, + { + "name": "Okpokwu", + "id": 17 + }, + { + "name": "Oturkpo", + "id": 18 + }, + { + "name": "Tarka", + "id": 19 + }, + { + "name": "Ukum", + "id": 20 + }, + { + "name": "Ushongo", + "id": 21 + }, + { + "name": "Vandeikya", + "id": 22 + } + ] + } + }, + { + "state": { + "name": "Borno State", + "id": 8, + "locals": [ + { + "name": "Askira/Uba", + "id": 1 + }, + { + "name": "Bama", + "id": 2 + }, + { + "name": "Bayo", + "id": 3 + }, + { + "name": "Biu", + "id": 4 + }, + { + "name": "Chibok", + "id": 5 + }, + { + "name": "Damboa", + "id": 6 + }, + { + "name": "Dikwa", + "id": 7 + }, + { + "name": "Gubio", + "id": 8 + }, + { + "name": "Guzamala", + "id": 9 + }, + { + "name": "Gwoza", + "id": 10 + }, + { + "name": "Hawul", + "id": 11 + }, + { + "name": "Jere", + "id": 12 + }, + { + "name": "Kaga", + "id": 13 + }, + { + "name": "Kala/Balge", + "id": 14 + }, + { + "name": "Konduga", + "id": 15 + }, + { + "name": "Kukawa", + "id": 16 + }, + { + "name": "Kwaya Kusar", + "id": 17 + }, + { + "name": "Mafa", + "id": 18 + }, + { + "name": "Magumeri", + "id": 19 + }, + { + "name": "Maiduguri", + "id": 20 + }, + { + "name": "Marte", + "id": 21 + }, + { + "name": "Mobbar", + "id": 22 + }, + { + "name": "Monguno", + "id": 23 + }, + { + "name": "Ngala", + "id": 24 + }, + { + "name": "Nganzai", + "id": 25 + }, + { + "name": "Shani", + "id": 26 + } + ] + } + }, + { + "state": { + "name": "Cross River State", + "id": 9, + "locals": [ + { + "name": "Akamkpa", + "id": 1 + }, + { + "name": "Akpabuyo", + "id": 2 + }, + { + "name": "Bakassi", + "id": 3 + }, + { + "name": "Bekwarra", + "id": 4 + }, + { + "name": "Biase", + "id": 5 + }, + { + "name": "Boki", + "id": 6 + }, + { + "name": "Calabar Municipal", + "id": 7 + }, + { + "name": "Calabar South", + "id": 8 + }, + { + "name": "Etung", + "id": 9 + }, + { + "name": "Ikom", + "id": 10 + }, + { + "name": "Obanliku", + "id": 11 + }, + { + "name": "Obubra", + "id": 12 + }, + { + "name": "Obudu", + "id": 13 + }, + { + "name": "Odukpani", + "id": 14 + }, + { + "name": "Ogoja", + "id": 15 + }, + { + "name": "Yakuur", + "id": 16 + }, + { + "name": "Yala", + "id": 17 + } + ] + } + }, + { + "state": { + "name": "Delta State", + "id": 10, + "locals": [ + { + "name": "Aniocha South", + "id": 1 + }, + { + "name": "Bomadi", + "id": 2 + }, + { + "name": "Burutu", + "id": 3 + }, + { + "name": "Ethiope East", + "id": 4 + }, + { + "name": "Ethiope West", + "id": 5 + }, + { + "name": "Ika North East", + "id": 6 + }, + { + "name": "Ika South", + "id": 7 + }, + { + "name": "Isoko North", + "id": 8 + }, + { + "name": "Isoko South", + "id": 9 + }, + { + "name": "Ndokwa East", + "id": 10 + }, + { + "name": "Ndokwa West", + "id": 11 + }, + { + "name": "Okpe", + "id": 12 + }, + { + "name": "Oshimili North", + "id": 13 + }, + { + "name": "Oshimili South", + "id": 14 + }, + { + "name": "Patani", + "id": 15 + }, + { + "name": "Sapele", + "id": 16 + }, + { + "name": "Udu", + "id": 17 + }, + { + "name": "Ughelli North", + "id": 18 + }, + { + "name": "Ughelli South", + "id": 19 + }, + { + "name": "Ukwuani", + "id": 20 + }, + { + "name": "Uvwie", + "id": 21 + }, + { + "name": "Warri North", + "id": 22 + }, + { + "name": "Warri South", + "id": 23 + }, + { + "name": "Warri South West", + "id": 24 + } + ] + } + }, + { + "state": { + "name": "Ebonyi State", + "id": 11, + "locals": [ + { + "name": "Afikpo North", + "id": 1 + }, + { + "name": "Afikpo South", + "id": 2 + }, + { + "name": "Ebonyi", + "id": 3 + }, + { + "name": "Ezza North", + "id": 4 + }, + { + "name": "Ezza South", + "id": 5 + }, + { + "name": "Ikwo", + "id": 6 + }, + { + "name": "Ishielu", + "id": 7 + }, + { + "name": "Ivo", + "id": 8 + }, + { + "name": "Izzi", + "id": 9 + }, + { + "name": "Ohaozara", + "id": 10 + }, + { + "name": "Ohaukwu", + "id": 11 + }, + { + "name": "Onicha", + "id": 12 + } + ] + } + }, + { + "state": { + "name": "Edo State", + "id": 12, + "locals": [ + { + "name": "Egor", + "id": 1 + }, + { + "name": "Esan Central", + "id": 2 + }, + { + "name": "Esan North-East", + "id": 3 + }, + { + "name": "Esan South-East", + "id": 4 + }, + { + "name": "Esan West", + "id": 5 + }, + { + "name": "Etsako Central", + "id": 6 + }, + { + "name": "Etsako East", + "id": 7 + }, + { + "name": "Etsako West", + "id": 8 + }, + { + "name": "Igueben", + "id": 9 + }, + { + "name": "Ikpoba Okha", + "id": 10 + }, + { + "name": "Orhionmwon", + "id": 11 + }, + { + "name": "Oredo", + "id": 12 + }, + { + "name": "Ovia North-East", + "id": 13 + }, + { + "name": "Ovia South-West", + "id": 14 + }, + { + "name": "Owan East", + "id": 15 + }, + { + "name": "Owan West", + "id": 16 + }, + { + "name": "Uhunmwonde", + "id": 17 + } + ] + } + }, + { + "state": { + "name": "Ekiti State", + "id": 13, + "locals": [ + { + "name": "Efon", + "id": 1 + }, + { + "name": "Ekiti East", + "id": 2 + }, + { + "name": "Ekiti South-West", + "id": 3 + }, + { + "name": "Ekiti West", + "id": 4 + }, + { + "name": "Emure", + "id": 5 + }, + { + "name": "Gbonyin", + "id": 6 + }, + { + "name": "Ido Osi", + "id": 7 + }, + { + "name": "Ijero", + "id": 8 + }, + { + "name": "Ikere", + "id": 9 + }, + { + "name": "Ikole", + "id": 10 + }, + { + "name": "Ilejemeje", + "id": 11 + }, + { + "name": "Irepodun/Ifelodun", + "id": 12 + }, + { + "name": "Ise/Orun", + "id": 13 + }, + { + "name": "Moba", + "id": 14 + }, + { + "name": "Oye", + "id": 15 + } + ] + } + }, + { + "state": { + "name": "Enugu State", + "id": 14, + "locals": [ + { + "name": "Awgu", + "id": 1 + }, + { + "name": "Enugu East", + "id": 2 + }, + { + "name": "Enugu North", + "id": 3 + }, + { + "name": "Enugu South", + "id": 4 + }, + { + "name": "Ezeagu", + "id": 5 + }, + { + "name": "Igbo Etiti", + "id": 6 + }, + { + "name": "Igbo Eze North", + "id": 7 + }, + { + "name": "Igbo Eze South", + "id": 8 + }, + { + "name": "Isi Uzo", + "id": 9 + }, + { + "name": "Nkanu East", + "id": 10 + }, + { + "name": "Nkanu West", + "id": 11 + }, + { + "name": "Nsukka", + "id": 12 + }, + { + "name": "Oji River", + "id": 13 + }, + { + "name": "Udenu", + "id": 14 + }, + { + "name": "Udi", + "id": 15 + }, + { + "name": "Uzo Uwani", + "id": 16 + } + ] + } + }, + { + "state": { + "name": "FCT", + "id": 15, + "locals": [ + { + "name": "Bwari", + "id": 1 + }, + { + "name": "Gwagwalada", + "id": 2 + }, + { + "name": "Kuje", + "id": 3 + }, + { + "name": "Kwali", + "id": 4 + }, + { + "name": "Municipal Area Council", + "id": 5 + } + ] + } + }, + { + "state": { + "name": "Gombe State", + "id": 16, + "locals": [ + { + "name": "Balanga", + "id": 1 + }, + { + "name": "Billiri", + "id": 2 + }, + { + "name": "Dukku", + "id": 3 + }, + { + "name": "Funakaye", + "id": 4 + }, + { + "name": "Gombe", + "id": 5 + }, + { + "name": "Kaltungo", + "id": 6 + }, + { + "name": "Kwami", + "id": 7 + }, + { + "name": "Nafada", + "id": 8 + }, + { + "name": "Shongom", + "id": 9 + }, + { + "name": "Yamaltu/Deba", + "id": 10 + } + ] + } + }, + { + "state": { + "name": "Imo State", + "id": 17, + "locals": [ + { + "name": "Ahiazu Mbaise", + "id": 1 + }, + { + "name": "Ehime Mbano", + "id": 2 + }, + { + "name": "Ezinihitte", + "id": 3 + }, + { + "name": "Ideato North", + "id": 4 + }, + { + "name": "Ideato South", + "id": 5 + }, + { + "name": "Ihitte/Uboma", + "id": 6 + }, + { + "name": "Ikeduru", + "id": 7 + }, + { + "name": "Isiala Mbano", + "id": 8 + }, + { + "name": "Isu", + "id": 9 + }, + { + "name": "Mbaitoli", + "id": 10 + }, + { + "name": "Ngor Okpala", + "id": 11 + }, + { + "name": "Njaba", + "id": 12 + }, + { + "name": "Nkwerre", + "id": 13 + }, + { + "name": "Nwangele", + "id": 14 + }, + { + "name": "Obowo", + "id": 15 + }, + { + "name": "Oguta", + "id": 16 + }, + { + "name": "Ohaji/Egbema", + "id": 17 + }, + { + "name": "Okigwe", + "id": 18 + }, + { + "name": "Orlu", + "id": 19 + }, + { + "name": "Orsu", + "id": 20 + }, + { + "name": "Oru East", + "id": 21 + }, + { + "name": "Oru West", + "id": 22 + }, + { + "name": "Owerri Municipal", + "id": 23 + }, + { + "name": "Owerri North", + "id": 24 + }, + { + "name": "Owerri West", + "id": 25 + }, + { + "name": "Unuimo", + "id": 26 + } + ] + } + }, + { + "state": { + "name": "Jigawa State", + "id": 18, + "locals": [ + { + "name": "Babura", + "id": 1 + }, + { + "name": "Biriniwa", + "id": 2 + }, + { + "name": "Birnin Kudu", + "id": 3 + }, + { + "name": "Buji", + "id": 4 + }, + { + "name": "Dutse", + "id": 5 + }, + { + "name": "Gagarawa", + "id": 6 + }, + { + "name": "Garki", + "id": 7 + }, + { + "name": "Gumel", + "id": 8 + }, + { + "name": "Guri", + "id": 9 + }, + { + "name": "Gwaram", + "id": 10 + }, + { + "name": "Gwiwa", + "id": 11 + }, + { + "name": "Hadejia", + "id": 12 + }, + { + "name": "Jahun", + "id": 13 + }, + { + "name": "Kafin Hausa", + "id": 14 + }, + { + "name": "Kazaure", + "id": 15 + }, + { + "name": "Kiri Kasama", + "id": 16 + }, + { + "name": "Kiyawa", + "id": 17 + }, + { + "name": "Kaugama", + "id": 18 + }, + { + "name": "Maigatari", + "id": 19 + }, + { + "name": "Malam Madori", + "id": 20 + }, + { + "name": "Miga", + "id": 21 + }, + { + "name": "Ringim", + "id": 22 + }, + { + "name": "Roni", + "id": 23 + }, + { + "name": "Sule Tankarkar", + "id": 24 + }, + { + "name": "Taura", + "id": 25 + }, + { + "name": "Yankwashi", + "id": 26 + } + ] + } + }, + { + "state": { + "name": "Kaduna State", + "id": 19, + "locals": [ + { + "name": "Chikun", + "id": 1 + }, + { + "name": "Giwa", + "id": 2 + }, + { + "name": "Igabi", + "id": 3 + }, + { + "name": "Ikara", + "id": 4 + }, + { + "name": "Jaba", + "id": 5 + }, + { + "name": "Jema'a", + "id": 6 + }, + { + "name": "Kachia", + "id": 7 + }, + { + "name": "Kaduna North", + "id": 8 + }, + { + "name": "Kaduna South", + "id": 9 + }, + { + "name": "Kagarko", + "id": 10 + }, + { + "name": "Kajuru", + "id": 11 + }, + { + "name": "Kaura", + "id": 12 + }, + { + "name": "Kauru", + "id": 13 + }, + { + "name": "Kubau", + "id": 14 + }, + { + "name": "Kudan", + "id": 15 + }, + { + "name": "Lere", + "id": 16 + }, + { + "name": "Makarfi", + "id": 17 + }, + { + "name": "Sabon Gari", + "id": 18 + }, + { + "name": "Sanga", + "id": 19 + }, + { + "name": "Soba", + "id": 20 + }, + { + "name": "Zangon Kataf", + "id": 21 + }, + { + "name": "Zaria", + "id": 22 + } + ] + } + }, + { + "state": { + "name": "Kano State", + "id": 20, + "locals": [ + { + "name": "Albasu", + "id": 1 + }, + { + "name": "Bagwai", + "id": 2 + }, + { + "name": "Bebeji", + "id": 3 + }, + { + "name": "Bichi", + "id": 4 + }, + { + "name": "Bunkure", + "id": 5 + }, + { + "name": "Dala", + "id": 6 + }, + { + "name": "Dambatta", + "id": 7 + }, + { + "name": "Dawakin Kudu", + "id": 8 + }, + { + "name": "Dawakin Tofa", + "id": 9 + }, + { + "name": "Doguwa", + "id": 10 + }, + { + "name": "Fagge", + "id": 11 + }, + { + "name": "Gabasawa", + "id": 12 + }, + { + "name": "Garko", + "id": 13 + }, + { + "name": "Garun Mallam", + "id": 14 + }, + { + "name": "Gaya", + "id": 15 + }, + { + "name": "Gezawa", + "id": 16 + }, + { + "name": "Gwale", + "id": 17 + }, + { + "name": "Gwarzo", + "id": 18 + }, + { + "name": "Kabo", + "id": 19 + }, + { + "name": "Kano Municipal", + "id": 20 + }, + { + "name": "Karaye", + "id": 21 + }, + { + "name": "Kibiya", + "id": 22 + }, + { + "name": "Kiru", + "id": 23 + }, + { + "name": "Kumbotso", + "id": 24 + }, + { + "name": "Kunchi", + "id": 25 + }, + { + "name": "Kura", + "id": 26 + }, + { + "name": "Madobi", + "id": 27 + }, + { + "name": "Makoda", + "id": 28 + }, + { + "name": "Minjibir", + "id": 29 + }, + { + "name": "Nasarawa", + "id": 30 + }, + { + "name": "Rano", + "id": 31 + }, + { + "name": "Rimin Gado", + "id": 32 + }, + { + "name": "Rogo", + "id": 33 + }, + { + "name": "Shanono", + "id": 34 + }, + { + "name": "Sumaila", + "id": 35 + }, + { + "name": "Takai", + "id": 36 + }, + { + "name": "Tarauni", + "id": 37 + }, + { + "name": "Tofa", + "id": 38 + }, + { + "name": "Tsanyawa", + "id": 39 + }, + { + "name": "Tudun Wada", + "id": 40 + }, + { + "name": "Ungogo", + "id": 41 + }, + { + "name": "Warawa", + "id": 42 + }, + { + "name": "Wudil", + "id": 43 + } + ] + } + }, + { + "state": { + "name": "Katsina State", + "id": 21, + "locals": [ + { + "name": "Batagarawa", + "id": 1 + }, + { + "name": "Batsari", + "id": 2 + }, + { + "name": "Baure", + "id": 3 + }, + { + "name": "Bindawa", + "id": 4 + }, + { + "name": "Charanchi", + "id": 5 + }, + { + "name": "Dandume", + "id": 6 + }, + { + "name": "Danja", + "id": 7 + }, + { + "name": "Dan Musa", + "id": 8 + }, + { + "name": "Daura", + "id": 9 + }, + { + "name": "Dutsi", + "id": 10 + }, + { + "name": "Dutsin Ma", + "id": 11 + }, + { + "name": "Faskari", + "id": 12 + }, + { + "name": "Funtua", + "id": 13 + }, + { + "name": "Ingawa", + "id": 14 + }, + { + "name": "Jibia", + "id": 15 + }, + { + "name": "Kafur", + "id": 16 + }, + { + "name": "Kaita", + "id": 17 + }, + { + "name": "Kankara", + "id": 18 + }, + { + "name": "Kankia", + "id": 19 + }, + { + "name": "Katsina", + "id": 20 + }, + { + "name": "Kurfi", + "id": 21 + }, + { + "name": "Kusada", + "id": 22 + }, + { + "name": "Mai'Adua", + "id": 23 + }, + { + "name": "Malumfashi", + "id": 24 + }, + { + "name": "Mani", + "id": 25 + }, + { + "name": "Mashi", + "id": 26 + }, + { + "name": "Matazu", + "id": 27 + }, + { + "name": "Musawa", + "id": 28 + }, + { + "name": "Rimi", + "id": 29 + }, + { + "name": "Sabuwa", + "id": 30 + }, + { + "name": "Safana", + "id": 31 + }, + { + "name": "Sandamu", + "id": 32 + }, + { + "name": "Zango", + "id": 33 + } + ] + } + }, + { + "state": { + "name": "Kebbi State", + "id": 22, + "locals": [ + { + "name": "Arewa Dandi", + "id": 1 + }, + { + "name": "Argungu", + "id": 2 + }, + { + "name": "Augie", + "id": 3 + }, + { + "name": "Bagudo", + "id": 4 + }, + { + "name": "Birnin Kebbi", + "id": 5 + }, + { + "name": "Bunza", + "id": 6 + }, + { + "name": "Dandi", + "id": 7 + }, + { + "name": "Fakai", + "id": 8 + }, + { + "name": "Gwandu", + "id": 9 + }, + { + "name": "Jega", + "id": 10 + }, + { + "name": "Kalgo", + "id": 11 + }, + { + "name": "Koko/Besse", + "id": 12 + }, + { + "name": "Maiyama", + "id": 13 + }, + { + "name": "Ngaski", + "id": 14 + }, + { + "name": "Sakaba", + "id": 15 + }, + { + "name": "Shanga", + "id": 16 + }, + { + "name": "Suru", + "id": 17 + }, + { + "name": "Wasagu/Danko", + "id": 18 + }, + { + "name": "Yauri", + "id": 19 + }, + { + "name": "Zuru", + "id": 20 + } + ] + } + }, + { + "state": { + "name": "Kogi State", + "id": 23, + "locals": [ + { + "name": "Ajaokuta", + "id": 1 + }, + { + "name": "Ankpa", + "id": 2 + }, + { + "name": "Bassa", + "id": 3 + }, + { + "name": "Dekina", + "id": 4 + }, + { + "name": "Ibaji", + "id": 5 + }, + { + "name": "Idah", + "id": 6 + }, + { + "name": "Igalamela Odolu", + "id": 7 + }, + { + "name": "Ijumu", + "id": 8 + }, + { + "name": "Kabba/Bunu", + "id": 9 + }, + { + "name": "Kogi", + "id": 10 + }, + { + "name": "Lokoja", + "id": 11 + }, + { + "name": "Mopa Muro", + "id": 12 + }, + { + "name": "Ofu", + "id": 13 + }, + { + "name": "Ogori/Magongo", + "id": 14 + }, + { + "name": "Okehi", + "id": 15 + }, + { + "name": "Okene", + "id": 16 + }, + { + "name": "Olamaboro", + "id": 17 + }, + { + "name": "Omala", + "id": 18 + }, + { + "name": "Yagba East", + "id": 19 + }, + { + "name": "Yagba West", + "id": 20 + } + ] + } + }, + { + "state": { + "name": "Kwara State", + "id": 24, + "locals": [ + { + "name": "Baruten", + "id": 1 + }, + { + "name": "Edu", + "id": 2 + }, + { + "name": "Ekiti", + "id": 3 + }, + { + "name": "Ifelodun", + "id": 4 + }, + { + "name": "Ilorin East", + "id": 5 + }, + { + "name": "Ilorin South", + "id": 6 + }, + { + "name": "Ilorin West", + "id": 7 + }, + { + "name": "Irepodun", + "id": 8 + }, + { + "name": "Isin", + "id": 9 + }, + { + "name": "Kaiama", + "id": 10 + }, + { + "name": "Moro", + "id": 11 + }, + { + "name": "Offa", + "id": 12 + }, + { + "name": "Oke Ero", + "id": 13 + }, + { + "name": "Oyun", + "id": 14 + }, + { + "name": "Pategi", + "id": 15 + } + ] + } + }, + { + "state": { + "name": "Lagos State", + "id": 25, + "locals": [ + { + "name": "Ajeromi-Ifelodun", + "id": 1 + }, + { + "name": "Alimosho", + "id": 2 + }, + { + "name": "Amuwo-Odofin", + "id": 3 + }, + { + "name": "Apapa", + "id": 4 + }, + { + "name": "Badagry", + "id": 5 + }, + { + "name": "Epe", + "id": 6 + }, + { + "name": "Eti Osa", + "id": 7 + }, + { + "name": "Ibeju-Lekki", + "id": 8 + }, + { + "name": "Ifako-Ijaiye", + "id": 9 + }, + { + "name": "Ikeja", + "id": 10 + }, + { + "name": "Ikorodu", + "id": 11 + }, + { + "name": "Kosofe", + "id": 12 + }, + { + "name": "Lagos Island", + "id": 13 + }, + { + "name": "Lagos Mainland", + "id": 14 + }, + { + "name": "Mushin", + "id": 15 + }, + { + "name": "Ojo", + "id": 16 + }, + { + "name": "Oshodi-Isolo", + "id": 17 + }, + { + "name": "Shomolu", + "id": 18 + }, + { + "name": "Surulere", + "id": 19 + } + ] + } + }, + { + "state": { + "name": "Nasarawa State", + "id": 26, + "locals": [ + { + "name": "Awe", + "id": 1 + }, + { + "name": "Doma", + "id": 2 + }, + { + "name": "Karu", + "id": 3 + }, + { + "name": "Keana", + "id": 4 + }, + { + "name": "Keffi", + "id": 5 + }, + { + "name": "Kokona", + "id": 6 + }, + { + "name": "Lafia", + "id": 7 + }, + { + "name": "Nasarawa", + "id": 8 + }, + { + "name": "Nasarawa Egon", + "id": 9 + }, + { + "name": "Obi", + "id": 10 + }, + { + "name": "Toto", + "id": 11 + }, + { + "name": "Wamba", + "id": 12 + } + ] + } + }, + { + "state": { + "name": "Niger State", + "id": 27, + "locals": [ + { + "name": "Agwara", + "id": 1 + }, + { + "name": "Bida", + "id": 2 + }, + { + "name": "Borgu", + "id": 3 + }, + { + "name": "Bosso", + "id": 4 + }, + { + "name": "Chanchaga", + "id": 5 + }, + { + "name": "Edati", + "id": 6 + }, + { + "name": "Gbako", + "id": 7 + }, + { + "name": "Gurara", + "id": 8 + }, + { + "name": "Katcha", + "id": 9 + }, + { + "name": "Kontagora", + "id": 10 + }, + { + "name": "Lapai", + "id": 11 + }, + { + "name": "Lavun", + "id": 12 + }, + { + "name": "Magama", + "id": 13 + }, + { + "name": "Mariga", + "id": 14 + }, + { + "name": "Mashegu", + "id": 15 + }, + { + "name": "Mokwa", + "id": 16 + }, + { + "name": "Moya", + "id": 17 + }, + { + "name": "Paikoro", + "id": 18 + }, + { + "name": "Rafi", + "id": 19 + }, + { + "name": "Rijau", + "id": 20 + }, + { + "name": "Shiroro", + "id": 21 + }, + { + "name": "Suleja", + "id": 22 + }, + { + "name": "Tafa", + "id": 23 + }, + { + "name": "Wushishi", + "id": 24 + } + ] + } + }, + { + "state": { + "name": "Ogun State", + "id": 28, + "locals": [ + { + "name": "Abeokuta South", + "id": 1 + }, + { + "name": "Ado-Odo/Ota", + "id": 2 + }, + { + "name": "Egbado North", + "id": 3 + }, + { + "name": "Egbado South", + "id": 4 + }, + { + "name": "Ewekoro", + "id": 5 + }, + { + "name": "Ifo", + "id": 6 + }, + { + "name": "Ijebu East", + "id": 7 + }, + { + "name": "Ijebu North", + "id": 8 + }, + { + "name": "Ijebu North East", + "id": 9 + }, + { + "name": "Ijebu Ode", + "id": 10 + }, + { + "name": "Ikenne", + "id": 11 + }, + { + "name": "Imeko Afon", + "id": 12 + }, + { + "name": "Ipokia", + "id": 13 + }, + { + "name": "Obafemi Owode", + "id": 14 + }, + { + "name": "Odeda", + "id": 15 + }, + { + "name": "Odogbolu", + "id": 16 + }, + { + "name": "Ogun Waterside", + "id": 17 + }, + { + "name": "Remo North", + "id": 18 + }, + { + "name": "Shagamu", + "id": 19 + } + ] + } + }, + { + "state": { + "name": "Ondo State", + "id": 29, + "locals": [ + { + "name": "Akoko North-West", + "id": 1 + }, + { + "name": "Akoko South-West", + "id": 2 + }, + { + "name": "Akoko South-East", + "id": 3 + }, + { + "name": "Akure North", + "id": 4 + }, + { + "name": "Akure South", + "id": 5 + }, + { + "name": "Ese Odo", + "id": 6 + }, + { + "name": "Idanre", + "id": 7 + }, + { + "name": "Ifedore", + "id": 8 + }, + { + "name": "Ilaje", + "id": 9 + }, + { + "name": "Ile Oluji/Okeigbo", + "id": 10 + }, + { + "name": "Irele", + "id": 11 + }, + { + "name": "Odigbo", + "id": 12 + }, + { + "name": "Okitipupa", + "id": 13 + }, + { + "name": "Ondo East", + "id": 14 + }, + { + "name": "Ondo West", + "id": 15 + }, + { + "name": "Ose", + "id": 16 + }, + { + "name": "Owo", + "id": 17 + } + ] + } + }, + { + "state": { + "name": "Osun State", + "id": 30, + "locals": [ + { + "name": "Atakunmosa West", + "id": 1 + }, + { + "name": "Aiyedaade", + "id": 2 + }, + { + "name": "Aiyedire", + "id": 3 + }, + { + "name": "Boluwaduro", + "id": 4 + }, + { + "name": "Boripe", + "id": 5 + }, + { + "name": "Ede North", + "id": 6 + }, + { + "name": "Ede South", + "id": 7 + }, + { + "name": "Ife Central", + "id": 8 + }, + { + "name": "Ife East", + "id": 9 + }, + { + "name": "Ife North", + "id": 10 + }, + { + "name": "Ife South", + "id": 11 + }, + { + "name": "Egbedore", + "id": 12 + }, + { + "name": "Ejigbo", + "id": 13 + }, + { + "name": "Ifedayo", + "id": 14 + }, + { + "name": "Ifelodun", + "id": 15 + }, + { + "name": "Ila", + "id": 16 + }, + { + "name": "Ilesa East", + "id": 17 + }, + { + "name": "Ilesa West", + "id": 18 + }, + { + "name": "Irepodun", + "id": 19 + }, + { + "name": "Irewole", + "id": 20 + }, + { + "name": "Isokan", + "id": 21 + }, + { + "name": "Iwo", + "id": 22 + }, + { + "name": "Obokun", + "id": 23 + }, + { + "name": "Odo Otin", + "id": 24 + }, + { + "name": "Ola Oluwa", + "id": 25 + }, + { + "name": "Olorunda", + "id": 26 + }, + { + "name": "Oriade", + "id": 27 + }, + { + "name": "Orolu", + "id": 28 + }, + { + "name": "Osogbo", + "id": 29 + } + ] + } + }, + { + "state": { + "name": "Oyo State", + "id": 31, + "locals": [ + { + "name": "Akinyele", + "id": 1 + }, + { + "name": "Atiba", + "id": 2 + }, + { + "name": "Atisbo", + "id": 3 + }, + { + "name": "Egbeda", + "id": 4 + }, + { + "name": "Ibadan North", + "id": 5 + }, + { + "name": "Ibadan North-East", + "id": 6 + }, + { + "name": "Ibadan North-West", + "id": 7 + }, + { + "name": "Ibadan South-East", + "id": 8 + }, + { + "name": "Ibadan South-West", + "id": 9 + }, + { + "name": "Ibarapa Central", + "id": 10 + }, + { + "name": "Ibarapa East", + "id": 11 + }, + { + "name": "Ibarapa North", + "id": 12 + }, + { + "name": "Ido", + "id": 13 + }, + { + "name": "Irepo", + "id": 14 + }, + { + "name": "Iseyin", + "id": 15 + }, + { + "name": "Itesiwaju", + "id": 16 + }, + { + "name": "Iwajowa", + "id": 17 + }, + { + "name": "Kajola", + "id": 18 + }, + { + "name": "Lagelu", + "id": 19 + }, + { + "name": "Ogbomosho North", + "id": 20 + }, + { + "name": "Ogbomosho South", + "id": 21 + }, + { + "name": "Ogo Oluwa", + "id": 22 + }, + { + "name": "Olorunsogo", + "id": 23 + }, + { + "name": "Oluyole", + "id": 24 + }, + { + "name": "Ona Ara", + "id": 25 + }, + { + "name": "Orelope", + "id": 26 + }, + { + "name": "Ori Ire", + "id": 27 + }, + { + "name": "Oyo", + "id": 28 + }, + { + "name": "Oyo East", + "id": 29 + }, + { + "name": "Saki East", + "id": 30 + }, + { + "name": "Saki West", + "id": 31 + }, + { + "name": "Surulere", + "id": 32 + } + ] + } + }, + { + "state": { + "name": "Plateau State", + "id": 32, + "locals": [ + { + "name": "Barkin Ladi", + "id": 1 + }, + { + "name": "Bassa", + "id": 2 + }, + { + "name": "Jos East", + "id": 3 + }, + { + "name": "Jos North", + "id": 4 + }, + { + "name": "Jos South", + "id": 5 + }, + { + "name": "Kanam", + "id": 6 + }, + { + "name": "Kanke", + "id": 7 + }, + { + "name": "Langtang South", + "id": 8 + }, + { + "name": "Langtang North", + "id": 9 + }, + { + "name": "Mangu", + "id": 10 + }, + { + "name": "Mikang", + "id": 11 + }, + { + "name": "Pankshin", + "id": 12 + }, + { + "name": "Qua'an Pan", + "id": 13 + }, + { + "name": "Riyom", + "id": 14 + }, + { + "name": "Shendam", + "id": 15 + }, + { + "name": "Wase", + "id": 16 + } + ] + } + }, + { + "state": { + "name": "Rivers State", + "id": 33, + "locals": [ + { + "name": "Ahoada East", + "id": 1 + }, + { + "name": "Ahoada West", + "id": 2 + }, + { + "name": "Akuku-Toru", + "id": 3 + }, + { + "name": "Andoni", + "id": 4 + }, + { + "name": "Asari-Toru", + "id": 5 + }, + { + "name": "Bonny", + "id": 6 + }, + { + "name": "Degema", + "id": 7 + }, + { + "name": "Eleme", + "id": 8 + }, + { + "name": "Emuoha", + "id": 9 + }, + { + "name": "Etche", + "id": 10 + }, + { + "name": "Gokana", + "id": 11 + }, + { + "name": "Ikwerre", + "id": 12 + }, + { + "name": "Khana", + "id": 13 + }, + { + "name": "Obio/Akpor", + "id": 14 + }, + { + "name": "Ogba/Egbema/Ndoni", + "id": 15 + }, + { + "name": "Ogu/Bolo", + "id": 16 + }, + { + "name": "Okrika", + "id": 17 + }, + { + "name": "Omuma", + "id": 18 + }, + { + "name": "Opobo/Nkoro", + "id": 19 + }, + { + "name": "Oyigbo", + "id": 20 + }, + { + "name": "Port Harcourt", + "id": 21 + }, + { + "name": "Tai", + "id": 22 + } + ] + } + }, + { + "state": { + "name": "Sokoto State", + "id": 34, + "locals": [ + { + "name": "Bodinga", + "id": 1 + }, + { + "name": "Dange Shuni", + "id": 2 + }, + { + "name": "Gada", + "id": 3 + }, + { + "name": "Goronyo", + "id": 4 + }, + { + "name": "Gudu", + "id": 5 + }, + { + "name": "Gwadabawa", + "id": 6 + }, + { + "name": "Illela", + "id": 7 + }, + { + "name": "Isa", + "id": 8 + }, + { + "name": "Kebbe", + "id": 9 + }, + { + "name": "Kware", + "id": 10 + }, + { + "name": "Rabah", + "id": 11 + }, + { + "name": "Sabon Birni", + "id": 12 + }, + { + "name": "Shagari", + "id": 13 + }, + { + "name": "Silame", + "id": 14 + }, + { + "name": "Sokoto North", + "id": 15 + }, + { + "name": "Sokoto South", + "id": 16 + }, + { + "name": "Tambuwal", + "id": 17 + }, + { + "name": "Tangaza", + "id": 18 + }, + { + "name": "Tureta", + "id": 19 + }, + { + "name": "Wamako", + "id": 20 + }, + { + "name": "Wurno", + "id": 21 + }, + { + "name": "Yabo", + "id": 22 + } + ] + } + }, + { + "state": { + "name": "Taraba State", + "id": 35, + "locals": [ + { + "name": "Bali", + "id": 1 + }, + { + "name": "Donga", + "id": 2 + }, + { + "name": "Gashaka", + "id": 3 + }, + { + "name": "Gassol", + "id": 4 + }, + { + "name": "Ibi", + "id": 5 + }, + { + "name": "Jalingo", + "id": 6 + }, + { + "name": "Karim Lamido", + "id": 7 + }, + { + "name": "Kumi", + "id": 8 + }, + { + "name": "Lau", + "id": 9 + }, + { + "name": "Sardauna", + "id": 10 + }, + { + "name": "Takum", + "id": 11 + }, + { + "name": "Ussa", + "id": 12 + }, + { + "name": "Wukari", + "id": 13 + }, + { + "name": "Yorro", + "id": 14 + }, + { + "name": "Zing", + "id": 15 + } + ] + } + }, + { + "state": { + "name": "Yobe State", + "id": 36, + "locals": [ + { + "name": "Bursari", + "id": 1 + }, + { + "name": "Damaturu", + "id": 2 + }, + { + "name": "Fika", + "id": 3 + }, + { + "name": "Fune", + "id": 4 + }, + { + "name": "Geidam", + "id": 5 + }, + { + "name": "Gujba", + "id": 6 + }, + { + "name": "Gulani", + "id": 7 + }, + { + "name": "Jakusko", + "id": 8 + }, + { + "name": "Karasuwa", + "id": 9 + }, + { + "name": "Machina", + "id": 10 + }, + { + "name": "Nangere", + "id": 11 + }, + { + "name": "Nguru", + "id": 12 + }, + { + "name": "Potiskum", + "id": 13 + }, + { + "name": "Tarmuwa", + "id": 14 + }, + { + "name": "Yunusari", + "id": 15 + }, + { + "name": "Yusufari", + "id": 16 + } + ] + } + }, + { + "state": { + "name": "Zamfara State", + "id": 37, + "locals": [ + { + "name": "Bakura", + "id": 1 + }, + { + "name": "Birnin Magaji/Kiyaw", + "id": 2 + }, + { + "name": "Bukkuyum", + "id": 3 + }, + { + "name": "Bungudu", + "id": 4 + }, + { + "name": "Gummi", + "id": 5 + }, + { + "name": "Gusau", + "id": 6 + }, + { + "name": "Kaura Namoda", + "id": 7 + }, + { + "name": "Maradun", + "id": 8 + }, + { + "name": "Maru", + "id": 9 + }, + { + "name": "Shinkafi", + "id": 10 + }, + { + "name": "Talata Mafara", + "id": 11 + }, + { + "name": "Chafe", + "id": 12 + }, + { + "name": "Zurmi", + "id": 13 + } + ] + } + } + ] \ No newline at end of file diff --git a/src/Zoit/manage.py b/src/Zoit/manage.py new file mode 100644 index 0000000..23158a0 --- /dev/null +++ b/src/Zoit/manage.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'zoit.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() diff --git a/src/Zoit/zoit/__init__.py b/src/Zoit/zoit/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/Zoit/zoit/asgi.py b/src/Zoit/zoit/asgi.py new file mode 100644 index 0000000..eac33af --- /dev/null +++ b/src/Zoit/zoit/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for zoit project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/3.0/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'zoit.settings') + +application = get_asgi_application() diff --git a/src/Zoit/zoit/settings.py b/src/Zoit/zoit/settings.py new file mode 100644 index 0000000..11a1a16 --- /dev/null +++ b/src/Zoit/zoit/settings.py @@ -0,0 +1,128 @@ +""" +Django settings for zoit project. + +Generated by 'django-admin startproject' using Django 3.0.6. + +For more information on this file, see +https://docs.djangoproject.com/en/3.0/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/3.0/ref/settings/ +""" + +import os + +from django.conf.global_settings import FIXTURE_DIRS + +# Build paths inside the project like this: os.path.join(BASE_DIR, ...) +BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = '!3q)zx_!$7z$0j2yy4^7+0t@4#thmjjrh_s9j+#1fl19fzd6vz' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [] + + +# Application definition + +INSTALLED_APPS = [ + 'Zoitapp.apps.ZoitappConfig', + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'django_admin_reset', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = 'zoit.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'zoit.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/3.0/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.postgresql_psycopg2', + 'NAME': 'zoit', + 'USER': 'postgres', + 'PASSWORD': '223366', + 'HOST': 'localhost', + 'PORT': '5432', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/3.0/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/3.0/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_L10N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/3.0/howto/static-files/ + +STATIC_URL = '/static/' diff --git a/src/Zoit/zoit/urls.py b/src/Zoit/zoit/urls.py new file mode 100644 index 0000000..4c6730e --- /dev/null +++ b/src/Zoit/zoit/urls.py @@ -0,0 +1,21 @@ +"""zoit URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/3.0/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.contrib import admin +from django.urls import path + +urlpatterns = [ + path('admin/', admin.site.urls), +] diff --git a/src/Zoit/zoit/wsgi.py b/src/Zoit/zoit/wsgi.py new file mode 100644 index 0000000..fce2ab2 --- /dev/null +++ b/src/Zoit/zoit/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for zoit project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/3.0/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'zoit.settings') + +application = get_wsgi_application() diff --git a/src/goal3/settings.py b/src/goal3/settings.py index 97de31d..a109c47 100644 --- a/src/goal3/settings.py +++ b/src/goal3/settings.py @@ -85,9 +85,9 @@ DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql', - 'NAME': 'road-accidents', + 'NAME': 'road_accidents', 'USER': 'postgres', - 'PASSWORD': 'password', + 'PASSWORD': '223366', 'HOST': 'localhost' } } diff --git a/src/usersapp/fixtures/file_data.json b/src/usersapp/fixtures/file_data.json new file mode 100644 index 0000000..f925029 --- /dev/null +++ b/src/usersapp/fixtures/file_data.json @@ -0,0 +1,3246 @@ +[ + { + "state": { + "name": "Abia State", + "id": 1, + "locals": [ + { + "name": "Aba South", + "id": 1 + }, + { + "name": "Arochukwu", + "id": 2 + }, + { + "name": "Bende", + "id": 3 + }, + { + "name": "Ikwuano", + "id": 4 + }, + { + "name": "Isiala Ngwa North", + "id": 5 + }, + { + "name": "Isiala Ngwa South", + "id": 6 + }, + { + "name": "Isuikwuato", + "id": 7 + }, + { + "name": "Obi Ngwa", + "id": 8 + }, + { + "name": "Ohafia", + "id": 9 + }, + { + "name": "Osisioma", + "id": 10 + }, + { + "name": "Ugwunagbo", + "id": 11 + }, + { + "name": "Ukwa East", + "id": 12 + }, + { + "name": "Ukwa West", + "id": 13 + }, + { + "name": "Umuahia North", + "id": 14 + }, + { + "name": "Umuahia South", + "id": 15 + }, + { + "name": "Umu Nneochi", + "id": 16 + } + ] + } + }, + { + "state": { + "name": "Adamawa State", + "id": 2, + "locals": [ + { + "name": "Fufure", + "id": 1 + }, + { + "name": "Ganye", + "id": 2 + }, + { + "name": "Gayuk", + "id": 3 + }, + { + "name": "Gombi", + "id": 4 + }, + { + "name": "Grie", + "id": 5 + }, + { + "name": "Hong", + "id": 6 + }, + { + "name": "Jada", + "id": 7 + }, + { + "name": "Lamurde", + "id": 8 + }, + { + "name": "Madagali", + "id": 9 + }, + { + "name": "Maiha", + "id": 10 + }, + { + "name": "Mayo Belwa", + "id": 11 + }, + { + "name": "Michika", + "id": 12 + }, + { + "name": "Mubi North", + "id": 13 + }, + { + "name": "Mubi South", + "id": 14 + }, + { + "name": "Numan", + "id": 15 + }, + { + "name": "Shelleng", + "id": 16 + }, + { + "name": "Song", + "id": 17 + }, + { + "name": "Toungo", + "id": 18 + }, + { + "name": "Yola North", + "id": 19 + }, + { + "name": "Yola South", + "id": 20 + } + ] + } + }, + { + "state": { + "name": "Akwa Ibom State", + "id": 3, + "locals": [ + { + "name": "Eastern Obolo", + "id": 1 + }, + { + "name": "Eket", + "id": 2 + }, + { + "name": "Esit Eket", + "id": 3 + }, + { + "name": "Essien Udim", + "id": 4 + }, + { + "name": "Etim Ekpo", + "id": 5 + }, + { + "name": "Etinan", + "id": 6 + }, + { + "name": "Ibeno", + "id": 7 + }, + { + "name": "Ibesikpo Asutan", + "id": 8 + }, + { + "name": "Ibiono-Ibom", + "id": 9 + }, + { + "name": "Ika", + "id": 10 + }, + { + "name": "Ikono", + "id": 11 + }, + { + "name": "Ikot Abasi", + "id": 12 + }, + { + "name": "Ikot Ekpene", + "id": 13 + }, + { + "name": "Ini", + "id": 14 + }, + { + "name": "Itu", + "id": 15 + }, + { + "name": "Mbo", + "id": 16 + }, + { + "name": "Mkpat-Enin", + "id": 17 + }, + { + "name": "Nsit-Atai", + "id": 18 + }, + { + "name": "Nsit-Ibom", + "id": 19 + }, + { + "name": "Nsit-Ubium", + "id": 20 + }, + { + "name": "Obot Akara", + "id": 21 + }, + { + "name": "Okobo", + "id": 22 + }, + { + "name": "Onna", + "id": 23 + }, + { + "name": "Oron", + "id": 24 + }, + { + "name": "Oruk Anam", + "id": 25 + }, + { + "name": "Udung-Uko", + "id": 26 + }, + { + "name": "Ukanafun", + "id": 27 + }, + { + "name": "Uruan", + "id": 28 + }, + { + "name": "Urue-Offong/Oruko", + "id": 29 + }, + { + "name": "Uyo", + "id": 30 + } + ] + } + }, + { + "state": { + "name": "Anambra State", + "id": 4, + "locals": [ + { + "name": "Anambra East", + "id": 1 + }, + { + "name": "Anambra West", + "id": 2 + }, + { + "name": "Anaocha", + "id": 3 + }, + { + "name": "Awka North", + "id": 4 + }, + { + "name": "Awka South", + "id": 5 + }, + { + "name": "Ayamelum", + "id": 6 + }, + { + "name": "Dunukofia", + "id": 7 + }, + { + "name": "Ekwusigo", + "id": 8 + }, + { + "name": "Idemili North", + "id": 9 + }, + { + "name": "Idemili South", + "id": 10 + }, + { + "name": "Ihiala", + "id": 11 + }, + { + "name": "Njikoka", + "id": 12 + }, + { + "name": "Nnewi North", + "id": 13 + }, + { + "name": "Nnewi South", + "id": 14 + }, + { + "name": "Ogbaru", + "id": 15 + }, + { + "name": "Onitsha North", + "id": 16 + }, + { + "name": "Onitsha South", + "id": 17 + }, + { + "name": "Orumba North", + "id": 18 + }, + { + "name": "Orumba South", + "id": 19 + }, + { + "name": "Oyi", + "id": 20 + } + ] + } + }, + { + "state": { + "name": "Bauchi State", + "id": 5, + "locals": [ + { + "name": "Bauchi", + "id": 1 + }, + { + "name": "Bogoro", + "id": 2 + }, + { + "name": "Damban", + "id": 3 + }, + { + "name": "Darazo", + "id": 4 + }, + { + "name": "Dass", + "id": 5 + }, + { + "name": "Gamawa", + "id": 6 + }, + { + "name": "Ganjuwa", + "id": 7 + }, + { + "name": "Giade", + "id": 8 + }, + { + "name": "Itas/Gadau", + "id": 9 + }, + { + "name": "Jama'are", + "id": 10 + }, + { + "name": "Katagum", + "id": 11 + }, + { + "name": "Kirfi", + "id": 12 + }, + { + "name": "Misau", + "id": 13 + }, + { + "name": "Ningi", + "id": 14 + }, + { + "name": "Shira", + "id": 15 + }, + { + "name": "Tafawa Balewa", + "id": 16 + }, + { + "name": "Toro", + "id": 17 + }, + { + "name": "Warji", + "id": 18 + }, + { + "name": "Zaki", + "id": 19 + } + ] + } + }, + { + "state": { + "name": "Bayelsa State", + "id": 6, + "locals": [ + { + "name": "Ekeremor", + "id": 1 + }, + { + "name": "Kolokuma/Opokuma", + "id": 2 + }, + { + "name": "Nembe", + "id": 3 + }, + { + "name": "Ogbia", + "id": 4 + }, + { + "name": "Sagbama", + "id": 5 + }, + { + "name": "Southern Ijaw", + "id": 6 + }, + { + "name": "Yenagoa", + "id": 7 + } + ] + } + }, + { + "state": { + "name": "Benue State", + "id": 7, + "locals": [ + { + "name": "Apa", + "id": 1 + }, + { + "name": "Ado", + "id": 2 + }, + { + "name": "Buruku", + "id": 3 + }, + { + "name": "Gboko", + "id": 4 + }, + { + "name": "Guma", + "id": 5 + }, + { + "name": "Gwer East", + "id": 6 + }, + { + "name": "Gwer West", + "id": 7 + }, + { + "name": "Katsina-Ala", + "id": 8 + }, + { + "name": "Konshisha", + "id": 9 + }, + { + "name": "Kwande", + "id": 10 + }, + { + "name": "Logo", + "id": 11 + }, + { + "name": "Makurdi", + "id": 12 + }, + { + "name": "Obi", + "id": 13 + }, + { + "name": "Ogbadibo", + "id": 14 + }, + { + "name": "Ohimini", + "id": 15 + }, + { + "name": "Oju", + "id": 16 + }, + { + "name": "Okpokwu", + "id": 17 + }, + { + "name": "Oturkpo", + "id": 18 + }, + { + "name": "Tarka", + "id": 19 + }, + { + "name": "Ukum", + "id": 20 + }, + { + "name": "Ushongo", + "id": 21 + }, + { + "name": "Vandeikya", + "id": 22 + } + ] + } + }, + { + "state": { + "name": "Borno State", + "id": 8, + "locals": [ + { + "name": "Askira/Uba", + "id": 1 + }, + { + "name": "Bama", + "id": 2 + }, + { + "name": "Bayo", + "id": 3 + }, + { + "name": "Biu", + "id": 4 + }, + { + "name": "Chibok", + "id": 5 + }, + { + "name": "Damboa", + "id": 6 + }, + { + "name": "Dikwa", + "id": 7 + }, + { + "name": "Gubio", + "id": 8 + }, + { + "name": "Guzamala", + "id": 9 + }, + { + "name": "Gwoza", + "id": 10 + }, + { + "name": "Hawul", + "id": 11 + }, + { + "name": "Jere", + "id": 12 + }, + { + "name": "Kaga", + "id": 13 + }, + { + "name": "Kala/Balge", + "id": 14 + }, + { + "name": "Konduga", + "id": 15 + }, + { + "name": "Kukawa", + "id": 16 + }, + { + "name": "Kwaya Kusar", + "id": 17 + }, + { + "name": "Mafa", + "id": 18 + }, + { + "name": "Magumeri", + "id": 19 + }, + { + "name": "Maiduguri", + "id": 20 + }, + { + "name": "Marte", + "id": 21 + }, + { + "name": "Mobbar", + "id": 22 + }, + { + "name": "Monguno", + "id": 23 + }, + { + "name": "Ngala", + "id": 24 + }, + { + "name": "Nganzai", + "id": 25 + }, + { + "name": "Shani", + "id": 26 + } + ] + } + }, + { + "state": { + "name": "Cross River State", + "id": 9, + "locals": [ + { + "name": "Akamkpa", + "id": 1 + }, + { + "name": "Akpabuyo", + "id": 2 + }, + { + "name": "Bakassi", + "id": 3 + }, + { + "name": "Bekwarra", + "id": 4 + }, + { + "name": "Biase", + "id": 5 + }, + { + "name": "Boki", + "id": 6 + }, + { + "name": "Calabar Municipal", + "id": 7 + }, + { + "name": "Calabar South", + "id": 8 + }, + { + "name": "Etung", + "id": 9 + }, + { + "name": "Ikom", + "id": 10 + }, + { + "name": "Obanliku", + "id": 11 + }, + { + "name": "Obubra", + "id": 12 + }, + { + "name": "Obudu", + "id": 13 + }, + { + "name": "Odukpani", + "id": 14 + }, + { + "name": "Ogoja", + "id": 15 + }, + { + "name": "Yakuur", + "id": 16 + }, + { + "name": "Yala", + "id": 17 + } + ] + } + }, + { + "state": { + "name": "Delta State", + "id": 10, + "locals": [ + { + "name": "Aniocha South", + "id": 1 + }, + { + "name": "Bomadi", + "id": 2 + }, + { + "name": "Burutu", + "id": 3 + }, + { + "name": "Ethiope East", + "id": 4 + }, + { + "name": "Ethiope West", + "id": 5 + }, + { + "name": "Ika North East", + "id": 6 + }, + { + "name": "Ika South", + "id": 7 + }, + { + "name": "Isoko North", + "id": 8 + }, + { + "name": "Isoko South", + "id": 9 + }, + { + "name": "Ndokwa East", + "id": 10 + }, + { + "name": "Ndokwa West", + "id": 11 + }, + { + "name": "Okpe", + "id": 12 + }, + { + "name": "Oshimili North", + "id": 13 + }, + { + "name": "Oshimili South", + "id": 14 + }, + { + "name": "Patani", + "id": 15 + }, + { + "name": "Sapele", + "id": 16 + }, + { + "name": "Udu", + "id": 17 + }, + { + "name": "Ughelli North", + "id": 18 + }, + { + "name": "Ughelli South", + "id": 19 + }, + { + "name": "Ukwuani", + "id": 20 + }, + { + "name": "Uvwie", + "id": 21 + }, + { + "name": "Warri North", + "id": 22 + }, + { + "name": "Warri South", + "id": 23 + }, + { + "name": "Warri South West", + "id": 24 + } + ] + } + }, + { + "state": { + "name": "Ebonyi State", + "id": 11, + "locals": [ + { + "name": "Afikpo North", + "id": 1 + }, + { + "name": "Afikpo South", + "id": 2 + }, + { + "name": "Ebonyi", + "id": 3 + }, + { + "name": "Ezza North", + "id": 4 + }, + { + "name": "Ezza South", + "id": 5 + }, + { + "name": "Ikwo", + "id": 6 + }, + { + "name": "Ishielu", + "id": 7 + }, + { + "name": "Ivo", + "id": 8 + }, + { + "name": "Izzi", + "id": 9 + }, + { + "name": "Ohaozara", + "id": 10 + }, + { + "name": "Ohaukwu", + "id": 11 + }, + { + "name": "Onicha", + "id": 12 + } + ] + } + }, + { + "state": { + "name": "Edo State", + "id": 12, + "locals": [ + { + "name": "Egor", + "id": 1 + }, + { + "name": "Esan Central", + "id": 2 + }, + { + "name": "Esan North-East", + "id": 3 + }, + { + "name": "Esan South-East", + "id": 4 + }, + { + "name": "Esan West", + "id": 5 + }, + { + "name": "Etsako Central", + "id": 6 + }, + { + "name": "Etsako East", + "id": 7 + }, + { + "name": "Etsako West", + "id": 8 + }, + { + "name": "Igueben", + "id": 9 + }, + { + "name": "Ikpoba Okha", + "id": 10 + }, + { + "name": "Orhionmwon", + "id": 11 + }, + { + "name": "Oredo", + "id": 12 + }, + { + "name": "Ovia North-East", + "id": 13 + }, + { + "name": "Ovia South-West", + "id": 14 + }, + { + "name": "Owan East", + "id": 15 + }, + { + "name": "Owan West", + "id": 16 + }, + { + "name": "Uhunmwonde", + "id": 17 + } + ] + } + }, + { + "state": { + "name": "Ekiti State", + "id": 13, + "locals": [ + { + "name": "Efon", + "id": 1 + }, + { + "name": "Ekiti East", + "id": 2 + }, + { + "name": "Ekiti South-West", + "id": 3 + }, + { + "name": "Ekiti West", + "id": 4 + }, + { + "name": "Emure", + "id": 5 + }, + { + "name": "Gbonyin", + "id": 6 + }, + { + "name": "Ido Osi", + "id": 7 + }, + { + "name": "Ijero", + "id": 8 + }, + { + "name": "Ikere", + "id": 9 + }, + { + "name": "Ikole", + "id": 10 + }, + { + "name": "Ilejemeje", + "id": 11 + }, + { + "name": "Irepodun/Ifelodun", + "id": 12 + }, + { + "name": "Ise/Orun", + "id": 13 + }, + { + "name": "Moba", + "id": 14 + }, + { + "name": "Oye", + "id": 15 + } + ] + } + }, + { + "state": { + "name": "Enugu State", + "id": 14, + "locals": [ + { + "name": "Awgu", + "id": 1 + }, + { + "name": "Enugu East", + "id": 2 + }, + { + "name": "Enugu North", + "id": 3 + }, + { + "name": "Enugu South", + "id": 4 + }, + { + "name": "Ezeagu", + "id": 5 + }, + { + "name": "Igbo Etiti", + "id": 6 + }, + { + "name": "Igbo Eze North", + "id": 7 + }, + { + "name": "Igbo Eze South", + "id": 8 + }, + { + "name": "Isi Uzo", + "id": 9 + }, + { + "name": "Nkanu East", + "id": 10 + }, + { + "name": "Nkanu West", + "id": 11 + }, + { + "name": "Nsukka", + "id": 12 + }, + { + "name": "Oji River", + "id": 13 + }, + { + "name": "Udenu", + "id": 14 + }, + { + "name": "Udi", + "id": 15 + }, + { + "name": "Uzo Uwani", + "id": 16 + } + ] + } + }, + { + "state": { + "name": "FCT", + "id": 15, + "locals": [ + { + "name": "Bwari", + "id": 1 + }, + { + "name": "Gwagwalada", + "id": 2 + }, + { + "name": "Kuje", + "id": 3 + }, + { + "name": "Kwali", + "id": 4 + }, + { + "name": "Municipal Area Council", + "id": 5 + } + ] + } + }, + { + "state": { + "name": "Gombe State", + "id": 16, + "locals": [ + { + "name": "Balanga", + "id": 1 + }, + { + "name": "Billiri", + "id": 2 + }, + { + "name": "Dukku", + "id": 3 + }, + { + "name": "Funakaye", + "id": 4 + }, + { + "name": "Gombe", + "id": 5 + }, + { + "name": "Kaltungo", + "id": 6 + }, + { + "name": "Kwami", + "id": 7 + }, + { + "name": "Nafada", + "id": 8 + }, + { + "name": "Shongom", + "id": 9 + }, + { + "name": "Yamaltu/Deba", + "id": 10 + } + ] + } + }, + { + "state": { + "name": "Imo State", + "id": 17, + "locals": [ + { + "name": "Ahiazu Mbaise", + "id": 1 + }, + { + "name": "Ehime Mbano", + "id": 2 + }, + { + "name": "Ezinihitte", + "id": 3 + }, + { + "name": "Ideato North", + "id": 4 + }, + { + "name": "Ideato South", + "id": 5 + }, + { + "name": "Ihitte/Uboma", + "id": 6 + }, + { + "name": "Ikeduru", + "id": 7 + }, + { + "name": "Isiala Mbano", + "id": 8 + }, + { + "name": "Isu", + "id": 9 + }, + { + "name": "Mbaitoli", + "id": 10 + }, + { + "name": "Ngor Okpala", + "id": 11 + }, + { + "name": "Njaba", + "id": 12 + }, + { + "name": "Nkwerre", + "id": 13 + }, + { + "name": "Nwangele", + "id": 14 + }, + { + "name": "Obowo", + "id": 15 + }, + { + "name": "Oguta", + "id": 16 + }, + { + "name": "Ohaji/Egbema", + "id": 17 + }, + { + "name": "Okigwe", + "id": 18 + }, + { + "name": "Orlu", + "id": 19 + }, + { + "name": "Orsu", + "id": 20 + }, + { + "name": "Oru East", + "id": 21 + }, + { + "name": "Oru West", + "id": 22 + }, + { + "name": "Owerri Municipal", + "id": 23 + }, + { + "name": "Owerri North", + "id": 24 + }, + { + "name": "Owerri West", + "id": 25 + }, + { + "name": "Unuimo", + "id": 26 + } + ] + } + }, + { + "state": { + "name": "Jigawa State", + "id": 18, + "locals": [ + { + "name": "Babura", + "id": 1 + }, + { + "name": "Biriniwa", + "id": 2 + }, + { + "name": "Birnin Kudu", + "id": 3 + }, + { + "name": "Buji", + "id": 4 + }, + { + "name": "Dutse", + "id": 5 + }, + { + "name": "Gagarawa", + "id": 6 + }, + { + "name": "Garki", + "id": 7 + }, + { + "name": "Gumel", + "id": 8 + }, + { + "name": "Guri", + "id": 9 + }, + { + "name": "Gwaram", + "id": 10 + }, + { + "name": "Gwiwa", + "id": 11 + }, + { + "name": "Hadejia", + "id": 12 + }, + { + "name": "Jahun", + "id": 13 + }, + { + "name": "Kafin Hausa", + "id": 14 + }, + { + "name": "Kazaure", + "id": 15 + }, + { + "name": "Kiri Kasama", + "id": 16 + }, + { + "name": "Kiyawa", + "id": 17 + }, + { + "name": "Kaugama", + "id": 18 + }, + { + "name": "Maigatari", + "id": 19 + }, + { + "name": "Malam Madori", + "id": 20 + }, + { + "name": "Miga", + "id": 21 + }, + { + "name": "Ringim", + "id": 22 + }, + { + "name": "Roni", + "id": 23 + }, + { + "name": "Sule Tankarkar", + "id": 24 + }, + { + "name": "Taura", + "id": 25 + }, + { + "name": "Yankwashi", + "id": 26 + } + ] + } + }, + { + "state": { + "name": "Kaduna State", + "id": 19, + "locals": [ + { + "name": "Chikun", + "id": 1 + }, + { + "name": "Giwa", + "id": 2 + }, + { + "name": "Igabi", + "id": 3 + }, + { + "name": "Ikara", + "id": 4 + }, + { + "name": "Jaba", + "id": 5 + }, + { + "name": "Jema'a", + "id": 6 + }, + { + "name": "Kachia", + "id": 7 + }, + { + "name": "Kaduna North", + "id": 8 + }, + { + "name": "Kaduna South", + "id": 9 + }, + { + "name": "Kagarko", + "id": 10 + }, + { + "name": "Kajuru", + "id": 11 + }, + { + "name": "Kaura", + "id": 12 + }, + { + "name": "Kauru", + "id": 13 + }, + { + "name": "Kubau", + "id": 14 + }, + { + "name": "Kudan", + "id": 15 + }, + { + "name": "Lere", + "id": 16 + }, + { + "name": "Makarfi", + "id": 17 + }, + { + "name": "Sabon Gari", + "id": 18 + }, + { + "name": "Sanga", + "id": 19 + }, + { + "name": "Soba", + "id": 20 + }, + { + "name": "Zangon Kataf", + "id": 21 + }, + { + "name": "Zaria", + "id": 22 + } + ] + } + }, + { + "state": { + "name": "Kano State", + "id": 20, + "locals": [ + { + "name": "Albasu", + "id": 1 + }, + { + "name": "Bagwai", + "id": 2 + }, + { + "name": "Bebeji", + "id": 3 + }, + { + "name": "Bichi", + "id": 4 + }, + { + "name": "Bunkure", + "id": 5 + }, + { + "name": "Dala", + "id": 6 + }, + { + "name": "Dambatta", + "id": 7 + }, + { + "name": "Dawakin Kudu", + "id": 8 + }, + { + "name": "Dawakin Tofa", + "id": 9 + }, + { + "name": "Doguwa", + "id": 10 + }, + { + "name": "Fagge", + "id": 11 + }, + { + "name": "Gabasawa", + "id": 12 + }, + { + "name": "Garko", + "id": 13 + }, + { + "name": "Garun Mallam", + "id": 14 + }, + { + "name": "Gaya", + "id": 15 + }, + { + "name": "Gezawa", + "id": 16 + }, + { + "name": "Gwale", + "id": 17 + }, + { + "name": "Gwarzo", + "id": 18 + }, + { + "name": "Kabo", + "id": 19 + }, + { + "name": "Kano Municipal", + "id": 20 + }, + { + "name": "Karaye", + "id": 21 + }, + { + "name": "Kibiya", + "id": 22 + }, + { + "name": "Kiru", + "id": 23 + }, + { + "name": "Kumbotso", + "id": 24 + }, + { + "name": "Kunchi", + "id": 25 + }, + { + "name": "Kura", + "id": 26 + }, + { + "name": "Madobi", + "id": 27 + }, + { + "name": "Makoda", + "id": 28 + }, + { + "name": "Minjibir", + "id": 29 + }, + { + "name": "Nasarawa", + "id": 30 + }, + { + "name": "Rano", + "id": 31 + }, + { + "name": "Rimin Gado", + "id": 32 + }, + { + "name": "Rogo", + "id": 33 + }, + { + "name": "Shanono", + "id": 34 + }, + { + "name": "Sumaila", + "id": 35 + }, + { + "name": "Takai", + "id": 36 + }, + { + "name": "Tarauni", + "id": 37 + }, + { + "name": "Tofa", + "id": 38 + }, + { + "name": "Tsanyawa", + "id": 39 + }, + { + "name": "Tudun Wada", + "id": 40 + }, + { + "name": "Ungogo", + "id": 41 + }, + { + "name": "Warawa", + "id": 42 + }, + { + "name": "Wudil", + "id": 43 + } + ] + } + }, + { + "state": { + "name": "Katsina State", + "id": 21, + "locals": [ + { + "name": "Batagarawa", + "id": 1 + }, + { + "name": "Batsari", + "id": 2 + }, + { + "name": "Baure", + "id": 3 + }, + { + "name": "Bindawa", + "id": 4 + }, + { + "name": "Charanchi", + "id": 5 + }, + { + "name": "Dandume", + "id": 6 + }, + { + "name": "Danja", + "id": 7 + }, + { + "name": "Dan Musa", + "id": 8 + }, + { + "name": "Daura", + "id": 9 + }, + { + "name": "Dutsi", + "id": 10 + }, + { + "name": "Dutsin Ma", + "id": 11 + }, + { + "name": "Faskari", + "id": 12 + }, + { + "name": "Funtua", + "id": 13 + }, + { + "name": "Ingawa", + "id": 14 + }, + { + "name": "Jibia", + "id": 15 + }, + { + "name": "Kafur", + "id": 16 + }, + { + "name": "Kaita", + "id": 17 + }, + { + "name": "Kankara", + "id": 18 + }, + { + "name": "Kankia", + "id": 19 + }, + { + "name": "Katsina", + "id": 20 + }, + { + "name": "Kurfi", + "id": 21 + }, + { + "name": "Kusada", + "id": 22 + }, + { + "name": "Mai'Adua", + "id": 23 + }, + { + "name": "Malumfashi", + "id": 24 + }, + { + "name": "Mani", + "id": 25 + }, + { + "name": "Mashi", + "id": 26 + }, + { + "name": "Matazu", + "id": 27 + }, + { + "name": "Musawa", + "id": 28 + }, + { + "name": "Rimi", + "id": 29 + }, + { + "name": "Sabuwa", + "id": 30 + }, + { + "name": "Safana", + "id": 31 + }, + { + "name": "Sandamu", + "id": 32 + }, + { + "name": "Zango", + "id": 33 + } + ] + } + }, + { + "state": { + "name": "Kebbi State", + "id": 22, + "locals": [ + { + "name": "Arewa Dandi", + "id": 1 + }, + { + "name": "Argungu", + "id": 2 + }, + { + "name": "Augie", + "id": 3 + }, + { + "name": "Bagudo", + "id": 4 + }, + { + "name": "Birnin Kebbi", + "id": 5 + }, + { + "name": "Bunza", + "id": 6 + }, + { + "name": "Dandi", + "id": 7 + }, + { + "name": "Fakai", + "id": 8 + }, + { + "name": "Gwandu", + "id": 9 + }, + { + "name": "Jega", + "id": 10 + }, + { + "name": "Kalgo", + "id": 11 + }, + { + "name": "Koko/Besse", + "id": 12 + }, + { + "name": "Maiyama", + "id": 13 + }, + { + "name": "Ngaski", + "id": 14 + }, + { + "name": "Sakaba", + "id": 15 + }, + { + "name": "Shanga", + "id": 16 + }, + { + "name": "Suru", + "id": 17 + }, + { + "name": "Wasagu/Danko", + "id": 18 + }, + { + "name": "Yauri", + "id": 19 + }, + { + "name": "Zuru", + "id": 20 + } + ] + } + }, + { + "state": { + "name": "Kogi State", + "id": 23, + "locals": [ + { + "name": "Ajaokuta", + "id": 1 + }, + { + "name": "Ankpa", + "id": 2 + }, + { + "name": "Bassa", + "id": 3 + }, + { + "name": "Dekina", + "id": 4 + }, + { + "name": "Ibaji", + "id": 5 + }, + { + "name": "Idah", + "id": 6 + }, + { + "name": "Igalamela Odolu", + "id": 7 + }, + { + "name": "Ijumu", + "id": 8 + }, + { + "name": "Kabba/Bunu", + "id": 9 + }, + { + "name": "Kogi", + "id": 10 + }, + { + "name": "Lokoja", + "id": 11 + }, + { + "name": "Mopa Muro", + "id": 12 + }, + { + "name": "Ofu", + "id": 13 + }, + { + "name": "Ogori/Magongo", + "id": 14 + }, + { + "name": "Okehi", + "id": 15 + }, + { + "name": "Okene", + "id": 16 + }, + { + "name": "Olamaboro", + "id": 17 + }, + { + "name": "Omala", + "id": 18 + }, + { + "name": "Yagba East", + "id": 19 + }, + { + "name": "Yagba West", + "id": 20 + } + ] + } + }, + { + "state": { + "name": "Kwara State", + "id": 24, + "locals": [ + { + "name": "Baruten", + "id": 1 + }, + { + "name": "Edu", + "id": 2 + }, + { + "name": "Ekiti", + "id": 3 + }, + { + "name": "Ifelodun", + "id": 4 + }, + { + "name": "Ilorin East", + "id": 5 + }, + { + "name": "Ilorin South", + "id": 6 + }, + { + "name": "Ilorin West", + "id": 7 + }, + { + "name": "Irepodun", + "id": 8 + }, + { + "name": "Isin", + "id": 9 + }, + { + "name": "Kaiama", + "id": 10 + }, + { + "name": "Moro", + "id": 11 + }, + { + "name": "Offa", + "id": 12 + }, + { + "name": "Oke Ero", + "id": 13 + }, + { + "name": "Oyun", + "id": 14 + }, + { + "name": "Pategi", + "id": 15 + } + ] + } + }, + { + "state": { + "name": "Lagos State", + "id": 25, + "locals": [ + { + "name": "Ajeromi-Ifelodun", + "id": 1 + }, + { + "name": "Alimosho", + "id": 2 + }, + { + "name": "Amuwo-Odofin", + "id": 3 + }, + { + "name": "Apapa", + "id": 4 + }, + { + "name": "Badagry", + "id": 5 + }, + { + "name": "Epe", + "id": 6 + }, + { + "name": "Eti Osa", + "id": 7 + }, + { + "name": "Ibeju-Lekki", + "id": 8 + }, + { + "name": "Ifako-Ijaiye", + "id": 9 + }, + { + "name": "Ikeja", + "id": 10 + }, + { + "name": "Ikorodu", + "id": 11 + }, + { + "name": "Kosofe", + "id": 12 + }, + { + "name": "Lagos Island", + "id": 13 + }, + { + "name": "Lagos Mainland", + "id": 14 + }, + { + "name": "Mushin", + "id": 15 + }, + { + "name": "Ojo", + "id": 16 + }, + { + "name": "Oshodi-Isolo", + "id": 17 + }, + { + "name": "Shomolu", + "id": 18 + }, + { + "name": "Surulere", + "id": 19 + } + ] + } + }, + { + "state": { + "name": "Nasarawa State", + "id": 26, + "locals": [ + { + "name": "Awe", + "id": 1 + }, + { + "name": "Doma", + "id": 2 + }, + { + "name": "Karu", + "id": 3 + }, + { + "name": "Keana", + "id": 4 + }, + { + "name": "Keffi", + "id": 5 + }, + { + "name": "Kokona", + "id": 6 + }, + { + "name": "Lafia", + "id": 7 + }, + { + "name": "Nasarawa", + "id": 8 + }, + { + "name": "Nasarawa Egon", + "id": 9 + }, + { + "name": "Obi", + "id": 10 + }, + { + "name": "Toto", + "id": 11 + }, + { + "name": "Wamba", + "id": 12 + } + ] + } + }, + { + "state": { + "name": "Niger State", + "id": 27, + "locals": [ + { + "name": "Agwara", + "id": 1 + }, + { + "name": "Bida", + "id": 2 + }, + { + "name": "Borgu", + "id": 3 + }, + { + "name": "Bosso", + "id": 4 + }, + { + "name": "Chanchaga", + "id": 5 + }, + { + "name": "Edati", + "id": 6 + }, + { + "name": "Gbako", + "id": 7 + }, + { + "name": "Gurara", + "id": 8 + }, + { + "name": "Katcha", + "id": 9 + }, + { + "name": "Kontagora", + "id": 10 + }, + { + "name": "Lapai", + "id": 11 + }, + { + "name": "Lavun", + "id": 12 + }, + { + "name": "Magama", + "id": 13 + }, + { + "name": "Mariga", + "id": 14 + }, + { + "name": "Mashegu", + "id": 15 + }, + { + "name": "Mokwa", + "id": 16 + }, + { + "name": "Moya", + "id": 17 + }, + { + "name": "Paikoro", + "id": 18 + }, + { + "name": "Rafi", + "id": 19 + }, + { + "name": "Rijau", + "id": 20 + }, + { + "name": "Shiroro", + "id": 21 + }, + { + "name": "Suleja", + "id": 22 + }, + { + "name": "Tafa", + "id": 23 + }, + { + "name": "Wushishi", + "id": 24 + } + ] + } + }, + { + "state": { + "name": "Ogun State", + "id": 28, + "locals": [ + { + "name": "Abeokuta South", + "id": 1 + }, + { + "name": "Ado-Odo/Ota", + "id": 2 + }, + { + "name": "Egbado North", + "id": 3 + }, + { + "name": "Egbado South", + "id": 4 + }, + { + "name": "Ewekoro", + "id": 5 + }, + { + "name": "Ifo", + "id": 6 + }, + { + "name": "Ijebu East", + "id": 7 + }, + { + "name": "Ijebu North", + "id": 8 + }, + { + "name": "Ijebu North East", + "id": 9 + }, + { + "name": "Ijebu Ode", + "id": 10 + }, + { + "name": "Ikenne", + "id": 11 + }, + { + "name": "Imeko Afon", + "id": 12 + }, + { + "name": "Ipokia", + "id": 13 + }, + { + "name": "Obafemi Owode", + "id": 14 + }, + { + "name": "Odeda", + "id": 15 + }, + { + "name": "Odogbolu", + "id": 16 + }, + { + "name": "Ogun Waterside", + "id": 17 + }, + { + "name": "Remo North", + "id": 18 + }, + { + "name": "Shagamu", + "id": 19 + } + ] + } + }, + { + "state": { + "name": "Ondo State", + "id": 29, + "locals": [ + { + "name": "Akoko North-West", + "id": 1 + }, + { + "name": "Akoko South-West", + "id": 2 + }, + { + "name": "Akoko South-East", + "id": 3 + }, + { + "name": "Akure North", + "id": 4 + }, + { + "name": "Akure South", + "id": 5 + }, + { + "name": "Ese Odo", + "id": 6 + }, + { + "name": "Idanre", + "id": 7 + }, + { + "name": "Ifedore", + "id": 8 + }, + { + "name": "Ilaje", + "id": 9 + }, + { + "name": "Ile Oluji/Okeigbo", + "id": 10 + }, + { + "name": "Irele", + "id": 11 + }, + { + "name": "Odigbo", + "id": 12 + }, + { + "name": "Okitipupa", + "id": 13 + }, + { + "name": "Ondo East", + "id": 14 + }, + { + "name": "Ondo West", + "id": 15 + }, + { + "name": "Ose", + "id": 16 + }, + { + "name": "Owo", + "id": 17 + } + ] + } + }, + { + "state": { + "name": "Osun State", + "id": 30, + "locals": [ + { + "name": "Atakunmosa West", + "id": 1 + }, + { + "name": "Aiyedaade", + "id": 2 + }, + { + "name": "Aiyedire", + "id": 3 + }, + { + "name": "Boluwaduro", + "id": 4 + }, + { + "name": "Boripe", + "id": 5 + }, + { + "name": "Ede North", + "id": 6 + }, + { + "name": "Ede South", + "id": 7 + }, + { + "name": "Ife Central", + "id": 8 + }, + { + "name": "Ife East", + "id": 9 + }, + { + "name": "Ife North", + "id": 10 + }, + { + "name": "Ife South", + "id": 11 + }, + { + "name": "Egbedore", + "id": 12 + }, + { + "name": "Ejigbo", + "id": 13 + }, + { + "name": "Ifedayo", + "id": 14 + }, + { + "name": "Ifelodun", + "id": 15 + }, + { + "name": "Ila", + "id": 16 + }, + { + "name": "Ilesa East", + "id": 17 + }, + { + "name": "Ilesa West", + "id": 18 + }, + { + "name": "Irepodun", + "id": 19 + }, + { + "name": "Irewole", + "id": 20 + }, + { + "name": "Isokan", + "id": 21 + }, + { + "name": "Iwo", + "id": 22 + }, + { + "name": "Obokun", + "id": 23 + }, + { + "name": "Odo Otin", + "id": 24 + }, + { + "name": "Ola Oluwa", + "id": 25 + }, + { + "name": "Olorunda", + "id": 26 + }, + { + "name": "Oriade", + "id": 27 + }, + { + "name": "Orolu", + "id": 28 + }, + { + "name": "Osogbo", + "id": 29 + } + ] + } + }, + { + "state": { + "name": "Oyo State", + "id": 31, + "locals": [ + { + "name": "Akinyele", + "id": 1 + }, + { + "name": "Atiba", + "id": 2 + }, + { + "name": "Atisbo", + "id": 3 + }, + { + "name": "Egbeda", + "id": 4 + }, + { + "name": "Ibadan North", + "id": 5 + }, + { + "name": "Ibadan North-East", + "id": 6 + }, + { + "name": "Ibadan North-West", + "id": 7 + }, + { + "name": "Ibadan South-East", + "id": 8 + }, + { + "name": "Ibadan South-West", + "id": 9 + }, + { + "name": "Ibarapa Central", + "id": 10 + }, + { + "name": "Ibarapa East", + "id": 11 + }, + { + "name": "Ibarapa North", + "id": 12 + }, + { + "name": "Ido", + "id": 13 + }, + { + "name": "Irepo", + "id": 14 + }, + { + "name": "Iseyin", + "id": 15 + }, + { + "name": "Itesiwaju", + "id": 16 + }, + { + "name": "Iwajowa", + "id": 17 + }, + { + "name": "Kajola", + "id": 18 + }, + { + "name": "Lagelu", + "id": 19 + }, + { + "name": "Ogbomosho North", + "id": 20 + }, + { + "name": "Ogbomosho South", + "id": 21 + }, + { + "name": "Ogo Oluwa", + "id": 22 + }, + { + "name": "Olorunsogo", + "id": 23 + }, + { + "name": "Oluyole", + "id": 24 + }, + { + "name": "Ona Ara", + "id": 25 + }, + { + "name": "Orelope", + "id": 26 + }, + { + "name": "Ori Ire", + "id": 27 + }, + { + "name": "Oyo", + "id": 28 + }, + { + "name": "Oyo East", + "id": 29 + }, + { + "name": "Saki East", + "id": 30 + }, + { + "name": "Saki West", + "id": 31 + }, + { + "name": "Surulere", + "id": 32 + } + ] + } + }, + { + "state": { + "name": "Plateau State", + "id": 32, + "locals": [ + { + "name": "Barkin Ladi", + "id": 1 + }, + { + "name": "Bassa", + "id": 2 + }, + { + "name": "Jos East", + "id": 3 + }, + { + "name": "Jos North", + "id": 4 + }, + { + "name": "Jos South", + "id": 5 + }, + { + "name": "Kanam", + "id": 6 + }, + { + "name": "Kanke", + "id": 7 + }, + { + "name": "Langtang South", + "id": 8 + }, + { + "name": "Langtang North", + "id": 9 + }, + { + "name": "Mangu", + "id": 10 + }, + { + "name": "Mikang", + "id": 11 + }, + { + "name": "Pankshin", + "id": 12 + }, + { + "name": "Qua'an Pan", + "id": 13 + }, + { + "name": "Riyom", + "id": 14 + }, + { + "name": "Shendam", + "id": 15 + }, + { + "name": "Wase", + "id": 16 + } + ] + } + }, + { + "state": { + "name": "Rivers State", + "id": 33, + "locals": [ + { + "name": "Ahoada East", + "id": 1 + }, + { + "name": "Ahoada West", + "id": 2 + }, + { + "name": "Akuku-Toru", + "id": 3 + }, + { + "name": "Andoni", + "id": 4 + }, + { + "name": "Asari-Toru", + "id": 5 + }, + { + "name": "Bonny", + "id": 6 + }, + { + "name": "Degema", + "id": 7 + }, + { + "name": "Eleme", + "id": 8 + }, + { + "name": "Emuoha", + "id": 9 + }, + { + "name": "Etche", + "id": 10 + }, + { + "name": "Gokana", + "id": 11 + }, + { + "name": "Ikwerre", + "id": 12 + }, + { + "name": "Khana", + "id": 13 + }, + { + "name": "Obio/Akpor", + "id": 14 + }, + { + "name": "Ogba/Egbema/Ndoni", + "id": 15 + }, + { + "name": "Ogu/Bolo", + "id": 16 + }, + { + "name": "Okrika", + "id": 17 + }, + { + "name": "Omuma", + "id": 18 + }, + { + "name": "Opobo/Nkoro", + "id": 19 + }, + { + "name": "Oyigbo", + "id": 20 + }, + { + "name": "Port Harcourt", + "id": 21 + }, + { + "name": "Tai", + "id": 22 + } + ] + } + }, + { + "state": { + "name": "Sokoto State", + "id": 34, + "locals": [ + { + "name": "Bodinga", + "id": 1 + }, + { + "name": "Dange Shuni", + "id": 2 + }, + { + "name": "Gada", + "id": 3 + }, + { + "name": "Goronyo", + "id": 4 + }, + { + "name": "Gudu", + "id": 5 + }, + { + "name": "Gwadabawa", + "id": 6 + }, + { + "name": "Illela", + "id": 7 + }, + { + "name": "Isa", + "id": 8 + }, + { + "name": "Kebbe", + "id": 9 + }, + { + "name": "Kware", + "id": 10 + }, + { + "name": "Rabah", + "id": 11 + }, + { + "name": "Sabon Birni", + "id": 12 + }, + { + "name": "Shagari", + "id": 13 + }, + { + "name": "Silame", + "id": 14 + }, + { + "name": "Sokoto North", + "id": 15 + }, + { + "name": "Sokoto South", + "id": 16 + }, + { + "name": "Tambuwal", + "id": 17 + }, + { + "name": "Tangaza", + "id": 18 + }, + { + "name": "Tureta", + "id": 19 + }, + { + "name": "Wamako", + "id": 20 + }, + { + "name": "Wurno", + "id": 21 + }, + { + "name": "Yabo", + "id": 22 + } + ] + } + }, + { + "state": { + "name": "Taraba State", + "id": 35, + "locals": [ + { + "name": "Bali", + "id": 1 + }, + { + "name": "Donga", + "id": 2 + }, + { + "name": "Gashaka", + "id": 3 + }, + { + "name": "Gassol", + "id": 4 + }, + { + "name": "Ibi", + "id": 5 + }, + { + "name": "Jalingo", + "id": 6 + }, + { + "name": "Karim Lamido", + "id": 7 + }, + { + "name": "Kumi", + "id": 8 + }, + { + "name": "Lau", + "id": 9 + }, + { + "name": "Sardauna", + "id": 10 + }, + { + "name": "Takum", + "id": 11 + }, + { + "name": "Ussa", + "id": 12 + }, + { + "name": "Wukari", + "id": 13 + }, + { + "name": "Yorro", + "id": 14 + }, + { + "name": "Zing", + "id": 15 + } + ] + } + }, + { + "state": { + "name": "Yobe State", + "id": 36, + "locals": [ + { + "name": "Bursari", + "id": 1 + }, + { + "name": "Damaturu", + "id": 2 + }, + { + "name": "Fika", + "id": 3 + }, + { + "name": "Fune", + "id": 4 + }, + { + "name": "Geidam", + "id": 5 + }, + { + "name": "Gujba", + "id": 6 + }, + { + "name": "Gulani", + "id": 7 + }, + { + "name": "Jakusko", + "id": 8 + }, + { + "name": "Karasuwa", + "id": 9 + }, + { + "name": "Machina", + "id": 10 + }, + { + "name": "Nangere", + "id": 11 + }, + { + "name": "Nguru", + "id": 12 + }, + { + "name": "Potiskum", + "id": 13 + }, + { + "name": "Tarmuwa", + "id": 14 + }, + { + "name": "Yunusari", + "id": 15 + }, + { + "name": "Yusufari", + "id": 16 + } + ] + } + }, + { + "state": { + "name": "Zamfara State", + "id": 37, + "locals": [ + { + "name": "Bakura", + "id": 1 + }, + { + "name": "Birnin Magaji/Kiyaw", + "id": 2 + }, + { + "name": "Bukkuyum", + "id": 3 + }, + { + "name": "Bungudu", + "id": 4 + }, + { + "name": "Gummi", + "id": 5 + }, + { + "name": "Gusau", + "id": 6 + }, + { + "name": "Kaura Namoda", + "id": 7 + }, + { + "name": "Maradun", + "id": 8 + }, + { + "name": "Maru", + "id": 9 + }, + { + "name": "Shinkafi", + "id": 10 + }, + { + "name": "Talata Mafara", + "id": 11 + }, + { + "name": "Chafe", + "id": 12 + }, + { + "name": "Zurmi", + "id": 13 + } + ] + } + } + ] \ No newline at end of file diff --git a/src/usersapp/fixtures/frsc.json b/src/usersapp/fixtures/frsc.json new file mode 100644 index 0000000..87561b8 --- /dev/null +++ b/src/usersapp/fixtures/frsc.json @@ -0,0 +1,409 @@ +[ + { + "model": "Zoitapp.frsc", + "pk": "1", + "fields":{ + "command": "rs9.3.abia@frsc.gov.ng", + "address": "No 57, Asaba Street, Behind General Sani Abacha, Recreation Park Amuzukwu, Umuahia", + "email": "rs9.3.abia@frsc.gov.ng", + "phone": " 08077690903", + "id": "1" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "2", + "fields":{ + "command": "rs3.1.adamawa@frsc.gov.ng", + "address": "Numan Road, Jimeta, Yola", + "email": "rs3.1.adamawa@frsc.gov.ng", + "phone": "08077690301", + "id": "2" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "3", + "fields":{ + "command": "rs6.3.akwaibom@frsc.gov.ng", + "address": "7C, Ben Udo Street, Off Nwaniba Road, Uyo", + "email": "rs6.3.akwaibom@frsc.gov.ng", + "phone": " 08077690603", + "id": "3" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "4", + "fields":{ + "command": "rs5.3.anambra@frsc.gov.ng", + "address": "No.98 Enugu – Agidi Road, Awka", + "email": "rs5.3.anambra@frsc.gov.ng", + "phone": "08077690503", + "id":"4" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "5", + "fields":{ + "command": "rs12.1.bauchi@frsc.gov.ng", + "address": "Jos Road, Gidan Mai, Bauchi", + "email": "rs12.1.bauchi@frsc.gov.ng", + "phone": "08077690121", + "id": "5" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "6", + "fields":{ + "command": "rs6.4.bayelsa@frsc.gov.ng", + "address": "No.1 Road Safety Road, Yenagoa", + "email": "rs6.4.bayelsa@frsc.gov.ng", + "phone": "080776906", + "id": "6" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "7", + "fields":{ + "command": "rs4.2.benue@frsc.gov.ng", + "address": "No. 2 Victor Malu Road, New GRA, Makurdi", + "email": "rs4.2.benue@frsc.gov.ng", + "phone": "08077690402", + "id": "7" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "8", + "fields":{ + "command": "rs12.2.borno@frsc.gov.ng", + "address": "Damboa Road, Former SDP Secretariat, Maiduguri", + "email": "rs12.2.borno@frsc.gov.ng", + "phone": "08077690122", + "id": "8" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "9", + "fields":{ + "command": "rs6.2.crossriver@frsc.gov.ng", + "address": "71 Mariam Road, Calabar", + "email": "rs6.2.crossriver@frsc.gov.ng", + "phone": "08077690602", + "id": "9" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "10", + "fields":{ + "command": "rs5.2.delta@frsc.gov.ng", + "address": "Km 4 Asaba – Benin Road, Asaba", + "email": "rs5.2.delta@frsc.gov.ng", + "phone": "08077690502", + "id": "10" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "11", + "fields":{ + "command": "rs9.2.ebonyi@frsc.gov.ng", + "address": "Km 2, Enugu-Abakiliki Road, Abakaliki", + "email": "rs9.2.ebonyi@frsc.gov.ng", + "phone": "08077690902", + "id": "11" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "12", + "fields":{ + "command": "rs5.1.edo@frsc.gov.ng", + "address": "Ikpoba Hill Layout, Off Auchi Road, Benin-City", + "email": "rs5.1.edo@frsc.gov.ng", + "phone": "08077690501", + "id": "12" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "13", + "fields":{ + "command": "rs8.2.ekiti@frsc.gov.ng", + "address": "Ajalosun Street, Akure Road, Ado-Ekiti", + "email": " rs8.2.ekiti@frsc.gov.ng", + "phone": "08077690802", + "id": "13" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "14", + "fields":{ + "command": "rs9.1.enugu@frsc.gov.ng", + "address": "5, Bridgeway Road GRA, Enugu", + "email": "rs9.1.enugu@frsc.gov.ng", + "phone": "08077690901", + "id": "14" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "15", + "fields":{ + "command": " rs7.1.fct@frsc.gov.ng", + "address": "Olusegun Obasanjo Way, Zone 7, Wuse, Abuja", + "email": "rs7.1.fct@frsc.gov.ng", + "phone": "08077690701", + "id": "15" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "16", + "fields":{ + "command": "rs3.2.gombe@frsc.gov.ng ", + "address": "New GRA Gombe", + "email": "rs3.2.gombe@frsc.gov.ng", + "phone": "08077690302", + "id": "16" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "17", + "fields":{ + "command": "rs9.4.imo@frsc.gov.ng", + "address": "Egbu-Awaka Junction, Owerri", + "email": "rs9.4.imo@frsc.gov.ng", + "phone": "08077690904", + "id": "17" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "18", + "fields":{ + "command": "rs1.4.jigawa@frsc.gov.ng", + "address": "Kiyama Road, Dutse", + "email": "rs1.4.jigawa@frsc.gov.ng", + "phone": "08077690014", + "id": "18" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "19", + "fields":{ + "command": "rs1.1.kaduna@frsc.gov.ng", + "address": "12 Ahmadu Bello Way, Kaduna", + "email": "rs1.1.kaduna@frsc.gov.ng", + "phone": "08077690011", + "id": "19" + } + }, + { + "model": "Zoitapp.frsc", + "pk":"20", + "fields":{ + "command": "rs1.2.kano@frsc.gov.ng", + "address": "Lawan Danbazau Road, Kano, off Zaria Road, Kano", + "email": "rs1.2.kano@frsc.gov.ng", + "phone": "08077690012", + "id": "20" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "21", + "fields":{ + "command": "rs1.3.katsina@frsc.gov.ng", + "address": "Murtala Mohammed Way, Sokoto Rima Premises, Katsina", + "email": "rs1.3.katsina@frsc.gov.ng", + "phone": "08077690013", + "id": "21" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "22", + "fields":{ + "command": "rs10.2.kebbi@frsc.gov.ng", + "address": "Haliu Abdul Old Secretariat Complex, Birnin Kebbi", + "email": "rs10.2.kebbi@frsc.gov.ng", + "phone": "08077690102", + "id": "22" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "23", + "fields":{ + "command": "rs8.3.kogi@frsc.gov.ng", + "address": "Oba Michael Olobayo, Lokoja", + "email": "rs8.3.kogi@frsc.gov.ng", + "phone": "08077690803", + "id": "23" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "24", + "fields":{ + "command": "rs8.1.kwara@frsc.gov.ng", + "address": "1 Abdu Kareem Adisa Rd, Fate, Ilorin", + "email": "rs8.1.kwara@frsc.gov.ng", + "phone": "08077690801", + "id": "24" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "25", + "fields":{ + "command": "rs2.1.lagos@frsc.gov.ng", + "address": "Ojodu-Isheri Road, Ikeja, Lagos", + "email": "rs2.1.lagos@frsc.gov.ng", + "phone": "08077690201", + "id": "25" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "26", + "fields":{ + "command": "rs4.3.nasarawa@frsc.gov.ng", + "address": "Makurdi Road,Lafia", + "email": "rs4.3.nasarawa@frsc.gov.ng", + "phone": "08077690403", + "id": "26" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "27", + "fields":{ + "command": "rs7.2.niger@frsc.gov.ng", + "address": "No. 3 Paiko Road, Minna", + "email": "rs7.2.niger@frsc.gov.ng", + "phone": "08077690702", + "id": "27" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "28", + "fields":{ + "command": "rs2.2.ogun@frsc.gov.ng", + "address": "8 Oba Ademola Road, GRA, Ibara, Abeokuta", + "email": "rs2.2.ogun@frsc.gov.ng", + "phone": "08077690202", + "id": "28" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "29", + "fields":{ + "command": "rs11.2.ondo@frsc.gov.ng", + "address": "Akure – Ilesa Highway, Akure", + "email": "rs11.2.ondo@frsc.gov.ng", + "phone": "08077690112", + "id": "29" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "30", + "fields":{ + "command": "rs11.1.osun@frsc.gov.ng", + "address": "Km 4 Gbogan Road, Osogbo", + "email": "rs11.1.osun@frsc.gov.ng", + "phone": "08077690111", + "id": "30" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "31", + "fields":{ + "command": "rs11.3.oyo@frsc.gov.ng", + "address": "Eleyele, Ibadan", + "email": "rs11.3.oyo@frsc.gov.ng", + "phone": "08077690113", + "id": "31" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "32", + "fields":{ + "command": "rs4.1.plateau@frsc.gov.ng", + "address": "Km 9 Zaria Road, Jos", + "email": "rs4.1.plateau@frsc.gov.ng", + "phone": "08077690401", + "id": "32" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "33", + "fields":{ + "command": "rs6.1.rivers@frsc.gov.ng ", + "address": "39 Aba Road, Port-Harcourt", + "email": "rs6.1.rivers@frsc.gov.ng", + "phone": "08077690601", + "id": "33" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "34", + "fields":{ + "command": "rs3.3.taraba@frsc.gov.ng", + "address": "Jalingo, Taraba State", + "email": "rs3.3.taraba@frsc.gov.ng", + "phone": "08077690303", + "id": "34" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "35", + "fields":{ + "command": "rs10.1.sokoto@frsc.gov.ng", + "address": "Ali Akilu Road, Off Sani Abacha Way,Sokoto", + "email": "rs10.1.sokoto@frsc.gov.ng", + "phone": "08077690101", + "id": "35" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "36", + "fields":{ + "command": "rs12.3.yobe@frsc.gov.ng", + "address": "Phase 1 State Secretariat, Maiduguri Road, Damaturu", + "email": "rs12.3.yobe@frsc.gov.ng", + "phone": "08077690123", + "id": "36" + } + }, + { + "model": "Zoitapp.frsc", + "pk": "37", + "fields":{ + "command": "rs10.3.zamfara@frsc.gov.ng", + "address": "Sokoto Road, Gusau", + "email": "rs10.3.zamfara@frsc.gov.ng", + "phone": "08077690103", + "id": "37" + } + } +] \ No newline at end of file diff --git a/src/usersapp/fixtures/hospital.json b/src/usersapp/fixtures/hospital.json new file mode 100644 index 0000000..2de1bac --- /dev/null +++ b/src/usersapp/fixtures/hospital.json @@ -0,0 +1,964 @@ +[ + { + "model": "Zoitapp.hospital", + "pk": "1", + "fields":{ + "name": "Abia State University Teaching Hospital", + "type": "Government", + "address": "Umueze Road Abayi, Aba, Abia State Nigeria", + "email": "info@absuthng.org", + "phone": "0806 500 000", + "mortuary": "available", + "id": "1" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "2", + "fields":{ + "name": "Ekeoma Memorial Hospital", + "type": "Private", + "address": "15 Scotland Crescent, Aba, Abia State Nigeria", + "email": "ekeomamemorialhospital@yahoo.com", + "phone": "08037079432", + "mortuary": "available", + "id": "2" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "3", + "fields":{ + "name": "Federal Medical Centre, Yola", + "type": "Government", + "address": "Lamido Zubairu Road, Yola-Town Bye Pass, Adamawa State, Nigeria", + "email": "info@fmcyola.com.ng", + "phone": "0803 928 1553", + "mortuary": "available", + "id": "3" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "4", + "fields":{ + "name": "New Life Hospital", + "type": "private", + "address": "No 2 Lokuwa Ward, Mubi, Adamawa State Nigeria", + "email": "newlife@yahoo.com", + "phone": "0802 249 5449", + "mortuary": "available", + "id": "4" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "5", + "fields":{ + "name": "University of Uyo Teaching Hospital", + "type": "Government", + "address": "Abak Road, before Ekom Iman junction, Uyo, Akwa-Ibom Nigeria", + "email": "info@uuthuyo.net", + "phone": "0806 011 1771", + "mortuary": "available", + "id": "5" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "6", + "fields":{ + "name": "Samaritan Hospital", + "type": "Private", + "address": "7 Ekong Uko, Eket, Akwa Ibom State Nigeria", + "email": "support@samaritanclinics.com", + "phone": "0806 475 2204", + "mortuary": "available", + "id": "6" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "7", + "fields":{ + "name": "Toronto Hospital Nigeria Ltd", + "type": "Private", + "address": "2 Upper Niger Bridge Road, Onitsha, Anambra Nigeria", + "email": "torontohospital@yahoo.com", + "phone": "0808 170 0700", + "mortuary": "available", + "id": "7" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "8", + "fields":{ + "name": "Nnamdi Azikiwe Teaching Hospital", + "type": "Government", + "address": "Old Oba-Nnewi Road, Nnewi, Anambra State Nigeria", + "email": "info@nau.org", + "phone": "0806 850 6910", + "mortuary": "available", + "id": "8" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "9", + "fields":{ + "name": "Abubakar Tafawa Balewa University Teaching Hospital", + "type": "Government", + "address": "Yelwa Dass Road, Bauchi, Bauchi State Nigeria", + "email": "info@atbuth.org.ng", + "phone": "077543500", + "mortuary": "available", + "id": "9" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "10", + "fields":{ + "name": "Al-Ameen Hospital", + "type": "Private", + "address": "Nassarawa gate, Bauchi, Bauchi State Nigeria", + "email": "info@alameennigeria.com", + "phone": "08166601660", + "mortuary": "none", + "id": "10" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "11", + "fields":{ + "name": "Federal Medical Centre, Yenagoa", + "type": "Government", + "address": "Hospital Road Ovom, Yenegoa, Bayelsa State Nigeria", + "email": "info@fmcyenagoa.org.ng", + "phone": "0906 000 1156", + "mortuary": "available", + "id": "11" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "12", + "fields":{ + "name": "Niger Delta University Teaching Hospital", + "type": "Government", + "address": "Okolobiri, Gbarain-Ekpetiama Yenagoa, Bayelsa State Nigeria", + "email": "info@nduth.org.ng", + "phone": "0806 137 5047", + "mortuary": "available", + "id": "12" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "13", + "fields":{ + "name": "Benue State University Teaching Hospital", + "type": "Government", + "address": "Kilometer 3, Makurdi-Gboko Road, Makurdi, Benue State Nigeria", + "email": "inquiries@bsuth.org.ng", + "phone": "08066841838", + "mortuary": "available", + "id": "13" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "14", + "fields":{ + "name": "Royal Specialist Hospital", + "type": "Government", + "address": "1 Agatu Street, Behind UBA Bank, Otukpo, Benue State Nigeria", + "email": "info@royalspecialisthospital.com", + "phone": "0813 471 2000", + "mortuary": "available", + "id": "14" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "15", + "fields":{ + "name": "University of Maiduguri Teaching Hospital", + "type": "Government", + "address": "Bama Road, Maiduguri, Borno State Nigeria", + "email": "info@umth.org", + "phone": "0909 305 0548", + "mortuary": "available", + "id": "15" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "16", + "fields":{ + "name": "General Hospital", + "type": "Government", + "address": "Chibok Local Government Area, Chibok, Borno Nigeria", + "email": "governmenthospitalchibok@yahoo.com", + "phone": "0803 345 6077", + "mortuary": "available", + "id": "16" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "17", + "fields":{ + "name": "Arubah Specialist Hospital & Diagnostics", + "type": "Private", + "address": "23 Nsefik Eyo Close, Off Fiesta Fries, Ndiden Usang Iso Road, Calabar, Cross River, Nigeria", + "email": "arubah@yahoo.com", + "phone": "0708 543 1093", + "mortuary": "info@arubahspecialisthospital.com", + "id": "17" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "18", + "fields":{ + "name": "Victoria Medical Centre", + "type": "Private", + "address": "No 101, Ndidem Usang Iso/Marian Road, Calabar, Cross River State, Nigeria", + "email": "victorialmedicalcentre@gmail.com", + "phone": "0706 360 3463", + "mortuary": "available", + "id": "18" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "19", + "fields":{ + "name": "Delta State University Teaching Hospital", + "type": "Government", + "address": "Otefe Road, off Benin-Warri Express Way, Oghara, Delta State Nigeria", + "email": "info@delsuth.com.ng", + "phone": "0813 270 7598", + "mortuary": "available", + "id": "19" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "20", + "fields":{ + "name": "Bryants Hospital Limited", + "type": "Private", + "address": "No 13 Eti Street, Off Emebiren, Okumagba, Warri, Delta State, Nigeria", + "email": "bryantshospital@hotmail.com", + "phone": "0706 266 3989", + "mortuary": "available", + "id": "20" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "21", + "fields":{ + "name": "Federal Teaching Hospital", + "type": "Government", + "address": "Aba Road, Opposite Police Barracks, Abakaliki, Ebonyi State, Nigeria", + "email": "fth@yahoo.com", + "phone": "0815 391 7440", + "mortuary": "available", + "id": "21" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "22", + "fields":{ + "name": "Mater Misericordiae Hospital", + "type": "Government/private", + "address": "No 1 Mater Misericordiae Road, Afikpo, Ebonyi State Nigeria", + "email": "mmh@yahoo.com", + "phone": "0703 705 4713", + "mortuary": "available", + "id": "22" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "23", + "fields":{ + "name": "University of Benin Teaching Hospital (UBTH)", + "type": "Government", + "address": "Ugbowo Lagos Road, Benin City, Edo State Nigeria", + "email": "info@ubth.org", + "phone": "0802 253 5595", + "mortuary": "available", + "id": "23" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "24", + "fields":{ + "name": "St Philomena Catholic Hospital", + "type": "Private", + "address": "No 23, Dawson Road off Akpakpava Road, Oredo Benin City, Edo State Nigeria", + "email": "stphilomena@gmailcom", + "phone": "0807 159 3114", + "mortuary": "available", + "id": "24" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "25", + "fields":{ + "name": "Ekiti State University Teaching Hospital", + "type": "Government", + "address": "No 1 Teaching Hospital Road, Ado Ekiti, Ekiti State, Nigeria", + "email": "info@eksuth.org", + "phone": "0803 453 1236", + "mortuary": "available", + "id": "25" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "26", + "fields":{ + "name": "Federal Medical Center Ado-Ekiti", + "type": "Government", + "address": "Fayose Housing Estate, Ilawe Road, Ado-Ekiti, Ekiti State, Nigeria", + "email": "fmcado@hotmail.com", + "phone": "0806 312 4350", + "mortuary": "available", + "id": "26" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "27", + "fields":{ + "name": "University of Nigeria Teaching Hospital", + "type": "Government", + "address": "Ituku-Ozalla, Ituku, Enugu, Nigeria", + "email": "info@unthenugu.com.ng", + "phone": "0708 662 8572", + "mortuary": "available", + "id": "27" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "28", + "fields":{ + "name": "Annunciation Specialist Hospital", + "type": "Private", + "address": "Plot 27, Annunciation Hospital Road, Emene, Enugu State", + "email": "ashemene@yahoo.com", + "phone": "0803 666 3990", + "mortuary": "available", + "id": "28" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "29", + "fields":{ + "name": "National Hospital Abuja", + "type": "Government", + "address": "Plot 132 Central Business District Phase, Garki, FCT, Nigeria", + "email": "contact@nationalhospital.gov.ng", + "phone": "0809 762 752 0012", + "mortuary": "available", + "id": "29" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "30", + "fields":{ + "name": "Wellington Clinics Abuja", + "type": "Private", + "address": "10, Vanern Crescent, off Euphrate Street, Maitama, Abuja FCT Nigeria", + "email": "info@wellingtonclinicsabuja.com", + "phone": "0816 870 4327", + "mortuary": "available", + "id": "30" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "31", + "fields":{ + "name": "Federal Medical Center Gombe", + "type": "Government", + "address": "Ashaka Road, Gombe, Gombe State", + "email": "fmcgombe@hotmail.com", + "phone": "07081456608", + "mortuary": "available", + "id": "31" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "32", + "fields":{ + "name": "General Hospital", + "type": "Government", + "address": "Behind School Of Health Technology, Kaltungo, Gombe State Nigeria", + "email": "gh@yahoo.com", + "phone": "08039922355", + "mortuary": "available", + "id": "32" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "33", + "fields":{ + "name": "Umezuruike Hospital", + "type": "Government", + "address": "Plot 21/22 Umezuruike Street, Owerri, Imo State Nigeria", + "email": "info@umezuruikehospital.com", + "phone": "0813 390 7095", + "mortuary": "available", + "id": "33" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "34", + "fields":{ + "name": "Imo State University Teaching Hospital (IMSUTH)", + "type": "Government", + "address": "Imo State University Teaching Hospital (IMSUTH) Orlu, Owerri, Imo State Nigeria", + "email": "info@imsuth.org", + "phone": "0803 310 7758", + "mortuary": "available", + "id": "34" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "35", + "fields":{ + "name": "General Hospital", + "type": "Government", + "address": "Kafin Hausa Road, Jahun, Dutse, Jigawa Nigeria", + "email": "ghjigawa@yahoo.com", + "phone": "08034229293", + "mortuary": "available", + "id": "35" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "36", + "fields":{ + "name": "Federal Medical Center, Birnin-Kudu", + "type": "Government", + "address": "Birnin-Kudu, Dutse, Jigawa Nigeria", + "email": "fmckudu@hotmail.com", + "phone": "09088977655", + "mortuary": "available", + "id": "36" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "37", + "fields":{ + "name": "Ahmadu Bello University Teaching Hospital, Zaria", + "type": "Government", + "address": "Zaria, Zaria, Kaduna, Nigeria", + "email": "info@abuth.org", + "phone": "08034521768", + "mortuary": "available", + "id": "37" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "38", + "fields":{ + "name": "St. Gerard's Catholic Hospital", + "type": "Private", + "address": "Kachia Road, Kakuri Mekara Kaduna South, Kaduna Nigeria", + "email": "info@stgch.org", + "phone": "0905 396 4050", + "mortuary": "available", + "id": "38" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "39", + "fields":{ + "name": "Aminu Kano Teaching Hospital", + "type": "Government", + "address": "1 Zaria Road, Kano, Kano Nigeria", + "email": "info@akth.org.ng", + "phone": "0706 829 7399", + "mortuary": "available", + "id": "39" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "40", + "fields":{ + "name": "Murtala Mohammed Specialist Hospital", + "type": "Government", + "address": "Mohammed Abdulahi Wase Road, Kano Municipal, Kano Nigeria", + "email": "mmsh@hotmailcom", + "phone": "0803 643 0059", + "mortuary": "available", + "id": "40" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "41", + "fields":{ + "name": "Federal Medical Center, Katsina", + "type": "Government", + "address": "Murtala Muhammad Way, Jibia Bypass, Katsina, Katsina Nigeria", + "email": "fmckatsina@yahoo.com", + "phone": "08077766655", + "mortuary": "available", + "id": "41" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "42", + "fields":{ + "name": "General Hospital Katsina", + "type": "Government", + "address": "Dusima Street, Dutsin Ma, Katsina, Katsina State Nigeria", + "email": "ghkatsina@yahoo.com", + "phone": "08036284025", + "mortuary": "available", + "id": "42" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "43", + "fields":{ + "name": "Federal Medical Centre", + "type": "Government", + "address": "Bukku Barrack Road, Birnin-Kebbi, Kebbi State, Nigeria", + "email": "fmckebbi@hotmail.com", + "phone": "08033053012", + "mortuary": "available", + "id": "43" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "44", + "fields":{ + "name": "Sir Yahaya Memorial Hospital", + "type": "Private", + "address": "Haliru Abdu Road, Birnin Kebbi, Kebbi Nigeria", + "email": "symh@siryahayahospital.com", + "phone": "08035978511", + "mortuary": "not available", + "id": "44" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "45", + "fields":{ + "name": "Federal Medical Centre, Lokoja", + "type": "Government", + "address": "No 1, Salihu Ibrahim Road, Lokoja, Kogi, Nigeria", + "email": "fmclokoja@gmail.com", + "phone": "0803 698 2781", + "mortuary": "available", + "id": "45" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "46", + "fields":{ + "name": "ECWA Hospital", + "type": "Private", + "address": "5 Hospital Road, Egbe, Kogi State Nigeria", + "email": "ecwahospital@gmail.com", + "phone": "0815 740 6024", + "mortuary": "not available", + "id": "46" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "47", + "fields":{ + "name": "University of Ilorin Teaching Hospital", + "type": "Government", + "address": "Umar Saro Road, Ilorin, Kwara State Nigeria", + "email": "info@uith.org", + "phone": "0803 730 1311", + "mortuary": "available", + "id": "47" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "48", + "fields":{ + "name": "Anchormed Hospital", + "type": "Private", + "address": "Niyi Aniyikaiye Street, Tanke, Ilorin, Kwara State Nigeria", + "email": "info@anchormedhospital.com", + "phone": "0803 830 8465", + "mortuary": "not avalable", + "id": "48" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "49", + "fields":{ + "name": "St. Nicholas Hospital", + "type": "Private", + "address": "57 Campbell Street, Lagos Island, Lagos, Nigeria", + "email": "info@saintnicholashospital.com", + "phone": "0803 525 1295", + "mortuary": "available", + "id": "49" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "50", + "fields":{ + "name": "Lagos University Teaching Hospital", + "type": "Government", + "address": "Ishaga Road, Idi-Araba, Lagos Nigeria", + "email": "info@luth.org.ng", + "phone": "0807 059 1472", + "mortuary": "", + "id": "50" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "51", + "fields":{ + "name": "The Chrane Hospital", + "type": "Private", + "address": "Opposite St. Paul's Anglican Church Junction, Lafia, Nasarawa Nigeria", + "email": "thechrane@yahoo.com", + "phone": "0803 450 0221", + "mortuary": "not available", + "id":"51" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "52", + "fields":{ + "name": "Nagari Allah Magai Hospital", + "type": "Private", + "address": "No 10 Abubakar Burha Road, Keffi, Nasarawa State Nigeria", + "email": "namh@yahoo.com", + "phone": "0805 267 7816", + "mortuary": "not available", + "id": "52" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "53", + "fields":{ + "name": "Berith Specialist Hospital", + "type": "Private", + "address": "Plot 16087 Minna Road Kwamba Layout, Suleja, Niger State Nigeria", + "email": "info@berithspecialisthospital.com", + "phone": "0705 869 4388", + "mortuary": "available", + "id": "53" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "54", + "fields":{ + "name": "Federal Medical Centre", + "type": "Government", + "address": "4 Efu Etsu Yisa Ward, Bida, Minna, Niger State, Nigeria", + "email": "fmcminna@hotmail.com", + "phone": "08035951074", + "mortuary": "available", + "id": "54" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "55", + "fields":{ + "name": "Olabisi Onabanjo University Teaching Hospital", + "type": "Government", + "address": "Hospital Road, Sagamu, Ogun State", + "email": "info@oouth.com", + "phone": "08058376736", + "mortuary": "available", + "id": "55" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "56", + "fields":{ + "name": "Federal Medical Centre, Abeokuta", + "type": "Government", + "address": "Olabisi Onabanjo Way, Idi-Aba, Abeokuta, Ogun, Nigeria", + "email": "info@fmcabeokuta.org", + "phone": "0809 594 7913", + "mortuary": "available", + "id": "56" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "57", + "fields":{ + "name": "St. Louis Catholic Specialist Hospital", + "type": "Private", + "address": "1043, Oke Ogun Street, Owo, Ondo State, Nigeria", + "email": "info@stlouishospitalowo.org", + "phone": "0806 696 2724", + "mortuary": "available", + "id": "57" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "58", + "fields":{ + "name": "Federal Medical Centre, Owo", + "type": "Government", + "address": "Adekunle Ajasin Road, Owo, Ondo, Nigeria", + "email": "fmcowo@hotmail.com", + "phone": "0803 509 4545", + "mortuary": "available", + "id": "58" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "59", + "fields":{ + "name": "Obafemi Awolowo University Teaching Hospital", + "type": "Government", + "address": "Ilesa Road, Ile-Ife, Osun State Nigeria", + "email": "info@oauthc.com", + "phone": "0815 209 2751", + "mortuary": "available", + "id": "59" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "60", + "fields":{ + "name": "Lautech Teaching Hospital, Osogbo", + "type": "Government", + "address": "Oshogbo, , Osun Nigeria", + "email": "info@lth.org", + "phone": "07033328615", + "mortuary": "available", + "id": "60" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "61", + "fields":{ + "name": "Bowen University Teaching Hospital", + "type": "Private", + "address": "Oyo - Ogbomoso Road, Ogbomoso, Oyo State Nigeria", + "email": "da_office@buth.edu.ng", + "phone": "0803 410 2152", + "mortuary": "available", + "id": "61" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "62", + "fields":{ + "name": "Lanark Specialist Hospital", + "type": "Private", + "address": "8 Wuraola-Esan Close Off New Adeoyo State Hospital Road, Ring Road Ibadan,Oyo State", + "email": "info@Lanarkhospital.com", + "phone": "0803 364 3654", + "mortuary": "available", + "id": "62" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "63", + "fields":{ + "name": "Jos University Teaching Hospital", + "type": "Government", + "address": "Jos University Teaching Hospital, Lamingo, Jos, Plateau State Nigeria", + "email": "info@juth.org", + "phone": "073454736", + "mortuary": "available", + "id": "63" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "64", + "fields":{ + "name": "Chilas Specialist Hospital", + "type": "Private", + "address": "20, Zaria Bye Pass, Jos, Plateau State Nigeria", + "email": "chillasspecialist@yahoo.com", + "phone": "0803 320 0635", + "mortuary": "available", + "id": "64" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "65", + "fields":{ + "name": "First Rivers Hospital", + "type": "Private", + "address": "7/9 Old Aba Road, Rumuomasi, Port Harcourt", + "email": "info@firstrivers.com", + "phone": "0803 747 2138", + "mortuary": "available", + "id": "65" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "66", + "fields":{ + "name": "St Catherines Specialist Hospitals", + "type": "Private", + "address": "No 14 Trans Woji Road, Woji, Port Harcourt, Rivers State, Nigeria", + "email": "info@stcatherineshospital.net", + "phone": "0908 783 0739", + "mortuary": "available", + "id": "66" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "67", + "fields":{ + "name": "Usman Dan Fodio University Teaching Hospital", + "type": "Government", + "address": "1 Garba Nadama Road, Sokoto, Sokoto State", + "email": "info@uduth.org", + "phone": "0703 650 5608", + "mortuary": "available", + "id": "67" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "68", + "fields":{ + "name": "Murtala Muhammed Specialist Hospital", + "type": "Government", + "address": "131, Sultan Abubakar Road, Sokoto, Sokoto State Nigeria", + "email": "mmsh@gmail.com", + "phone": "0807 179 2222", + "mortuary": "available", + "id": "68" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "69", + "fields":{ + "name": "General Hospital Bali", + "type": "Government", + "address": "Takum Road Bali, Bali, Taraba State, Nigeria", + "email": "ghbali@yahoo.com", + "phone": "08083491398", + "mortuary": "available", + "id": "69" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "70", + "fields":{ + "name": "Federal Medical Centre", + "type": "Private", + "address": "57 Pound Road, Jalingo, Taraba State Nigeria", + "email": "fmcjalingo@hotmail.com", + "phone": "0802 479 1687", + "mortuary": "available", + "id": "70" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "71", + "fields":{ + "name": "General Sani Abacha Specialist Hospital", + "type": "Government", + "address": "Km 3 Gujiba Road, Damaturu, Yobe State Nigeria", + "email": "gsashospital@yahoo.com", + "phone": "0803 680 3272", + "mortuary": "available", + "id": "71" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "72", + "fields":{ + "name": "Ultra Modern Hospital", + "type": "Private", + "address": "Damaturu-Biu Road, Damaturu, Yobe State Nigeria", + "email": "ultramodernhospitaldamaturu200@gmail.com", + "phone": "08037079432", + "mortuary": "available", + "id": "72" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "73", + "fields":{ + "name": "Rama Hospital", + "type": "Private", + "address": "15 Ahmadu Bello Way, Gasau, Zamfara State, Nigeria", + "email": "remahospital@yahoo.com", + "phone": "08036919425", + "mortuary": "available", + "id": "73" + } + }, + { + "model": "Zoitapp.hospital", + "pk": "74", + "fields":{ + "name": "Arewa Hospital", + "type": "Private", + "address": "5 Sani Abacha Way, Gasau, Zamfara Nigeria", + "email": "arewahospital@gmail.com", + "phone": "08065745495", + "mortuary": "available", + "id": "74" + } + } +] \ No newline at end of file diff --git a/src/usersapp/fixtures/hotel.json b/src/usersapp/fixtures/hotel.json new file mode 100644 index 0000000..ab3af76 --- /dev/null +++ b/src/usersapp/fixtures/hotel.json @@ -0,0 +1,794 @@ +[ + { + "model": "Zoitapp.hotel", + "pk": "1", + "fields":{ + "name": "Hotel De La Paix", + "address": "60 Ekenna Avenue and 38 Brass Street, GRA Aba, Abia State Nigeria", + "email": "info@hoteldelapaixaba.com", + "phone": "08059154035", + "id": "1" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "2", + "fields":{ + "name": "Benidon Hotels and Resort", + "address": "14-16 Immaculate Avenue, Aba, Abia State Nigeria", + "email": "info@hotelbenidon.com", + "phone": "+234(0)7071148468", + "id": "2" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "3", + "fields":{ + "name": "Migela Royal Hotel", + "address": "1 Chouchi Road, Kofare, Jimeta Yola, Adamawa State", + "email": "migelaroyal@hotmail.com", + "phone": "08065111211", + "id": "3" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "4", + "fields":{ + "name": "Bagale Motels Limited", + "address": "Army Baracks Road, Yola, Adamawa State Nigeria", + "email": "bagale@yahoo.com", + "phone": "08022554505", + "id": "4" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "5", + "fields":{ + "name": "Dolly Hills Hotel", + "address": "32 Dr Ngozi Agbasimalo Road, Onitsha North, Anambra Nigeria", + "email": "dollyhillshotel@yahoo.com", + "phone": "0703 451 3661", + "id": "5" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "6", + "fields":{ + "name": "Chunique Royal Hotel & Suites", + "address": "No 14 Afam Ofordeme Street Umudim, Okpunoegbu Nnewi, Anambra State Nigeria", + "email": "info@chuniqueroyalhotel.com", + "phone": "0907 276 9174", + "id": "6" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "7", + "fields":{ + "name": "Daaty Hotel", + "address": "Plot 4 D- Line, Ewet Housing Estate, By AKIPOC, Uyo, Akwa Ibom Nigeria", + "email": "info@daatyhotel.com", + "phone": "0803 158 2765", + "id": "7" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "8", + "fields":{ + "name": "Darrels Hotel Limited", + "address": "18 Marina Road, Eket, Akwa Ibom State Nigeria", + "email": "info@darrelshotel.com", + "phone": "0803 533 0784", + "id": "8" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "9", + "fields":{ + "name": "Royal Abbey Suites", + "address": "Justice Quarters, Murtala International Airport Road, Bauchi, Bauchi State Nigeria", + "email": "royalabbey@gnail.com", + "phone": "07084101951", + "id": "9" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "10", + "fields":{ + "name": "Bauchi State Hotel", + "address": "Dass road, GRA, Bauchi, Bauchi State Nigeria", + "email": "bsh@hotel.com", + "phone": "077542156", + "id": "10" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "11", + "fields":{ + "name": "Atlantic Choice Hotel", + "address": "Swali Road, Yenagoa, Bayelsa", + "email": "atlanticchoicehotel@gmail.com", + "phone": "0705 438 1999", + "id": "11" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "12", + "fields":{ + "name": "El-Barbara Hotels", + "address": "39/41, Azikoro Road, Off Mbiama Yenagoa Road, Yenagoa, Bayelsa State Nigeria", + "email": "info@elbarbarahotel.com", + "phone": "0701 034 5444", + "id": "12" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "13", + "fields":{ + "name": "Apa Gate Hotel", + "address": "Opp Jesus College,, Otukpo, Benue State, Nigeria", + "email": "apagatehotels@yahoo.com", + "phone": "0813 183 4325", + "id": "13" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "14", + "fields":{ + "name": "Kings Inn", + "address": "30 Damjor Street, Off Gyado Hospital Road, GRA Gboko, Benue State Nigeria", + "email": "kings.inn@dr.com", + "phone": "08100317663", + "id": "14" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "15", + "fields":{ + "name": "Lake Chad Hotel", + "address": "Sir Kashiru Ibrahim Road, Maiduguri, Borno", + "email": "07062324531", + "phone": "lch@gmail.com", + "id": "15" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "16", + "fields":{ + "name": "Grand Pinnacle Hotel", + "address": "Jimna Road, Bulumkutu, Maiduguri, Borno State Nigeria", + "email": "pinnacle@hotmail.com", + "phone": "08038921433", + "id": "16" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "17", + "fields":{ + "name": "Transcorp Hotels Calabar", + "address": "10 Murtala Mohammed Highway, Calabar, Cross River State, Nigeria", + "email": "0806 690 0009", + "phone": "info.calabar@transcorphotels.com", + "id": "17" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "18", + "fields":{ + "name": "Tinapa Lakeside Hotel", + "address": "Tinapa Free Zone & Resort, Calabar-Ikang Road, Calabar, Cross River State, Nigeria", + "email": "reservations@tinapalakesidehotel.com", + "phone": "0802 648 3929", + "id": "18" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "19", + "fields":{ + "name": "Grand Hotel Asaba", + "address": "112, Nnebisi Road, By Capable Point, Delta State, Nigeria", + "email": "bookings@grandhotelasaba.com", + "phone": "0813 885 2239", + "id": "19" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "20", + "fields":{ + "name": "Hotel Benizia", + "address": "1-4, Kingsley Emu Street, Behind Fine Homes, Asaba, Delta State, Nigeria", + "email": "hotelbenizia@yahoo.com", + "phone": "0818 706 3332", + "id": "20" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "21", + "fields":{ + "name": "Hotel Geneza", + "address": "19, Onwe Road, Abakiliki, Ebonyi State, Nigeria", + "email": "info@hotelgeneza.com", + "phone": "0810 878 6632", + "id": "21" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "22", + "fields":{ + "name": "Osborn La Palm Royal Resort Ltd", + "address": "1, Osborn Avenue, Off Kpirikpiri Road, Mile 50, Abakiliki, Ebonyi State, Nigeria", + "email": "info@osbornlapalm.net", + "phone": "0803 216 1681", + "id": "22" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "23", + "fields":{ + "name": "Boston Hotel", + "address": "1 Oguigo Avenue Along Adeyan Street off Ihama Road, GRA Benin City, Edo Nigeria", + "email": "concierge@bostonhotelng.com", + "phone": "0805 406 9515", + "id": "23" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "24", + "fields":{ + "name": "MindCast Hotels", + "address": "College Road, Ujoelen Ekpoma, Edo State Nigeria", + "email": "mindcast@hotmail.com", + "phone": "0803 501 1081", + "id": "24" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "25", + "fields":{ + "name": "De Jewels Apartment", + "address": "2 Olatunji Street Immigration along Federal Poly Road, Ado-Ekiti, Ekiti Nigeria", + "email": "info@dejewelsapartments.com", + "phone": "0803 861 1586", + "id": "25" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "26", + "fields":{ + "name": "Delight Hotel & Suites", + "address": "Ilawe Road, Ado-Ekiti, Ekiti Nigeria", + "email": "info@delighthotel.com.ng", + "phone": "0815 503 0636", + "id": "26" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "27", + "fields":{ + "name": "Golden Royale", + "address": "10, Bisalla Road, Independent Layout, Enugu, Enugu, Nigeria", + "email": "info@goldenroyalehotels.com", + "phone": "0809 036 5223", + "id": "27" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "28", + "fields":{ + "name": "Neocourts", + "address": "Plot 3,5 Byron Onyeama Close, New Haven, Enugu State, Nigeria", + "email": "0808 763 4406", + "phone": "info@neocourts.com", + "id": "28" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "29", + "fields":{ + "name": "Transcorp Hilton Abuja ", + "address": "1 Aguiyi Ironsi Street, Maitama Abuja, FCT Nigeria", + "email": "hilton.abuja@hilton.com", + "phone": "0803 901 3000", + "id": "29" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "30", + "fields":{ + "name": "Bolton White Hotels", + "address": "Plot 7, Gwandu Street, Area 11, Garki, Abuja, FCT", + "email": "info@boltonwhitehotel.com", + "phone": "+234(0)92200222", + "id": "30" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "31", + "fields":{ + "name": "Custodian Hotel Limited", + "address": "Opp. Sub-Treasury Office Along Bauchi Road, Gombe, Gombe State", + "email": "info@custodianhotel.com.ng", + "phone": "08107412344", + "id": "31" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "32", + "fields":{ + "name": "Zuma Royal Suite", + "address": "72 Jonathan Goodluck Road, Federal Lowcost, Gombe, Gombe State", + "email": "zumaroyal@gmail.com", + "phone": "08038740561", + "id": "32" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "33", + "fields":{ + "name": "Mavis Suites", + "address": "No. 1/3 Nkwerre Street, Works Layout, Off (IMSU) Junction, Owerri, Imo State Nigeria", + "email": "mavissuite@yahoo.com", + "phone": "0703 089 2297", + "id": "33" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "34", + "fields":{ + "name": "Rockview Hotel", + "address": "Plot Cp/2-Cp/5, Government Station Layout, Owerri, Imo State Nigeria", + "email": "reservationowerri@rockviewhotels.com", + "phone": " 0701 064 5842", + "id": "34" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "35", + "fields":{ + "name": "Jigawa Hotels Ltd", + "address": "Kiyawa Road, Dutse, Jigawa Nigeria", + "email": "jigawahotels@yahoo.com", + "phone": "064-721470", + "id": "35" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "36", + "fields":{ + "name": "C N Morning Star Hotel Nigeria Ltd", + "address": "Rafin Sanyi Area Yadi Qtrs, Dutse, Jigawa Nigeria", + "email": "csmorningstar@hotmail.com", + "phone": "08036234107", + "id": "36" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "37", + "fields":{ + "name": "Elvic Hotel & Suites Ltd", + "address": "25/26 Jaafar Road Bagado, Kamazou, Kaduna, Kaduna State Nigeria", + "email": "elvichotelltd@gmail.com", + "phone": "0706 461 3603", + "id": "37" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "38", + "fields":{ + "name": "Saminaka Holiday Resort", + "address": "Saminaka Holiday Resort, Kaduna South, Kaduna Nigeria", + "email": "saholresort@gmail.com", + "phone": "0809 674 7676", + "id": "38" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "39", + "fields":{ + "name": "Royal Tropicana Hotels Ltd", + "address": "17/19, Niger Street, Kano City, Kano State, Nigeria", + "email": "info@royaltropicana.com", + "phone": "0806 515 9990,", + "id": "39" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "40", + "fields":{ + "name": "Prince Hotel", + "address": "Tamandu Road, Nassarawa GRA, Kano State, Nigeria", + "email": "info@princehotelng.com", + "phone": "0809 769 7979", + "id": "40" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "41", + "fields":{ + "name": "New Katsina Motel", + "address": "1 Muhammed Bashir Road, G.R.A, Katsina, Katsina State Nigeria", + "email": "nkmotel@yahoo.com", + "phone": "08070711278", + "id": "41" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "42", + "fields":{ + "name": "Lifaya Palace Hotel", + "address": "Off IBB Way, Kano Road, Batagarawa, Katsina State Nigeria", + "email": "lifaya@yahoo.com", + "phone": "070 3030 7752", + "id": "42" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "43", + "fields":{ + "name": "Grand Fishing Hotel", + "address": "Sokoto Road, Argungu, Birnin Kebbi, Kebbi Nigeria", + "email": "grandfishing@yahoo.com", + "phone": "060-550547", + "id": "43" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "44", + "fields":{ + "name": "Zinari Hotels & Resort", + "address": "Birnin Kebbi, Birnin Kebbi, Kebbi Nigeria", + "email": "zinarihotels@hotmail.com", + "phone": "08068322663", + "id": "44" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "45", + "fields":{ + "name": "Wisdom Home Hotels", + "address": "Anyigba-Ankpa Road Opposite Kogi State University, Beside Skye Bank, Anyigba, Kogi State Nigeria", + "email": "enquires@wisdomhomehotels.com", + "phone": "0805 5891 768", + "id": "45" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "46", + "fields":{ + "name": "Edgedrive Hotel", + "address": "23 Kunama Street, GRA, Lokoja, Kogi state, Nigeria", + "email": "edgedrive@yahoo.com", + "phone": "08132867025", + "id": "46" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "47", + "fields":{ + "name": "E-Phoenix Hotel", + "address": "45, Aderemi Adeleye Street, Opp. Federal Secretariat, GRA, Ilorin, Kwara State Nigeria", + "email": "booking@ephoenixhotel.com", + "phone": "0809 774 1584", + "id": "47" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "48", + "fields":{ + "name": "Princess Luxury Hotel", + "address": "Plot 31, Pipeline Road, Ilorin, Kwara State Nigeria", + "email": "info@princessluxuryhotels.com", + "phone": "08163962419", + "id": "48" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "49", + "fields":{ + "name": "Golden Tulip", + "address": "Mile 2, Festac Town Amuwo Odofin, Lagos Nigeria", + "email": "info@goldentulipfestaclagos.com", + "phone": "08003580846", + "id": "49" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "50", + "fields":{ + "name": "Eko Hotel & Suites", + "address": "1415, Adetokunbo Ademola Street, Victoria Island Eti Osa, Lagos Nigeria", + "email": "reservations@ekohotels.com", + "phone": "01 277 2725", + "id": "50" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "51", + "fields":{ + "name": "Manyi Royal Suite", + "address": "4 Jos Road, Lafia, Nasarawa Nigeria", + "email": "manyiroyahsuite@yahoo.com", + "phone": "08032584343", + "id": "51" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "52", + "fields":{ + "name": "Ta'al Conference Hotel", + "address": "Stadium Road, Jos Road, Lafia, Nasarawa Nigeria", + "email": "taalhotel@yahoo.com", + "phone": "08021290436", + "id": "52" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "53", + "fields":{ + "name": "Nasfah Hotel", + "address": "Old Alheri Road, Minna, Niger State", + "email": "nasfah@yahoo.com", + "phone": "08188077048", + "id": "53" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "54", + "fields":{ + "name": "Niger Hotel", + "address": "93 Bale Street, Ajegunle, Apapa", + "email": "nigerhotel@yahoo.com", + "phone": "08183517793", + "id": "54" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "55", + "fields":{ + "name": "Quarry Imperial", + "address": "No 52, Quarry Road, Abeokuta, Ogun Nigeria", + "email": "info@quarryimperialhotel", + "phone": "0816 957 4982", + "id": "55" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "56", + "fields":{ + "name": "Park Inn by Radisson Hotel", + "address": "1, Ibrahim Babangida Boulevard Kuto Roundabout, Abeokuta, Ogun State Nigeria", + "email": "info.abeokuta@rezidorparkinn.com", + "phone": "0813 986 0020", + "id": "56" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "57", + "fields":{ + "name": "Sunview Hotel", + "address": "8, El Shaddai Road, GRA Alagbaka Akure, Ondo Nigeria", + "email": "sunviewhotelakure@yahoo.com", + "phone": "0809 999 9164", + "id": "57" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "58", + "fields":{ + "name": "Flourish Hotel and Suites", + "address": "Plot 14, Block 41, Along WAEC Office Road, Alagbaka Akure, Ondo Nigeria", + "email": "flourishhotelonline@yahoo.com", + "phone": "0816 183 5703", + "id": "58" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "59", + "fields":{ + "name": "Crownfit Hotels & Suites", + "address": "Ekusa road, Okuku, Osun SNigeria", + "email": "enquiries@crownfithotels.com", + "phone": "08051037866", + "id": "59" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "60", + "fields":{ + "name": "Royal Park International Hotel & Resort", + "address": "Oba Oladele Olashore Way, Iloko - Ilesha, Osun State", + "email": "dappivsaj@gmail.com", + "phone": "0807 120 0017", + "id": "60" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "61", + "fields":{ + "name": "La Maison Hotel and Suites", + "address": "23, Jibowu Street, Iyaganku GRA, Ibadan, Oyo State, Nigeria", + "email": "info@lamaisonhotel-ng.com", + "phone": "0816 068 4669", + "id": "61" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "62", + "fields":{ + "name": "Euro Lounge and Suites", + "address": "30, Alafin Avenue, Oluyole Estate Ring Road, Ibadan, Oyo State, Nigeria", + "email": "info@euroloungeandsuites.com", + "phone": "0814 292 1055", + "id": "62" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "63", + "fields":{ + "name": "Maria�s Lodge", + "address": "1 Grey Garden Off Tafawa Balewa Street, Jos, Plateau State Nigeria", + "email": "reservations@mariaslodge.com", + "phone": "08134088789", + "id": "63" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "64", + "fields":{ + "name": "Sharna Place", + "address": "9 Sharna Close, Near NNPC Mega Station, Bauchi Road, Jos, Plateau State Nigeria", + "email": "booking@sharnaplace.com", + "phone": "07098813868", + "id": "64" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "65", + "fields":{ + "name": "Echelon Heights Hotel", + "address": "No 73 Ken Saro-Wiwa Road (former Stadium Road), Port Harcourt, Rivers State Nigeria", + "email": "reservations@echelonheights.com", + "phone": "0909 163 0932", + "id": "65" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "66", + "fields":{ + "name": "Bougainvillea Hotel", + "address": "Plot F / 1A Abacha Road, GRA, Phase 3, Port Harcourt, Rivers State", + "email": "Admin@bougainvilleahotel.com", + "phone": "0803 051 2229", + "id": "66" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "67", + "fields":{ + "name": "Elim Top Suites", + "address": "GRA, Ibi Road, Wukari, Jalingo, Taraba", + "email": "info@eelimtopsuites.com", + "phone": "0816 068 4669", + "id": "67" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "68", + "fields":{ + "name": "Eldavido Hotels Limited", + "address": "Mayo Renewo Crescent, Jalingo, Taraba State, Nigeria", + "email": "info@eldavidohotels.com", + "phone": "08012106973", + "id": "68" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "69", + "fields":{ + "name": "Hayas Guest Inn", + "address": "Cross Road,, Damaturu, Yobe State", + "email": "hayasguestinn@yahoo.com", + "phone": "078-522700", + "id": "69" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "70", + "fields":{ + "name": "Motel Benin Plaza", + "address": "Damaturu, , Yobe State, Nigeria", + "email": "mbplaza@yahoo.com", + "phone": "0814 292 1055", + "id": "70" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "71", + "fields":{ + "name": "Donatus Travellers Guest Inn", + "address": "Anguwar Gwaza Road, Gasau, Zamfara Nigeria", + "email": "dtgi@hotmail.com", + "phone": "08034530410", + "id": "71" + } + }, + { + "model": "Zoitapp.hotel", + "pk": "72", + "fields":{ + "name": "Bliss Guxury Guest Inn", + "address": "Janyau Gabbas Road, Gusau, Zamfara Nigeria", + "email": "blissguxury@yahoo.com", + "phone": "08139097450", + "id": "72" + } + } +] \ No newline at end of file diff --git a/src/usersapp/fixtures/lga.json b/src/usersapp/fixtures/lga.json new file mode 100644 index 0000000..c98116e --- /dev/null +++ b/src/usersapp/fixtures/lga.json @@ -0,0 +1,862 @@ +[ + { + "model": "Zoitapp.lga", + "pk": "1", + "fields":{ + "name": "Aba North", + "zone": "South-East", + "Stateid": "1", + "id": "1" + } + }, + { + "model": "Zoitapp.lga", + "pk": "2", + "fields":{ + "name":"Aba South", + "zone":"South-East", + "Stateid": "1", + "id": "2" + } + }, + { + "model": "Zoitapp.lga", + "pk": "3", + "fields":{ + "name": "Arochukwu", + "zone": "South-East", + "Stateid": "1", + "id": "3" + } + }, + { + "model": "Zoitapp.lga", + "pk": "4", + "fields":{ + "name":"Bende", + "zone":"South-East", + "Stateid": "1", + "id": "4" + } + }, + { + "model": "Zoitapp.lga", + "pk": "5", + "fields":{ + "name": "Ikwuano", + "zone": "South-East", + "Stateid": "1", + "id": "5" + } + }, + { + "model": "Zoitapp.lga", + "pk": "6", + "fields":{ + "name":"Isiala Ngwa North", + "zone":"South-East", + "Stateid": "1", + "id": "6" + } + }, + { + "model": "Zoitapp.lga", + "pk": "7", + "fields":{ + "name": "Isiala Ngwa South", + "zone": "South-East", + "Stateid": "1", + "id": "7" + } + }, + { + "model": "Zoitapp.lga", + "pk": "8", + "fields":{ + "name":"Isuikwuato", + "zone":"South-East", + "Stateid": "1", + "id": "8" + } + }, + { + "model": "Zoitapp.lga", + "pk": "9", + "fields":{ + "name": "Obi Ngwa", + "zone": "South-East", + "Stateid": "1", + "id": "9" + } + }, + { + "model": "Zoitapp.lga", + "pk": "10", + "fields":{ + "name":"Ohafia", + "zone":"South-East", + "Stateid": "1", + "id": "10" + } + }, + { + "model": "Zoitapp.lga", + "pk": "11", + "fields":{ + "name": "Osisioma", + "zone": "South-East", + "Stateid": "1", + "id": "11" + } + }, + { + "model": "Zoitapp.lga", + "pk": "12", + "fields":{ + "name":"Ugwunagbo", + "zone":"South-East", + "Stateid": "1", + "id": "12" + } + }, + { + "model": "Zoitapp.lga", + "pk": "13", + "fields":{ + "name": "Ukwa East", + "zone": "South-East", + "Stateid": "1", + "id": "13" + } + }, + { + "model": "Zoitapp.lga", + "pk": "14", + "fields":{ + "name":"Ukwa West", + "zone":"South-East", + "Stateid": "1", + "id": "14" + } + }, + { + "model": "Zoitapp.lga", + "pk": "15", + "fields":{ + "name": "Umuahia North", + "zone": "South-East", + "Stateid": "1", + "id": "15" + } + }, + { + "model": "Zoitapp.lga", + "pk": "16", + "fields":{ + "name":"Umuahia South", + "zone":"South-East", + "Stateid": "1", + "id": "16" + } + }, + { + "model": "Zoitapp.lga", + "pk": "17", + "fields":{ + "name": "Umu Nneochi", + "zone": "South-East", + "Stateid": "1", + "id": "17" + } + }, + { + "model": "Zoitapp.lga", + "pk": "18", + "fields":{ + "name":"Fufure", + "zone":"Nort-East", + "Stateid": "2", + "id": "18" + } + }, + { + "model": "Zoitapp.lga", + "pk": "19", + "fields":{ + "name": "Ganye", + "zone": "Nort-East", + "Stateid": "2", + "id": "1" + } + }, + { + "model": "Zoitapp.lga", + "pk": "20", + "fields":{ + "name": "Gayuk", + "zone": "Nort-East", + "Stateid": "2", + "id": 3 + } + }, + { + "model": "Zoitapp.lga", + "pk": "21", + "fields":{ + "name": "Gombi", + "zone": "Nort-East", + "Stateid": "2", + "id": 4 + } + }, + { + "model": "Zoitapp.lga", + "pk": "22", + "fields":{ + "name": "Grie", + "zone": "Nort-East", + "Stateid": "2", + "id": 5 + } + }, + { + "model": "Zoitapp.lga", + "pk": "23", + "fields":{ + "name": "Hong", + "zone": "Nort-East", + "Stateid": "2", + "id": 6 + } + }, + { + "model": "Zoitapp.lga", + "pk": "24", + "fields":{ + "name": "Jada", + "zone": "Nort-East", + "Stateid": "2", + "id": 7 + } + }, + { + "model": "Zoitapp.lga", + "pk": "25", + "fields":{ + "name": "Lamurde", + "zone": "Nort-East", + "Stateid": "2", + "id": 8 + } + }, + { + "model": "Zoitapp.lga", + "pk": "26", + "fields":{ + "name": "Maiha", + "zone": "Nort-East", + "Stateid": "2", + "id": 10 + } + }, + { + "model": "Zoitapp.lga", + "pk": "27", + "fields":{ + "name": "Mayo Belwa", + "zone": "Nort-East", + "Stateid": "2", + "id": 11 + } + }, + { + "model": "Zoitapp.lga", + "pk": "28", + "fields":{ + "name": "Michika", + "zone": "Nort-East", + "Stateid": "2", + "id": 12 + } + }, + { + "model": "Zoitapp.lga", + "pk": "29", + "fields":{ + "name": "Mubi North", + "zone": "Nort-East", + "Stateid": "2", + "id": 13 + } + }, + { + "model": "Zoitapp.lga", + "pk": "30", + "fields":{ + "name": "Mubi South", + "zone": "Nort-East", + "Stateid": "2", + "id": 14 + } + }, + { + "model": "Zoitapp.lga", + "pk": "31", + "fields":{ + "name": "Numan", + "zone": "Nort-East", + "Stateid": "2", + "id": 15 + } + }, + { + "model": "Zoitapp.lga", + "pk": "32", + "fields":{ + "name": "Shelleng", + "zone": "Nort-East", + "Stateid": "2", + "id": 16 + } + }, + { + "model": "Zoitapp.lga", + "pk": "33", + "fields":{ + "name": "Song", + "zone": "Nort-East", + "Stateid": "2", + "id": 17 + } + }, + { + "model": "Zoitapp.lga", + "pk": "34", + "fields":{ + "name": "Toungo", + "zone": "Nort-East", + "Stateid": "2", + "id": 18 + } + }, + { + "model": "Zoitapp.lga", + "pk": "35", + "fields":{ + "name": "Yola North", + "zone": "Nort-East", + "Stateid": "2", + "id": 19 + } + }, + { + "model": "Zoitapp.lga", + "pk": "36", + "fields":{ + "name": "Yola South", + "zone": "Nort-East", + "Stateid": "2", + "id": 20 + } + }, + { + "model": "Zoitapp.lga", + "pk": "36", + "fields":{ + "name": "Eastern Obolo", + "zone": "South-South", + "Stateid": "3", + "id": 1 + } + }, + { + "model": "Zoitapp.lga", + "pk": "37", + "fields":{ + "name": "Eket", + "zone": "South-South", + "Stateid": "3", + "id": 2 + } + }, + { + "model": "Zoitapp.lga", + "pk": "37", + "fields":{ + "name": "Esit Eket", + "zone": "South-South", + "Stateid": "3", + "id": 3 + } + }, + { + "model": "Zoitapp.lga", + "pk": "38", + "fields":{ + "name": "Essien Udim", + "zone": "South-South", + "Stateid": "3", + "id": "4" + } + }, + { + "model": "Zoitapp.lga", + "pk": "39", + "fields":{ + "name": "Etim Ekpo", + "zone": "South-South", + "Stateid": "3", + "id": 5 + } + }, + { + "model": "Zoitapp.lga", + "pk": "40", + "fields":{ + "name": "Etinan", + "zone": "South-South", + "Stateid": "3", + "id": 6 + } + }, + { + "model": "Zoitapp.lga", + "pk": "41", + "fields":{ + "name": "Ibeno", + "zone": "South-South", + "Stateid": "3", + "id": 7 + } + }, + { + "model": "Zoitapp.lga", + "pk": "42", + "fields":{ + "name": "Ibesikpo Asutan", + "zone": "South-South", + "Stateid": "3", + "id": 8 + } + }, + { + "model": "Zoitapp.lga", + "pk": "43", + "fields":{ + "name": "Ibiono-Ibom", + "zone": "South-South", + "Stateid": "3", + "id": 9 + } + }, + { + "model": "Zoitapp.lga", + "pk": "44", + "fields":{ + "name": "Ika", + "zone": "South-South", + "Stateid": "3", + "id": 10 + } + }, + { + "model": "Zoitapp.lga", + "pk": "45", + "fields":{ + "name": "Ikono", + "zone": "South-South", + "Stateid": "3", + "id": 11 + } + }, + { + "model": "Zoitapp.lga", + "pk": "46", + "fields":{ + "name": "Ikot Abasi", + "zone": "South-South", + "Stateid": "3", + "id": 12 + } + }, + { + "model": "Zoitapp.lga", + "pk": "47", + "fields":{ + "name": "Ikot Ekpene", + "zone": "South-South", + "Stateid": "3", + "id": 13 + } + }, + { + "model": "Zoitapp.lga", + "pk": "48", + "fields":{ + "name": "Ini", + "zone": "South-South", + "Stateid": "3", + "id": 14 + } + }, + { + "model": "Zoitapp.lga", + "pk": "49", + "fields":{ + "name": "Itu", + "zone": "South-South", + "Stateid": "3", + "id": 15 + } + }, + { + "model": "Zoitapp.lga", + "pk": "50", + "fields":{ + "name": "Nbo", + "zone": "South-South", + "Stateid": "3", + "id": 16 + } + }, + { + "model": "Zoitapp.lga", + "pk": "51", + "fields":{ + "name": "Mkpat-Enin", + "zone": "South-South", + "Stateid": "3", + "id": 17 + } + }, + { + "model": "Zoitapp.lga", + "pk": "52", + "fields":{ + "name": "Nsit-Atai", + "zone": "South-South", + "Stateid": "3", + "id": 18 + } + }, + { + "model": "Zoitapp.lga", + "pk": "53", + "fields":{ + "name": "Nsit-Ibom", + "zone": "South-South", + "Stateid": "3", + "id": 19 + } + }, + { + "model": "Zoitapp.lga", + "pk": "54", + "fields":{ + "name": "Nsit-Ubium", + "zone": "South-South", + "Stateid": "3", + "id": 20 + } + }, + { + "model": "Zoitapp.lga", + "pk": "55", + "fields":{ + "name": "Obot Akara", + "zone": "South-South", + "Stateid": "3", + "id": 21 + } + }, + { + "model": "Zoitapp.lga", + "pk": "56", + "fields":{ + "name": "Okobo", + "zone": "South-South", + "Stateid": "3", + "id": 22 + } + }, + { + "model": "Zoitapp.lga", + "pk": "57", + "fields":{ + "name": "Onn", + "zone": "South-South", + "Stateid": "3", + "id": 23 + } + }, + { + "model": "Zoitapp.lga", + "pk": "58", + "fields":{ + "name": "Oron", + "zone": "South-South", + "Stateid": "3", + "id": 24 + } + }, + { + "model": "Zoitapp.lga", + "pk": "59", + "fields":{ + "name": "Oruk-Anam", + "zone": "South-South", + "Stateid": "3", + "id": 25 + } + }, + { + "model": "Zoitapp.lga", + "pk": "60", + "fields":{ + "name": "Udung-Uko", + "zone": "South-South", + "Stateid": "3", + "id": 26 + } + }, + { + "model": "Zoitapp.lga", + "pk": "61", + "fields":{ + "name": "Ukanfun", + "zone": "South-South", + "Stateid": "3", + "id": 27 + } + }, + { + "model": "Zoitapp.lga", + "pk": "62", + "fields":{ + "name": "Uruan", + "zone": "South-South", + "Stateid": "3", + "id": 28 + } + }, + { + "model": "Zoitapp.lga", + "pk": "63", + "fields":{ + "name": "Urue-Offong/Oruko", + "zone": "South-South", + "Stateid": "3", + "id": 29 + } + }, + { + "model": "Zoitapp.lga", + "pk": "64", + "fields":{ + "name": "Uyo", + "zone": "South-South", + "Stateid": "3", + "id": 30 + } + }, + { + "model": "Zoitapp.lga", + "pk": "65", + "fields":{ + "name": "Anambra East", + "zone": "South-East", + "Stateid": "4", + "id": 1 + } + }, + { + "model": "Zoitapp.lga", + "pk": "66", + "fields":{ + "name": "Anambra West", + "zone": "South-East", + "Stateid": "4", + "id": 2 + } + }, + { + "model": "Zoitapp.lga", + "pk": "67", + "fields":{ + "name": "Anaocha", + "zone": "South-East", + "Stateid": "4", + "id": 3 + } + }, + { + "model": "Zoitapp.lga", + "pk": "68", + "fields":{ + "name": "Awka North", + "zone": "South-East", + "Stateid": "4", + "id": 4 + } + }, + { + "model": "Zoitapp.lga", + "pk": "69", + "fields":{ + "name": "Awka South", + "zone": "South-East", + "Stateid": "4", + "id": 5 + } + }, + { + "model": "Zoitapp.lga", + "pk": "70", + "fields":{ + "name": "Ayamelum", + "zone": "South-East", + "Stateid": "4", + "id": 6 + } + }, + { + "model": "Zoitapp.lga", + "pk": "71", + "fields":{ + "name": "Dunukofia", + "zone": "South-East", + "Stateid": "4", + "id": 7 + } + }, + { + "model": "Zoitapp.lga", + "pk": "72", + "fields":{ + "name": "Ekwusigo", + "zone": "South-East", + "Stateid": "4", + "id": 8 + } + }, + { + "model": "Zoitapp.lga", + "pk": "73", + "fields":{ + "name": "Idemili North", + "zone": "South-East", + "Stateid": "4", + "id": 9 + } + }, + { + "model": "Zoitapp.lga", + "pk": "74", + "fields":{ + "name": "Idemili South", + "zone": "South-East", + "Stateid": "4", + "id": 10 + } + }, + { + "model": "Zoitapp.lga", + "pk": "75", + "fields":{ + "name": "Ihiala", + "zone": "South-East", + "Stateid": "4", + "id": 11 + } + }, + { + "model": "Zoitapp.lga", + "pk": "76", + "fields":{ + "name": "Njikoka", + "zone": "South-East", + "Stateid": "4", + "id": 12 + } + }, + { + "model": "Zoitapp.lga", + "pk": "77", + "fields":{ + "name": "Nnewi North", + "zone": "South-East", + "Stateid": "4", + "id": 13 + } + }, + { + "model": "Zoitapp.lga", + "pk": "78", + "fields":{ + "name": "Nnewi South", + "zone": "South-East", + "Stateid": "4", + "id": 14 + } + }, + { + "model": "Zoitapp.lga", + "pk": "79", + "fields":{ + "name": "Ogbaru", + "zone": "South-East", + "Stateid": "4", + "id": 15 + } + }, + { + "model": "Zoitapp.lga", + "pk": "80", + "fields":{ + "name": "Onitsha North", + "zone": "South-East", + "Stateid": "4", + "id": 16 + } + }, + { + "model": "Zoitapp.lga", + "pk": "81", + "fields":{ + "name": "Onitsha South", + "zone": "South-East", + "Stateid": "4", + "id": 17 + } + }, + { + "model": "Zoitapp.lga", + "pk": "81", + "fields":{ + "name": "Orumba North", + "zone": "South-East", + "Stateid": "4", + "id": 18 + } + }, + { + "model": "Zoitapp.lga", + "pk": "82", + "fields":{ + "name": "Orumba South", + "zone": "South-East", + "Stateid": "4", + "id": 19 + } + }, + { + "model": "Zoitapp.lga", + "pk": "83", + "fields":{ + "name": "Oyi", + "zone": "South-East", + "Stateid": "4", + "id": 20 + } + } +] \ No newline at end of file diff --git a/src/usersapp/fixtures/lga_data.json b/src/usersapp/fixtures/lga_data.json new file mode 100644 index 0000000..58d6747 --- /dev/null +++ b/src/usersapp/fixtures/lga_data.json @@ -0,0 +1,3675 @@ +[ + { + "name": "Aba North", + "zone": "South-East", + "id": 1 + }, + { + "name": "Aba South", + "zone": "South-East", + "ïd": 2 + }, + { + "name": "Arochukwu", + "zone": "South-East", + "id": 3 + }, + { + "name": "Bende", + "zone": "South-East", + "id": 4 + }, + { + "name": "Ikwuano", + "zone": "South-East", + "id": 5 + }, + { + "name": "Isiala Ngwa North", + "zone": "South-East", + "id": 6 + }, + { + "name": "Isiala Ngwa South", + "zone": "South-East", + "id": 7 + }, + { + "name": "Isuikwuato", + "zone": "South-East", + "id": 8 + }, + { + "name": "Obi Ngwa", + "zone": "South-East", + "id": 9 + }, + { + "name": "Ohafia", + "zone": "South-East", + "id": 10 + }, + { + "name": "Osisioma", + "zone": "South-East", + "id": 11 + }, + { + "name": "Ugwunagbo", + "zone": "South-East", + "id": 12 + }, + { + "name": "Ukwa East", + "zone": "South-East", + "id": 13 + }, + { + "name": "Ukwa West", + "zone": "South-East", + "id": 14 + }, + { + "name": "Umuahia North", + "zone": "South-East", + "id": 15 + }, + { + "name": "Umuahia South", + "zone": "South-East", + "id": 16 + }, + { + "name": "Umu Nneochi", + "zone": "South-East", + "id": 17 + }, + { + "name": "Grie", + "zone": "Nort-East", + "id": 5 + }, + { + "name": "Hong", + "zone": "Nort-East", + "id": 6 + }, + { + "name": "Jada", + "zone": "Nort-East", + "id": 7 + }, + { + "name": "Lamurde", + "zone": "Nort-East", + "id": 8 + }, + { + "name": "Madagali", + "zone": "Nort-East", + "id": 9 + }, + { + "name": "Maiha", + "zone": "Nort-East", + "id": 10 + }, + { + "name": "Mayo Belwa", + "zone": "Nort-East", + "id": 11 + }, + { + "name": "Michika", + "zone": "Nort-East", + "id": 12 + }, + { + "name": "Mubi North", + "zone": "Nort-East", + "id": 13 + }, + { + "name": "Mubi South", + "zone": "Nort-East", + "id": 14 + }, + { + "name": "Numan", + "zone": "Nort-East", + "id": 15 + }, + { + "name": "Shelleng", + "zone": "Nort-East", + "id": 16 + }, + { + "name": "Song", + "zone": "Nort-East", + "id": 17 + }, + { + "name": "Toungo", + "zone": "Nort-East", + "id": 18 + }, + { + "name": "Yola North", + "zone": "Nort-East", + "id": 19 + }, + { + "name": "Yola South", + "zone": "Nort-East", + "id": 20 + }, + { + "name": "Eastern Obolo", + "zone": "South-South", + "id": 1 + }, + { + "name": "Eket", + "zone": "South-South", + "id": 2 + }, + { + "name": "Esit Eket", + "zone": "South-South", + "id": 3 + }, + { + "name": "Essien Udim", + "zone": "South-South", + "id": 4 + }, + { + "name": "Etim Ekpo", + "zone": "South-South", + "id": 5 + }, + { + "name": "Etinan", + "zone": "South-South", + "id": 6 + }, + { + "name": "Ibeno", + "zone": "South-South", + "id": 7 + }, + { + "name": "Ibesikpo Asutan", + "zone": "South-South", + "id": 8 + }, + { + "name": "Ibiono-Ibom", + "zone": "South-South", + "id": 9 + }, + { + "name": "Ika", + "zone": "South-South", + "id": 10 + }, + { + "name": "Ikono", + "zone": "South-South", + "id": 11 + }, + { + "name": "Ikot Abasi", + "zone": "South-South", + "id": 12 + }, + { + "name": "Ikot Ekpene", + "zone": "South-South", + "id": 13 + }, + { + "name": "Ini", + "zone": "South-South", + "id": 14 + }, + { + "name": "Itu", + "zone": "South-South", + "id": 15 + }, + { + "name": "Mbo", + "zone": "South-South", + "id": 16 + }, + { + "name": "Mkpat-Enin", + "zone": "South-South", + "id": 17 + }, + { + "name": "Nsit-Atai", + "zone": "South-South", + "id": 18 + }, + { + "name": "Nsit-Ibom", + "zone": "South-South", + "id": 19 + }, + { + "name": "Nsit-Ubium", + "zone": "South-South", + "id": 20 + }, + { + "name": "Obot Akara", + "zone": "South-South", + "id": 21 + }, + { + "name": "Okobo", + "zone": "South-South", + "id": 22 + }, + { + "name": "Onna", + "zone": "South-South", + "id": 23 + }, + { + "name": "Oron", + "zone": "South-South", + "id": 24 + }, + { + "name": "Oruk Anam", + "zone": "South-South", + "id": 25 + }, + { + "name": "Udung-Uko", + "zone": "South-South", + "id": 26 + }, + { + "name": "Ukanafun", + "zone": "South-South", + "id": 27 + }, + { + "name": "Uruan", + "zone": "South-South", + "id": 28 + }, + { + "name": "Urue-Offong/Oruko", + "zone": "South-South", + "id": 29 + }, + { + "name": "Uyo", + "zone": "South-South", + "id": 30 + }, + { + "name": "Anambra East", + "zone": "South-East", + "id": 1 + }, + { + "name": "Anambra West", + "zone": "South-East", + "id": 2 + }, + { + "name": "Anaocha", + "zone": "South-East", + "id": 3 + }, + { + "name": "Awka North", + "zone": "South-East", + "id": 4 + }, + { + "name": "Awka South", + "zone": "South-East", + "id": 5 + }, + { + "name": "Ayamelum", + "zone": "South-East", + "id": 6 + }, + { + "name": "Dunukofia", + "zone": "South-East", + "id": 7 + }, + { + "name": "Ekwusigo", + "zone": "South-East", + "id": 8 + }, + { + "name": "Idemili North", + "zone": "South-East", + "id": 9 + }, + { + "name": "Idemili South", + "zone": "South-East", + "id": 10 + }, + { + "name": "Ihiala", + "zone": "South-East", + "id": 11 + }, + { + "name": "Njikoka", + "zone": "South-East", + "id": 12 + }, + { + "name": "Nnewi North", + "zone": "South-East", + "id": 13 + }, + { + "name": "Nnewi South", + "zone": "South-East", + "id": 14 + }, + { + "name": "Ogbaru", + "zone": "South-East", + "id": 15 + }, + { + "name": "Onitsha North", + "zone": "South-East", + "id": 16 + }, + { + "name": "Onitsha South", + "zone": "South-East", + "id": 17 + }, + { + "name": "Orumba North", + "zone": "South-East", + "id": 18 + }, + { + "name": "Orumba South", + "zone": "South-East", + "id": 19 + }, + { + "name": "Oyi", + "zone": "South-East", + "id": 20 + }, + { + "name": "Bauchi", + "zone": "Nort-East", + "id": 1 + }, + { + "name": "Bogoro", + "zone": "Nort-East", + "id": 2 + }, + { + "name": "Damban", + "zone": "Nort-East", + "id": 3 + }, + { + "name": "Darazo", + "zone": "Nort-East", + "id": 4 + }, + { + "name": "Dass", + "zone": "Nort-East", + "id": 5 + }, + { + "name": "Gamawa", + "zone": "Nort-East", + "id": 6 + }, + { + "name": "Ganjuwa", + "zone": "Nort-East", + "id": 7 + }, + { + "name": "Giade", + "zone": "Nort-East", + "id": 8 + }, + { + "name": "Itas/Gadau", + "zone": "Nort-East", + "id": 9 + }, + { + "name": "Jama'are", + "zone": "Nort-East", + "id": 10 + }, + { + "name": "Katagum", + "zone": "Nort-East", + "id": 11 + }, + { + "name": "Kirfi", + "zone": "Nort-East", + "id": 12 + }, + { + "name": "Misau", + "zone": "Nort-East", + "id": 13 + }, + { + "name": "Ningi", + "zone": "Nort-East", + "id": 14 + }, + { + "name": "Shira", + "zone": "Nort-East", + "id": 15 + }, + { + "name": "Tafawa Balewa", + "zone": "Nort-East", + "id": 16 + }, + { + "name": "Toro", + "zone": "Nort-East", + "id": 17 + }, + { + "name": "Warji", + "zone": "Nort-East", + "id": 18 + }, + { + "name": "Zaki", + "zone": "Nort-East", + "id": 19 + }, + { + "name": "Ekeremor", + "zone": "South-South", + "id": 1 + }, + { + "name": "Kolokuma/Opokuma", + "zone": "South-South", + "id": 2 + }, + { + "name": "Nembe", + "zone": "South-South", + "id": 3 + }, + { + "name": "Ogbia", + "zone": "South-South", + "id": 4 + }, + { + "name": "Sagbama", + "zone": "South-South", + "id": 5 + }, + { + "name": "Southern Ijaw", + "zone": "South-South", + "id": 6 + }, + { + "name": "Yenagoa", + "zone": "South-South", + "id": 7 + }, + { + "name": "Apa", + "zone": "North-Central", + "id": 1 + }, + { + "name": "Ado", + "zone": "North-Central", + "id": 2 + }, + { + "name": "Buruku", + "zone": "North-Central", + "id": 3 + }, + { + "name": "Gboko", + "zone": "North-Central", + "id": 4 + }, + { + "name": "Guma", + "zone": "North-Central", + "id": 5 + }, + { + "name": "Gwer East", + "zone": "North-Central", + "id": 6 + }, + { + "name": "Gwer West", + "zone": "North-Central", + "id": 7 + }, + { + "name": "Katsina-Ala", + "zone": "North-Central", + "id": 8 + }, + { + "name": "Konshisha", + "zone": "North-Central", + "id": 9 + }, + { + "name": "Kwande", + "zone": "North-Central", + "id": 10 + }, + { + "name": "Logo", + "zone": "North-Central", + "id": 11 + }, + { + "name": "Makurdi", + "zone": "North-Central", + "id": 12 + }, + { + "name": "Obi", + "zone": "North-Central", + "id": 13 + }, + { + "name": "Ogbadibo", + "zone": "North-Central", + "id": 14 + }, + { + "name": "Ohimini", + "zone": "North-Central", + "id": 15 + }, + { + "name": "Oju", + "zone": "North-Central", + "id": 16 + }, + { + "name": "Okpokwu", + "zone": "North-Central", + "id": 17 + }, + { + "name": "Oturkpo", + "zone": "North-Central", + "id": 18 + }, + { + "name": "Tarka", + "zone": "North-Central", + "id": 19 + }, + { + "name": "Ukum", + "zone": "North-Central", + "id": 20 + }, + { + "name": "Ushongo", + "zone": "North-Central", + "id": 21 + }, + { + "name": "Vandeikya", + "zone": "North-Central", + "id": 22 + }, + { + "name": "Askira/Uba", + "zone": "Nort-East", + "id": 1 + }, + { + "name": "Bama", + "zone": "Nort-East", + "id": 2 + }, + { + "name": "Bayo", + "zone": "Nort-East", + "id": 3 + }, + { + "name": "Biu", + "zone": "Nort-East", + "id": 4 + }, + { + "name": "Chibok", + "zone": "Nort-East", + "id": 5 + }, + { + "name": "Damboa", + "zone": "Nort-East", + "id": 6 + }, + { + "name": "Dikwa", + "zone": "Nort-East", + "id": 7 + }, + { + "name": "Gubio", + "zone": "Nort-East", + "id": 8 + }, + { + "name": "Guzamala", + "zone": "Nort-East", + "id": 9 + }, + { + "name": "Gwoza", + "zone": "Nort-East", + "id": 10 + }, + { + "name": "Hawul", + "zone": "Nort-East", + "id": 11 + }, + { + "name": "Jere", + "zone": "Nort-East", + "id": 12 + }, + { + "name": "Kaga", + "zone": "Nort-East", + "id": 13 + }, + { + "name": "Kala/Balge", + "zone": "Nort-East", + "id": 14 + }, + { + "name": "Konduga", + "zone": "Nort-East", + "id": 15 + }, + { + "name": "Kukawa", + "zone": "Nort-East", + "id": 16 + }, + { + "name": "Kwaya Kusar", + "zone": "Nort-East", + "id": 17 + }, + { + "name": "Mafa", + "zone": "Nort-East", + "id": 18 + }, + { + "name": "Magumeri", + "zone": "Nort-East", + "id": 19 + }, + { + "name": "Maiduguri", + "zone": "Nort-East", + "id": 20 + }, + { + "name": "Marte", + "zone": "Nort-East", + "id": 21 + }, + { + "name": "Mobbar", + "zone": "Nort-East", + "id": 22 + }, + { + "name": "Monguno", + "zone": "Nort-East", + "id": 23 + }, + { + "name": "Ngala", + "zone": "Nort-East", + "id": 24 + }, + { + "name": "Nganzai", + "zone": "Nort-East", + "id": 25 + }, + { + "name": "Shani", + "zone": "Nort-East", + "id": 26 + }, + { + "name": "Akamkpa", + "zone": "South-South", + "id": 1 + }, + { + "name": "Akpabuyo", + "zone": "South-South", + "id": 2 + }, + { + "name": "Bakassi", + "zone": "South-South", + "id": 3 + }, + { + "name": "Bekwarra", + "zone": "South-South", + "id": 4 + }, + { + "name": "Biase", + "zone": "South-South", + "id": 5 + }, + { + "name": "Boki", + "zone": "South-South", + "id": 6 + }, + { + "name": "Calabar Municipal", + "zone": "South-South", + "id": 7 + }, + { + "name": "Calabar South", + "zone": "South-South", + "id": 8 + }, + { + "name": "Etung", + "zone": "South-South", + "id": 9 + }, + { + "name": "Ikom", + "zone": "South-South", + "id": 10 + }, + { + "name": "Obanliku", + "zone": "South-South", + "id": 11 + }, + { + "name": "Obubra", + "zone": "South-South", + "id": 12 + }, + { + "name": "Obudu", + "zone": "South-South", + "id": 13 + }, + { + "name": "Odukpani", + "zone": "South-South", + "id": 14 + }, + { + "name": "Ogoja", + "zone": "South-South", + "id": 15 + }, + { + "name": "Yakuur", + "zone": "South-South", + "id": 16 + }, + { + "name": "Yala", + "zone": "South-South", + "id": 17 + }, + { + "name": "Aniocha South", + "zone": "South-South", + "id": 1 + }, + { + "name": "Bomadi", + "zone": "South-South", + "id": 2 + }, + { + "name": "Burutu", + "zone": "South-South", + "id": 3 + }, + { + "name": "Ethiope East", + "zone": "South-South", + "id": 4 + }, + { + "name": "Ethiope West", + "zone": "South-South", + "id": 5 + }, + { + "name": "Ika North East", + "zone": "South-South", + "id": 6 + }, + { + "name": "Ika South", + "zone": "South-South", + "id": 7 + }, + { + "name": "Isoko North", + "zone": "South-South", + "id": 8 + }, + { + "name": "Isoko South", + "zone": "South-South", + "id": 9 + }, + { + "name": "Ndokwa East", + "zone": "South-South", + "id": 10 + }, + { + "name": "Ndokwa West", + "zone": "South-South", + "id": 11 + }, + { + "name": "Okpe", + "zone": "South-South", + "id": 12 + }, + { + "name": "Oshimili North", + "zone": "South-South", + "id": 13 + }, + { + "name": "Oshimili South", + "zone": "South-South", + "id": 14 + }, + { + "name": "Patani", + "zone": "South-South", + "id": 15 + }, + { + "name": "Sapele", + "zone": "South-South", + "id": 16 + }, + { + "name": "Udu", + "zone": "South-South", + "id": 17 + }, + { + "name": "Ughelli North", + "zone": "South-South", + "id": 18 + }, + { + "name": "Ughelli South", + "zone": "South-South", + "id": 19 + }, + { + "name": "Ukwuani", + "zone": "South-South", + "id": 20 + }, + { + "name": "Uvwie", + "zone": "South-South", + "id": 21 + }, + { + "name": "Warri North", + "zone": "South-South", + "id": 22 + }, + { + "name": "Warri South", + "zone": "South-South", + "id": 23 + }, + { + "name": "Warri South West", + "zone": "South-South", + "id": 24 + }, + { + "name": "Afikpo North", + "zone": "South-East", + "id": 1 + }, + { + "name": "Afikpo South", + "zone": "South-East", + "id": 2 + }, + { + "name": "Ebonyi", + "zone": "South-East", + "id": 3 + }, + { + "name": "Ezza North", + "zone": "South-East", + "id": 4 + }, + { + "name": "Ezza South", + "zone": "South-East", + "id": 5 + }, + { + "name": "Ikwo", + "zone": "South-East", + "id": 6 + }, + { + "name": "Ishielu", + "zone": "South-East", + "id": 7 + }, + { + "name": "Ivo", + "zone": "South-East", + "id": 8 + }, + { + "name": "Izzi", + "zone": "South-East", + "id": 9 + }, + { + "name": "Ohaozara", + "zone": "South-East", + "id": 10 + }, + { + "name": "Ohaukwu", + "zone": "South-East", + "id": 11 + }, + { + "name": "Onicha", + "zone": "South-East", + "id": 12 + }, + { + "name": "Egor", + "zone": "South-South", + "id": 1 + }, + { + "name": "Esan Central", + "zone": "South-South", + "id": 2 + }, + { + "name": "Esan North-East", + "zone": "South-South", + "id": 3 + }, + { + "name": "Esan South-East", + "zone": "South-South", + "id": 4 + }, + { + "name": "Esan West", + "zone": "South-South", + "id": 5 + }, + { + "name": "Etsako Central", + "zone": "South-South", + "id": 6 + }, + { + "name": "Etsako East", + "zone": "South-South", + "id": 7 + }, + { + "name": "Etsako West", + "zone": "South-South", + "id": 8 + }, + { + "name": "Igueben", + "zone": "South-South", + "id": 9 + }, + { + "name": "Ikpoba Okha", + "zone": "South-South", + "id": 10 + }, + { + "name": "Orhionmwon", + "zone": "South-South", + "id": 11 + }, + { + "name": "Oredo", + "zone": "South-South", + "id": 12 + }, + { + "name": "Ovia North-East", + "zone": "South-South", + "id": 13 + }, + { + "name": "Ovia South-West", + "zone": "South-South", + "id": 14 + }, + { + "name": "Owan East", + "zone": "South-South", + "id": 15 + }, + { + "name": "Owan West", + "zone": "South-South", + "id": 16 + }, + { + "name": "Uhunmwonde", + "zone": "South-South", + "id": 17 + }, + { + "name": "Efon", + "zone": "South-West", + "id": 1 + }, + { + "name": "Ekiti East", + "zone": "South-West", + "id": 2 + }, + { + "name": "Ekiti South-West", + "zone": "South-West", + "id": 3 + }, + { + "name": "Ekiti West", + "zone": "South-West", + "id": 4 + }, + { + "name": "Emure", + "zone": "South-West", + "id": 5 + }, + { + "name": "Gbonyin", + "zone": "South-West", + "id": 6 + }, + { + "name": "Ido Osi", + "zone": "South-West", + "id": 7 + }, + { + "name": "Ijero", + "zone": "South-West", + "id": 8 + }, + { + "name": "Ikere", + "zone": "South-West", + "id": 9 + }, + { + "name": "Ikole", + "zone": "South-West", + "id": 10 + }, + { + "name": "Ilejemeje", + "zone": "South-West", + "id": 11 + }, + { + "name": "Irepodun/Ifelodun", + "zone": "South-West", + "id": 12 + }, + { + "name": "Ise/Orun", + "zone": "South-West", + "id": 13 + }, + { + "name": "Moba", + "zone": "South-West", + "id": 14 + }, + { + "name": "Oye", + "zone": "South-West", + "id": 15 + }, + { + "name": "Awgu", + "zone": "South-East", + "id": 1 + }, + { + "name": "Enugu East", + "zone": "South-East", + "id": 2 + }, + { + "name": "Enugu North", + "zone": "South-East", + "id": 3 + }, + { + "name": "Enugu South", + "zone": "South-East", + "id": 4 + }, + { + "name": "Ezeagu", + "zone": "South-East", + "id": 5 + }, + { + "name": "Igbo Etiti", + "zone": "South-East", + "id": 6 + }, + { + "name": "Igbo Eze North", + "zone": "South-East", + "id": 7 + }, + { + "name": "Igbo Eze South", + "zone": "South-East", + "id": 8 + }, + { + "name": "Isi Uzo", + "zone": "South-East", + "id": 9 + }, + { + "name": "Nkanu East", + "zone": "South-East", + "id": 10 + }, + { + "name": "Nkanu West", + "zone": "South-East", + "id": 11 + }, + { + "name": "Nsukka", + "zone": "South-East", + "id": 12 + }, + { + "name": "Oji River", + "zone": "South-East", + "id": 13 + }, + { + "name": "Udenu", + "zone": "South-East", + "id": 14 + }, + { + "name": "Udi", + "zone": "South-East", + "id": 15 + }, + { + "name": "Uzo Uwani", + "zone": "South-East", + "id": 16 + }, + { + "name": "Bwari", + "zone": "North-Central", + "id": 1 + }, + { + "name": "Gwagwalada", + "zone": "North-Central", + "id": 2 + }, + { + "name": "Kuje", + "zone": "North-Central", + "id": 3 + }, + { + "name": "Kwali", + "zone": "North-Central", + "id": 4 + }, + { + "name": "Municipal Area Council", + "zone": "North-Central", + "id": 5 + }, + { + "name": "Balanga", + "zone": "Nort-East", + "id": 1 + }, + { + "name": "Billiri", + "zone": "Nort-East", + "id": 2 + }, + { + "name": "Dukku", + "zone": "Nort-East", + "id": 3 + }, + { + "name": "Funakaye", + "zone": "Nort-East", + "id": 4 + }, + { + "name": "Gombe", + "zone": "Nort-East", + "id": 5 + }, + { + "name": "Kaltungo", + "zone": "Nort-East", + "id": 6 + }, + { + "name": "Kwami", + "zone": "Nort-East", + "id": 7 + }, + { + "name": "Nafada", + "zone": "Nort-East", + "id": 8 + }, + { + "name": "Shongom", + "zone": "Nort-East", + "id": 9 + }, + { + "name": "Yamaltu/Deba", + "zone": "Nort-East", + "id": 10 + }, + { + "name": "Ahiazu Mbaise", + "zone": "South-East", + "id": 1 + }, + { + "name": "Ehime Mbano", + "zone": "South-East", + "id": 2 + }, + { + "name": "Ezinihitte", + "zone": "South-East", + "id": 3 + }, + { + "name": "Ideato North", + "zone": "South-East", + "id": 4 + }, + { + "name": "Ideato South", + "zone": "South-East", + "id": 5 + }, + { + "name": "Ihitte/Uboma", + "zone": "South-East", + "id": 6 + }, + { + "name": "Ikeduru", + "zone": "South-East", + "id": 7 + }, + { + "name": "Isiala Mbano", + "zone": "South-East", + "id": 8 + }, + { + "name": "Isu", + "zone": "South-East", + "id": 9 + }, + { + "name": "Mbaitoli", + "zone": "South-East", + "id": 10 + }, + { + "name": "Ngor Okpala", + "zone": "South-East", + "id": 11 + }, + { + "name": "Njaba", + "zone": "South-East", + "id": 12 + }, + { + "name": "Nkwerre", + "zone": "South-East", + "id": 13 + }, + { + "name": "Nwangele", + "zone": "South-East", + "id": 14 + }, + { + "name": "Obowo", + "zone": "South-East", + "id": 15 + }, + { + "name": "Oguta", + "zone": "South-East", + "id": 16 + }, + { + "name": "Ohaji/Egbema", + "zone": "South-East", + "id": 17 + }, + { + "name": "Okigwe", + "zone": "South-East", + "id": 18 + }, + { + "name": "Orlu", + "zone": "South-East", + "id": 19 + }, + { + "name": "Orsu", + "zone": "South-East", + "id": 20 + }, + { + "name": "Oru East", + "zone": "South-East", + "id": 21 + }, + { + "name": "Oru West", + "zone": "South-East", + "id": 22 + }, + { + "name": "Owerri Municipal", + "zone": "South-East", + "id": 23 + }, + { + "name": "Owerri North", + "zone": "South-East", + "id": 24 + }, + { + "name": "Owerri West", + "zone": "South-East", + "id": 25 + }, + { + "name": "Unuimo", + "zone": "South-East", + "id": 26 + }, + { + "name": "Babura", + "zone": "North-West", + "id": 1 + }, + { + "name": "Biriniwa", + "zone": "North-West", + "id": 2 + }, + { + "name": "Birnin Kudu", + "zone": "North-West", + "id": 3 + }, + { + "name": "Buji", + "zone": "North-West", + "id": 4 + }, + { + "name": "Dutse", + "zone": "North-West", + "id": 5 + }, + { + "name": "Gagarawa", + "zone": "North-West", + "id": 6 + }, + { + "name": "Garki", + "zone": "North-West", + "id": 7 + }, + { + "name": "Gumel", + "zone": "North-West", + "id": 8 + }, + { + "name": "Guri", + "zone": "North-West", + "id": 9 + }, + { + "name": "Gwaram", + "zone": "North-West", + "id": 10 + }, + { + "name": "Gwiwa", + "zone": "North-West", + "id": 11 + }, + { + "name": "Hadejia", + "zone": "North-West", + "id": 12 + }, + { + "name": "Jahun", + "zone": "North-West", + "id": 13 + }, + { + "name": "Kafin Hausa", + "zone": "North-West", + "id": 14 + }, + { + "name": "Kazaure", + "zone": "North-West", + "id": 15 + }, + { + "name": "Kiri Kasama", + "zone": "North-West", + "id": 16 + }, + { + "name": "Kiyawa", + "zone": "North-West", + "id": 17 + }, + { + "name": "Kaugama", + "zone": "North-West", + "id": 18 + }, + { + "name": "Maigatari", + "zone": "North-West", + "id": 19 + }, + { + "name": "Malam Madori", + "zone": "North-West", + "id": 20 + }, + { + "name": "Miga", + "zone": "North-West", + "id": 21 + }, + { + "name": "Ringim", + "zone": "North-West", + "id": 22 + }, + { + "name": "Roni", + "zone": "North-West", + "id": 23 + }, + { + "name": "Sule Tankarkar", + "zone": "North-West", + "id": 24 + }, + { + "name": "Taura", + "zone": "North-West", + "id": 25 + }, + { + "name": "Yankwashi", + "zone": "North-West", + "id": 26 + }, + { + "name": "Chikun", + "zone": "North-West", + "id": 1 + }, + { + "name": "Giwa", + "zone": "North-West", + "id": 2 + }, + { + "name": "Igabi", + "zone": "North-West", + "id": 3 + }, + { + "name": "Ikara", + "zone": "North-West", + "id": 4 + }, + { + "name": "Jaba", + "zone": "North-West", + "id": 5 + }, + { + "name": "Jema'a", + "zone": "North-West", + "id": 6 + }, + { + "name": "Kachia", + "zone": "North-West", + "id": 7 + }, + { + "name": "Kaduna North", + "zone": "North-West", + "id": 8 + }, + { + "name": "Kaduna South", + "zone": "North-West", + "id": 9 + }, + { + "name": "Kagarko", + "zone": "North-West", + "id": 10 + }, + { + "name": "Kajuru", + "zone": "North-West", + "id": 11 + }, + { + "name": "Kaura", + "zone": "North-West", + "id": 12 + }, + { + "name": "Kauru", + "zone": "North-West", + "id": 13 + }, + { + "name": "Kubau", + "zone": "North-West", + "id": 14 + }, + { + "name": "Kudan", + "zone": "North-West", + "id": 15 + }, + { + "name": "Lere", + "zone": "North-West", + "id": 16 + }, + { + "name": "Makarfi", + "zone": "North-West", + "id": 17 + }, + { + "name": "Sabon Gari", + "zone": "North-West", + "id": 18 + }, + { + "name": "Sanga", + "zone": "North-West", + "id": 19 + }, + { + "name": "Soba", + "zone": "North-West", + "id": 20 + }, + { + "name": "Zangon Kataf", + "zone": "North-West", + "id": 21 + }, + { + "name": "Zaria", + "zone": "North-West", + "id": 22 + }, + { + "name": "Albasu", + "zone": "North-West", + "id": 1 + }, + { + "name": "Bagwai", + "zone": "North-West", + "id": 2 + }, + { + "name": "Bebeji", + "zone": "North-West", + "id": 3 + }, + { + "name": "Bichi", + "zone": "North-West", + "id": 4 + }, + { + "name": "Bunkure", + "zone": "North-West", + "id": 5 + }, + { + "name": "Dala", + "zone": "North-West", + "id": 6 + }, + { + "name": "Dambatta", + "zone": "North-West", + "id": 7 + }, + { + "name": "Dawakin Kudu", + "zone": "North-West", + "id": 8 + }, + { + "name": "Dawakin Tofa", + "zone": "North-West", + "id": 9 + }, + { + "name": "Doguwa", + "zone": "North-West", + "id": 10 + }, + { + "name": "Fagge", + "zone": "North-West", + "id": 11 + }, + { + "name": "Gabasawa", + "zone": "North-West", + "id": 12 + }, + { + "name": "Garko", + "zone": "North-West", + "id": 13 + }, + { + "name": "Garun Mallam", + "zone": "North-West", + "id": 14 + }, + { + "name": "Gaya", + "zone": "North-West", + "id": 15 + }, + { + "name": "Gezawa", + "zone": "North-West", + "id": 16 + }, + { + "name": "Gwale", + "zone": "North-West", + "id": 17 + }, + { + "name": "Gwarzo", + "zone": "North-West", + "id": 18 + }, + { + "name": "Kabo", + "zone": "North-West", + "id": 19 + }, + { + "name": "Kano Municipal", + "zone": "North-West", + "id": 20 + }, + { + "name": "Karaye", + "zone": "North-West", + "id": 21 + }, + { + "name": "Kibiya", + "zone": "North-West", + "id": 22 + }, + { + "name": "Kiru", + "zone": "North-West", + "id": 23 + }, + { + "name": "Kumbotso", + "zone": "North-West", + "id": 24 + }, + { + "name": "Kunchi", + "zone": "North-West", + "id": 25 + }, + { + "name": "Kura", + "zone": "North-West", + "id": 26 + }, + { + "name": "Madobi", + "zone": "North-West", + "id": 27 + }, + { + "name": "Makoda", + "zone": "North-West", + "id": 28 + }, + { + "name": "Minjibir", + "zone": "North-West", + "id": 29 + }, + { + "name": "Nasarawa", + "zone": "North-West", + "id": 30 + }, + { + "name": "Rano", + "zone": "North-West", + "id": 31 + }, + { + "name": "Rimin Gado", + "zone": "North-West", + "id": 32 + }, + { + "name": "Rogo", + "zone": "North-West", + "id": 33 + }, + { + "name": "Shanono", + "zone": "North-West", + "id": 34 + }, + { + "name": "Sumaila", + "zone": "North-West", + "id": 35 + }, + { + "name": "Takai", + "zone": "North-West", + "id": 36 + }, + { + "name": "Tarauni", + "zone": "North-West", + "id": 37 + }, + { + "name": "Tofa", + "zone": "North-West", + "id": 38 + }, + { + "name": "Tsanyawa", + "zone": "North-West", + "id": 39 + }, + { + "name": "Tudun Wada", + "zone": "North-West", + "id": 40 + }, + { + "name": "Ungogo", + "zone": "North-West", + "id": 41 + }, + { + "name": "Warawa", + "zone": "North-West", + "id": 42 + }, + { + "name": "Wudil", + "zone": "North-West", + "id": 43 + }, + { + "name": "Batagarawa", + "zone": "North-West", + "id": 1 + }, + { + "name": "Batsari", + "zone": "North-West", + "id": 2 + }, + { + "name": "Baure", + "zone": "North-West", + "id": 3 + }, + { + "name": "Bindawa", + "zone": "North-West", + "id": 4 + }, + { + "name": "Charanchi", + "zone": "North-West", + "id": 5 + }, + { + "name": "Dandume", + "zone": "North-West", + "id": 6 + }, + { + "name": "Danja", + "zone": "North-West", + "id": 7 + }, + { + "name": "Dan Musa", + "zone": "North-West", + "id": 8 + }, + { + "name": "Daura", + "zone": "North-West", + "id": 9 + }, + { + "name": "Dutsi", + "zone": "North-West", + "id": 10 + }, + { + "name": "Dutsin Ma", + "zone": "North-West", + "id": 11 + }, + { + "name": "Faskari", + "zone": "North-West", + "id": 12 + }, + { + "name": "Funtua", + "zone": "North-West", + "id": 13 + }, + { + "name": "Ingawa", + "zone": "North-West", + "id": 14 + }, + { + "name": "Jibia", + "zone": "North-West", + "id": 15 + }, + { + "name": "Kafur", + "zone": "North-West", + "id": 16 + }, + { + "name": "Kaita", + "zone": "North-West", + "id": 17 + }, + { + "name": "Kankara", + "zone": "North-West", + "id": 18 + }, + { + "name": "Kankia", + "zone": "North-West", + "id": 19 + }, + { + "name": "Katsina", + "zone": "North-West", + "id": 20 + }, + { + "name": "Kurfi", + "zone": "North-West", + "id": 21 + }, + { + "name": "Kusada", + "zone": "North-West", + "id": 22 + }, + { + "name": "Mai'Adua", + "zone": "North-West", + "id": 23 + }, + { + "name": "Malumfashi", + "zone": "North-West", + "id": 24 + }, + { + "name": "Mani", + "zone": "North-West", + "id": 25 + }, + { + "name": "Mashi", + "zone": "North-West", + "id": 26 + }, + { + "name": "Matazu", + "zone": "North-West", + "id": 27 + }, + { + "name": "Musawa", + "zone": "North-West", + "id": 28 + }, + { + "name": "Rimi", + "zone": "North-West", + "id": 29 + }, + { + "name": "Sabuwa", + "zone": "North-West", + "id": 30 + }, + { + "name": "Safana", + "zone": "North-West", + "id": 31 + }, + { + "name": "Sandamu", + "zone": "North-West", + "id": 32 + }, + { + "name": "Zango", + "zone": "North-West", + "id": 33 + }, + { + "name": "Arewa Dandi", + "zone": "North-West", + "id": 1 + }, + { + "name": "Argungu", + "zone": "North-West", + "id": 2 + }, + { + "name": "Augie", + "zone": "North-West", + "id": 3 + }, + { + "name": "Bagudo", + "zone": "North-West", + "id": 4 + }, + { + "name": "Birnin Kebbi", + "zone": "North-West", + "id": 5 + }, + { + "name": "Bunza", + "zone": "North-West", + "id": 6 + }, + { + "name": "Dandi", + "zone": "North-West", + "id": 7 + }, + { + "name": "Fakai", + "zone": "North-West", + "id": 8 + }, + { + "name": "Gwandu", + "zone": "North-West", + "id": 9 + }, + { + "name": "Jega", + "zone": "North-West", + "id": 10 + }, + { + "name": "Kalgo", + "zone": "North-West", + "id": 11 + }, + { + "name": "Koko/Besse", + "zone": "North-West", + "id": 12 + }, + { + "name": "Maiyama", + "zone": "North-West", + "id": 13 + }, + { + "name": "Ngaski", + "zone": "North-West", + "id": 14 + }, + { + "name": "Sakaba", + "zone": "North-West", + "id": 15 + }, + { + "name": "Shanga", + "zone": "North-West", + "id": 16 + }, + { + "name": "Suru", + "zone": "North-West", + "id": 17 + }, + { + "name": "Wasagu/Danko", + "zone": "North-West", + "id": 18 + }, + { + "name": "Yauri", + "zone": "North-West", + "id": 19 + }, + { + "name": "Zuru", + "zone": "North-West", + "id": 20 + }, + { + "name": "Ajaokuta", + "zone": "North-Central", + "id": 1 + }, + { + "name": "Ankpa", + "zone": "North-Central", + "id": 2 + }, + { + "name": "Bassa", + "zone": "North-Central", + "id": 3 + }, + { + "name": "Dekina", + "zone": "North-Central", + "id": 4 + }, + { + "name": "Ibaji", + "zone": "North-Central", + "id": 5 + }, + { + "name": "Idah", + "zone": "North-Central", + "id": 6 + }, + { + "name": "Igalamela Odolu", + "zone": "North-Central", + "id": 7 + }, + { + "name": "Ijumu", + "zone": "North-Central", + "id": 8 + }, + { + "name": "Kabba/Bunu", + "zone": "North-Central", + "id": 9 + }, + { + "name": "Kogi", + "zone": "North-Central", + "id": 10 + }, + { + "name": "Lokoja", + "zone": "North-Central", + "id": 11 + }, + { + "name": "Mopa Muro", + "zone": "North-Central", + "id": 12 + }, + { + "name": "Ofu", + "zone": "North-Central", + "id": 13 + }, + { + "name": "Ogori/Magongo", + "zone": "North-Central", + "id": 14 + }, + { + "name": "Okehi", + "zone": "North-Central", + "id": 15 + }, + { + "name": "Okene", + "zone": "North-Central", + "id": 16 + }, + { + "name": "Olamaboro", + "zone": "North-Central", + "id": 17 + }, + { + "name": "Omala", + "zone": "North-Central", + "id": 18 + }, + { + "name": "Yagba East", + "zone": "North-Central", + "id": 19 + }, + { + "name": "Yagba West", + "zone": "North-Central", + "id": 20 + }, + { + "name": "Baruten", + "zone": "North-Central", + "id": 1 + }, + { + "name": "Edu", + "zone": "North-Central", + "id": 2 + }, + { + "name": "Ekiti", + "zone": "North-Central", + "id": 3 + }, + { + "name": "Ifelodun", + "zone": "North-Central", + "id": 4 + }, + { + "name": "Ilorin East", + "zone": "North-Central", + "id": 5 + }, + { + "name": "Ilorin South", + "zone": "North-Central", + "id": 6 + }, + { + "name": "Ilorin West", + "zone": "North-Central", + "id": 7 + }, + { + "name": "Irepodun", + "zone": "North-Central", + "id": 8 + }, + { + "name": "Isin", + "zone": "North-Central", + "id": 9 + }, + { + "name": "Kaiama", + "zone": "North-Central", + "id": 10 + }, + { + "name": "Moro", + "zone": "North-Central", + "id": 11 + }, + { + "name": "Offa", + "zone": "North-Central", + "id": 12 + }, + { + "name": "Oke Ero", + "zone": "North-Central", + "id": 13 + }, + { + "name": "Oyun", + "zone": "North-Central", + "id": 14 + }, + { + "name": "Pategi", + "zone": "North-Central", + "id": 15 + }, + { + "name": "Ajeromi-Ifelodun", + "zone": "South-West", + "id": 1 + }, + { + "name": "Alimosho", + "zone": "South-West", + "id": 2 + }, + { + "name": "Amuwo-Odofin", + "zone": "South-West", + "id": 3 + }, + { + "name": "Apapa", + "zone": "South-West", + "id": 4 + }, + { + "name": "Badagry", + "zone": "South-West", + "id": 5 + }, + { + "name": "Epe", + "zone": "South-West", + "id": 6 + }, + { + "name": "Eti Osa", + "zone": "South-West", + "id": 7 + }, + { + "name": "Ibeju-Lekki", + "zone": "South-West", + "id": 8 + }, + { + "name": "Ifako-Ijaiye", + "zone": "South-West", + "id": 9 + }, + { + "name": "Ikeja", + "zone": "South-West", + "id": 10 + }, + { + "name": "Ikorodu", + "zone": "South-West", + "id": 11 + }, + { + "name": "Kosofe", + "zone": "South-West", + "id": 12 + }, + { + "name": "Lagos Island", + "zone": "South-West", + "id": 13 + }, + { + "name": "Lagos Mainland", + "zone": "South-West", + "id": 14 + }, + { + "name": "Mushin", + "zone": "South-West", + "id": 15 + }, + { + "name": "Ojo", + "zone": "South-West", + "id": 16 + }, + { + "name": "Oshodi-Isolo", + "zone": "South-West", + "id": 17 + }, + { + "name": "Shomolu", + "zone": "South-West", + "id": 18 + }, + { + "name": "Surulere", + "zone": "South-West", + "id": 19 + }, + { + "name": "Awe", + "zone": "North-Central", + "id": 1 + }, + { + "name": "Doma", + "zone": "North-Central", + "id": 2 + }, + { + "name": "Karu", + "zone": "North-Central", + "id": 3 + }, + { + "name": "Keana", + "zone": "North-Central", + "id": 4 + }, + { + "name": "Keffi", + "zone": "North-Central", + "id": 5 + }, + { + "name": "Kokona", + "zone": "North-Central", + "id": 6 + }, + { + "name": "Lafia", + "zone": "North-Central", + "id": 7 + }, + { + "name": "Nasarawa", + "zone": "North-Central", + "id": 8 + }, + { + "name": "Nasarawa Egon", + "zone": "North-Central", + "id": 9 + }, + { + "name": "Obi", + "zone": "North-Central", + "id": 10 + }, + { + "name": "Toto", + "zone": "North-Central", + "id": 11 + }, + { + "name": "Wamba", + "zone": "North-Central", + "id": 12 + }, + { + "name": "Agwara", + "zone": "North-Central", + "id": 1 + }, + { + "name": "Bida", + "zone": "North-Central", + "id": 2 + }, + { + "name": "Borgu", + "zone": "North-Central", + "id": 3 + }, + { + "name": "Bosso", + "zone": "North-Central", + "id": 4 + }, + { + "name": "Chanchaga", + "zone": "North-Central", + "id": 5 + }, + { + "name": "Edati", + "zone": "North-Central", + "id": 6 + }, + { + "name": "Gbako", + "zone": "North-Central", + "id": 7 + }, + { + "name": "Gurara", + "zone": "North-Central", + "id": 8 + }, + { + "name": "Katcha", + "zone": "North-Central", + "id": 9 + }, + { + "name": "Kontagora", + "zone": "North-Central", + "id": 10 + }, + { + "name": "Lapai", + "zone": "North-Central", + "id": 11 + }, + { + "name": "Lavun", + "zone": "North-Central", + "id": 12 + }, + { + "name": "Magama", + "zone": "North-Central", + "id": 13 + }, + { + "name": "Mariga", + "zone": "North-Central", + "id": 14 + }, + { + "name": "Mashegu", + "zone": "North-Central", + "id": 15 + }, + { + "name": "Mokwa", + "zone": "North-Central", + "id": 16 + }, + { + "name": "Moya", + "zone": "North-Central", + "id": 17 + }, + { + "name": "Paikoro", + "zone": "North-Central", + "id": 18 + }, + { + "name": "Rafi", + "zone": "North-Central", + "id": 19 + }, + { + "name": "Rijau", + "zone": "North-Central", + "id": 20 + }, + { + "name": "Shiroro", + "zone": "North-Central", + "id": 21 + }, + { + "name": "Suleja", + "zone": "North-Central", + "id": 22 + }, + { + "name": "Tafa", + "zone": "North-Central", + "id": 23 + }, + { + "name": "Wushishi", + "zone": "North-Central", + "id": 24 + }, + { + "name": "Abeokuta South", + "zone": "South-West", + "id": 1 + }, + { + "name": "Ado-Odo/Ota", + "zone": "South-West", + "id": 2 + }, + { + "name": "Egbado North", + "zone": "South-West", + "id": 3 + }, + { + "name": "Egbado South", + "zone": "South-West", + "id": 4 + }, + { + "name": "Ewekoro", + "zone": "South-West", + "id": 5 + }, + { + "name": "Ifo", + "zone": "South-West", + "id": 6 + }, + { + "name": "Ijebu East", + "zone": "South-West", + "id": 7 + }, + { + "name": "Ijebu North", + "zone": "South-West", + "id": 8 + }, + { + "name": "Ijebu North East", + "zone": "South-West", + "id": 9 + }, + { + "name": "Ijebu Ode", + "zone": "South-West", + "id": 10 + }, + { + "name": "Ikenne", + "zone": "South-West", + "id": 11 + }, + { + "name": "Imeko Afon", + "zone": "South-West", + "id": 12 + }, + { + "name": "Ipokia", + "zone": "South-West", + "id": 13 + }, + { + "name": "Obafemi Owode", + "zone": "South-West", + "id": 14 + }, + { + "name": "Odeda", + "zone": "South-West", + "id": 15 + }, + { + "name": "Odogbolu", + "zone": "South-West", + "id": 16 + }, + { + "name": "Ogun Waterside", + "zone": "South-West", + "id": 17 + }, + { + "name": "Remo North", + "zone": "South-West", + "id": 18 + }, + { + "name": "Shagamu", + "zone": "South-West", + "id": 19 + }, + { + "name": "Akoko North-West", + "zone": "South-West", + "id": 1 + }, + { + "name": "Akoko South-West", + "zone": "South-West", + "id": 2 + }, + { + "name": "Akoko South-East", + "zone": "South-West", + "id": 3 + }, + { + "name": "Akure North", + "zone": "South-West", + "id": 4 + }, + { + "name": "Akure South", + "zone": "South-West", + "id": 5 + }, + { + "name": "Ese Odo", + "zone": "South-West", + "id": 6 + }, + { + "name": "Idanre", + "zone": "South-West", + "id": 7 + }, + { + "name": "Ifedore", + "zone": "South-West", + "id": 8 + }, + { + "name": "Ilaje", + "zone": "South-West", + "id": 9 + }, + { + "name": "Ile Oluji/Okeigbo", + "zone": "South-West", + "id": 10 + }, + { + "name": "Irele", + "zone": "South-West", + "id": 11 + }, + { + "name": "Odigbo", + "zone": "South-West", + "id": 12 + }, + { + "name": "Okitipupa", + "zone": "South-West", + "id": 13 + }, + { + "name": "Ondo East", + "zone": "South-West", + "id": 14 + }, + { + "name": "Ondo West", + "zone": "South-West", + "id": 15 + }, + { + "name": "Ose", + "zone": "South-West", + "id": 16 + }, + { + "name": "Owo", + "zone": "South-West", + "id": 17 + }, + { + "name": "Atakunmosa West", + "zone": "South-West", + "id": 1 + }, + { + "name": "Aiyedaade", + "zone": "South-West", + "id": 2 + }, + { + "name": "Aiyedire", + "zone": "South-West", + "id": 3 + }, + { + "name": "Boluwaduro", + "zone": "South-West", + "id": 4 + }, + { + "name": "Boripe", + "zone": "South-West", + "id": 5 + }, + { + "name": "Ede North", + "zone": "South-West", + "id": 6 + }, + { + "name": "Ede South", + "zone": "South-West", + "id": 7 + }, + { + "name": "Ife Central", + "zone": "South-West", + "id": 8 + }, + { + "name": "Ife East", + "zone": "South-West", + "id": 9 + }, + { + "name": "Ife North", + "zone": "South-West", + "id": 10 + }, + { + "name": "Ife South", + "zone": "South-West", + "id": 11 + }, + { + "name": "Egbedore", + "zone": "South-West", + "id": 12 + }, + { + "name": "Ejigbo", + "zone": "South-West", + "id": 13 + }, + { + "name": "Ifedayo", + "zone": "South-West", + "id": 14 + }, + { + "name": "Ifelodun", + "zone": "South-West", + "id": 15 + }, + { + "name": "Ila", + "zone": "South-West", + "id": 16 + }, + { + "name": "Ilesa East", + "zone": "South-West", + "id": 17 + }, + { + "name": "Ilesa West", + "zone": "South-West", + "id": 18 + }, + { + "name": "Irepodun", + "zone": "South-West", + "id": 19 + }, + { + "name": "Irewole", + "zone": "South-West", + "id": 20 + }, + { + "name": "Isokan", + "zone": "South-West", + "id": 21 + }, + { + "name": "Iwo", + "zone": "South-West", + "id": 22 + }, + { + "name": "Obokun", + "zone": "South-West", + "id": 23 + }, + { + "name": "Odo Otin", + "zone": "South-West", + "id": 24 + }, + { + "name": "Ola Oluwa", + "zone": "South-West", + "id": 25 + }, + { + "name": "Olorunda", + "zone": "South-West", + "id": 26 + }, + { + "name": "Oriade", + "zone": "South-West", + "id": 27 + }, + { + "name": "Orolu", + "zone": "South-West", + "id": 28 + }, + { + "name": "Osogbo", + "zone": "South-West", + "id": 29 + }, + { + "name": "Akinyele", + "zone": "South-West", + "id": 1 + }, + { + "name": "Atiba", + "zone": "South-West", + "id": 2 + }, + { + "name": "Atisbo", + "zone": "South-West", + "id": 3 + }, + { + "name": "Egbeda", + "zone": "South-West", + "id": 4 + }, + { + "name": "Ibadan North", + "zone": "South-West", + "id": 5 + }, + { + "name": "Ibadan North-East", + "zone": "South-West", + "id": 6 + }, + { + "name": "Ibadan North-West", + "zone": "South-West", + "id": 7 + }, + { + "name": "Ibadan South-East", + "zone": "South-West", + "id": 8 + }, + { + "name": "Ibadan South-West", + "zone": "South-West", + "id": 9 + }, + { + "name": "Ibarapa Central", + "zone": "South-West", + "id": 10 + }, + { + "name": "Ibarapa East", + "zone": "South-West", + "id": 11 + }, + { + "name": "Ibarapa North", + "zone": "South-West", + "id": 12 + }, + { + "name": "Ido", + "zone": "South-West", + "id": 13 + }, + { + "name": "Irepo", + "zone": "South-West", + "id": 14 + }, + { + "name": "Iseyin", + "zone": "South-West", + "id": 15 + }, + { + "name": "Itesiwaju", + "zone": "South-West", + "id": 16 + }, + { + "name": "Iwajowa", + "zone": "South-West", + "id": 17 + }, + { + "name": "Kajola", + "zone": "South-West", + "id": 18 + }, + { + "name": "Lagelu", + "zone": "South-West", + "id": 19 + }, + { + "name": "Ogbomosho North", + "zone": "South-West", + "id": 20 + }, + { + "name": "Ogbomosho South", + "zone": "South-West", + "id": 21 + }, + { + "name": "Ogo Oluwa", + "zone": "South-West", + "id": 22 + }, + { + "name": "Olorunsogo", + "zone": "South-West", + "id": 23 + }, + { + "name": "Oluyole", + "zone": "South-West", + "id": 24 + }, + { + "name": "Ona Ara", + "zone": "South-West", + "id": 25 + }, + { + "name": "Orelope", + "zone": "South-West", + "id": 26 + }, + { + "name": "Ori Ire", + "zone": "South-West", + "id": 27 + }, + { + "name": "Oyo", + "zone": "South-West", + "id": 28 + }, + { + "name": "Oyo East", + "zone": "South-West", + "id": 29 + }, + { + "name": "Saki East", + "zone": "South-West", + "id": 30 + }, + { + "name": "Saki West", + "zone": "South-West", + "id": 31 + }, + { + "name": "Surulere", + "zone": "South-West", + "id": 32 + }, + { + "name": "Barkin Ladi", + "zone": "North-Central", + "id": 1 + }, + { + "name": "Bassa", + "zone": "North-Central", + "id": 2 + }, + { + "name": "Jos East", + "zone": "North-Central", + "id": 3 + }, + { + "name": "Jos North", + "zone": "North-Central", + "id": 4 + }, + { + "name": "Jos South", + "zone": "North-Central", + "id": 5 + }, + { + "name": "Kanam", + "zone": "North-Central", + "id": 6 + }, + { + "name": "Kanke", + "zone": "North-Central", + "id": 7 + }, + { + "name": "Langtang South", + "zone": "North-Central", + "id": 8 + }, + { + "name": "Langtang North", + "zone": "North-Central", + "id": 9 + }, + { + "name": "Mangu", + "zone": "North-Central", + "id": 10 + }, + { + "name": "Mikang", + "zone": "North-Central", + "id": 11 + }, + { + "name": "Pankshin", + "zone": "North-Central", + "id": 12 + }, + { + "name": "Qua'an Pan", + "zone": "North-Central", + "id": 13 + }, + { + "name": "Riyom", + "zone": "North-Central", + "id": 14 + }, + { + "name": "Shendam", + "zone": "North-Central", + "id": 15 + }, + { + "name": "Wase", + "zone": "North-Central", + "id": 16 + }, + { + "name": "Ahoada East", + "zone": "South-South", + "id": 1 + }, + { + "name": "Ahoada West", + "zone": "South-South", + "id": 2 + }, + { + "name": "Akuku-Toru", + "zone": "South-South", + "id": 3 + }, + { + "name": "Andoni", + "zone": "South-South", + "id": 4 + }, + { + "name": "Asari-Toru", + "zone": "South-South", + "id": 5 + }, + { + "name": "Bonny", + "zone": "South-South", + "id": 6 + }, + { + "name": "Degema", + "zone": "South-South", + "id": 7 + }, + { + "name": "Eleme", + "zone": "South-South", + "id": 8 + }, + { + "name": "Emuoha", + "zone": "South-South", + "id": 9 + }, + { + "name": "Etche", + "zone": "South-South", + "id": 10 + }, + { + "name": "Gokana", + "zone": "South-South", + "id": 11 + }, + { + "name": "Ikwerre", + "zone": "South-South", + "id": 12 + }, + { + "name": "Khana", + "zone": "South-South", + "id": 13 + }, + { + "name": "Obio/Akpor", + "zone": "South-South", + "id": 14 + }, + { + "name": "Ogba/Egbema/Ndoni", + "zone": "South-South", + "id": 15 + }, + { + "name": "Ogu/Bolo", + "zone": "South-South", + "id": 16 + }, + { + "name": "Okrika", + "zone": "South-South", + "id": 17 + }, + { + "name": "Omuma", + "zone": "South-South", + "id": 18 + }, + { + "name": "Opobo/Nkoro", + "zone": "South-South", + "id": 19 + }, + { + "name": "Oyigbo", + "zone": "South-South", + "id": 20 + }, + { + "name": "Port Harcourt", + "zone": "South-South", + "id": 21 + }, + { + "name": "Tai", + "zone": "South-South", + "id": 22 + }, + { + "name": "Bodinga", + "zone": "North-West", + "id": 1 + }, + { + "name": "Dange Shuni", + "zone": "North-West", + "id": 2 + }, + { + "name": "Gada", + "zone": "North-West", + "id": 3 + }, + { + "name": "Goronyo", + "zone": "North-West", + "id": 4 + }, + { + "name": "Gudu", + "zone": "North-West", + "id": 5 + }, + { + "name": "Gwadabawa", + "zone": "North-West", + "id": 6 + }, + { + "name": "Illela", + "zone": "North-West", + "id": 7 + }, + { + "name": "Isa", + "zone": "North-West", + "id": 8 + }, + { + "name": "Kebbe", + "zone": "North-West", + "id": 9 + }, + { + "name": "Kware", + "zone": "North-West", + "id": 10 + }, + { + "name": "Rabah", + "zone": "North-West", + "id": 11 + }, + { + "name": "Sabon Birni", + "zone": "North-West", + "id": 12 + }, + { + "name": "Shagari", + "zone": "North-West", + "id": 13 + }, + { + "name": "Silame", + "zone": "North-West", + "id": 14 + }, + { + "name": "Sokoto North", + "zone": "North-West", + "id": 15 + }, + { + "name": "Sokoto South", + "zone": "North-West", + "id": 16 + }, + { + "name": "Tambuwal", + "zone": "North-West", + "id": 17 + }, + { + "name": "Tangaza", + "zone": "North-West", + "id": 18 + }, + { + "name": "Tureta", + "zone": "North-West", + "id": 19 + }, + { + "name": "Wamako", + "zone": "North-West", + "id": 20 + }, + { + "name": "Wurno", + "zone": "North-West", + "id": 21 + }, + { + "name": "Yabo", + "zone": "North-West", + "id": 22 + }, + { + "name": "Bali", + "zone": "Nort-East", + "id": 1 + }, + { + "name": "Donga", + "zone": "Nort-East", + "id": 2 + }, + { + "name": "Gashaka", + "zone": "Nort-East", + "id": 3 + }, + { + "name": "Gassol", + "zone": "Nort-East", + "id": 4 + }, + { + "name": "Ibi", + "zone": "Nort-East", + "id": 5 + }, + { + "name": "Jalingo", + "zone": "Nort-East", + "id": 6 + }, + { + "name": "Karim Lamido", + "zone": "Nort-East", + "id": 7 + }, + { + "name": "Kumi", + "zone": "Nort-East", + "id": 8 + }, + { + "name": "Lau", + "zone": "Nort-East", + "id": 9 + }, + { + "name": "Sardauna", + "zone": "Nort-East", + "id": 10 + }, + { + "name": "Takum", + "zone": "Nort-East", + "id": 11 + }, + { + "name": "Ussa", + "zone": "Nort-East", + "id": 12 + }, + { + "name": "Wukari", + "zone": "Nort-East", + "id": 13 + }, + { + "name": "Yorro", + "zone": "Nort-East", + "id": 14 + }, + { + "name": "Zing", + "zone": "Nort-East", + "id": 15 + }, + { + "name": "Bursari", + "zone": "Nort-East", + "id": 1 + }, + { + "name": "Damaturu", + "zone": "Nort-East", + "id": 2 + }, + { + "name": "Fika", + "zone": "Nort-East", + "id": 3 + }, + { + "name": "Fune", + "zone": "Nort-East", + "id": 4 + }, + { + "name": "Geidam", + "zone": "Nort-East", + "id": 5 + }, + { + "name": "Gujba", + "zone": "Nort-East", + "id": 6 + }, + { + "name": "Gulani", + "zone": "Nort-East", + "id": 7 + }, + { + "name": "Jakusko", + "zone": "Nort-East", + "id": 8 + }, + { + "name": "Karasuwa", + "zone": "Nort-East", + "id": 9 + }, + { + "name": "Machina", + "zone": "Nort-East", + "id": 10 + }, + { + "name": "Nangere", + "zone": "Nort-East", + "id": 11 + }, + { + "name": "Nguru", + "zone": "Nort-East", + "id": 12 + }, + { + "name": "Potiskum", + "zone": "Nort-East", + "id": 13 + }, + { + "name": "Tarmuwa", + "zone": "Nort-East", + "id": 14 + }, + { + "name": "Yunusari", + "zone": "Nort-East", + "id": 15 + }, + { + "name": "Yusufari", + "zone": "Nort-East", + "id": 16 + }, + { + "name": "Bakura", + "zone": "North-West", + "id": 1 + }, + { + "name": "Birnin Magaji/Kiyaw", + "zone": "North-West", + "id": 2 + }, + { + "name": "Bukkuyum", + "zone": "North-West", + "id": 3 + }, + { + "name": "Bungudu", + "zone": "North-West", + "id": 4 + }, + { + "name": "Gummi", + "zone": "North-West", + "id": 5 + }, + { + "name": "Gusau", + "zone": "North-West", + "id": 6 + }, + { + "name": "Kaura Namoda", + "zone": "North-West", + "id": 7 + }, + { + "name": "Maradun", + "zone": "North-West", + "id": 8 + }, + { + "name": "Maru", + "zone": "North-West", + "id": 9 + }, + { + "name": "Shinkafi", + "zone": "North-West", + "id": 10 + }, + { + "name": "Talata Mafara", + "zone": "North-West", + "id": 11 + }, + { + "name": "Chafe", + "zone": "North-West", + "id": 12 + }, + { + "name": "Zurmi", + "zone": "North-West", + "id": 13 + } + + + +] \ No newline at end of file diff --git a/src/usersapp/fixtures/ps.json b/src/usersapp/fixtures/ps.json new file mode 100644 index 0000000..e5637cf --- /dev/null +++ b/src/usersapp/fixtures/ps.json @@ -0,0 +1,589 @@ +[ + { + "model": "Zoitapp.policestation", + "pk": "1", + "fields":{ + "division": "Eziama Police Station Aba", + "address": "Aba North", + "phone": "07069441296", + "id": "1" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "2", + "fields":{ + "division": "Divisional Police Headquarters Ogborhill Aba", + "address": "Ogborhill", + "phone": "0706944129", + "id": "2" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "3", + "fields":{ + "division": "Uratta Police Station Aba", + "address": "Aba South", + "phone": "07069441296", + "id": "3" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "4", + "fields":{ + "division": "Bende Divisional Police Headquarters Bende", + "address": "Aba", + "phone": "08035415405", + "id": "4" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "5", + "fields":{ + "division": "Ozu Abam Police Station Arochukwu", + "address": "Arochukwu", + "phone": "08079210003", + "id": "5" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "6", + "fields":{ + "division": "Agboakoli Police Station Bende", + "address": "Bende", + "phone": "07069441296", + "id": "6" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "7", + "fields":{ + "division": "Amaeke Police Station Bende", + "address": "Amaeke", + "phone": "07069441296", + "id": "7" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "8", + "fields":{ + "division": "Itumbauzo Police Station Bende", + "address": "Bende", + "phone": "07069441296", + "id": "8" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "9", + "fields":{ + "division": "Police Station Ganye Division Adamawa", + "address": "Ganye", + "phone": "08089671313", + "id": "9" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "10", + "fields":{ + "division": "Gombi police station Adamawa", + "address": "Balda", + "phone": "08085208086", + "id": "10" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "11", + "fields":{ + "division": "Girei Police Station Adamawa", + "address": "Yola, Mubi Rd, Girei ", + "phone": "08089671313", + "id": "11" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "12", + "fields":{ + "division": "Gombi police station", + "address": "Balda", + "phone": "08089671313", + "id": "12" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "13", + "fields":{ + "division": "Adamawa State Police HQ", + "address": "1 Justice Buba Ardo Road, Jimeta", + "phone": "08089671313", + "id": "13" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "14", + "fields":{ + "division": "Area Command, Yola Division ", + "address": "Abuja Road, Wuro Hausa, Yola", + "phone": "08089671313", + "id": "14" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "15", + "fields":{ + "division": "Shagari Police Station", + "address": "Madumari, Yola", + "phone": "08089671313", + "id": "15" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "16", + "fields":{ + "division": "Mararaba Mubi Police Division", + "address": "Marraraba", + "phone": "08089671313", + "id": "16" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "17", + "fields":{ + "division": "A' Division Uyo", + "address": "A' Divisional command Barrack Road Uyo", + "phone": "07069441296", + "id": "17" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "18", + "fields":{ + "division": "Abak Police Division Uyo", + "address": "Abak Divisional Police headquarters", + "phone": "0706944129", + "id": "18" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "19", + "fields":{ + "division": "C Police Division Uyo", + "address": "C Divisional Command Ikot Akpan", + "phone": "07069441296", + "id": "19" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "20", + "fields":{ + "division": "Estern Obolo Police Station", + "address": "Eastern Obolo Divisional command", + "phone": "08035415405", + "id": "20" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "21", + "fields":{ + "division": "Eket Police Division", + "address": "Etim Ekpo Divisional Command", + "phone": "08079210003", + "id": "21" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "22", + "fields":{ + "division": "Ibeno Police Division", + "address": "Ibeno Divisional Command", + "phone": "07069441296", + "id": "22" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "23", + "fields":{ + "division": "Ika Police Division", + "address": "Ika Divisional Command", + "phone": "07069441296", + "id": "23" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "24", + "fields":{ + "division": "Oron Police Division", + "address": "Divisional Police Headquarters, Oron", + "phone": "07069441296", + "id": "24" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "25", + "fields":{ + "division": "Area Command Headquarters", + "address": "Abakaliki Rd, New Haven, Enugu", + "phone": "08037157768", + "id": "25" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "26", + "fields":{ + "division": "Igboeze Police Station", + "address": "Igbo-etiti ", + "phone": "08037157786", + "id": "26" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "27", + "fields":{ + "division": "Uwani Police Station", + "address": "46 Zik Ave, Uwani, Enugu", + "phone": "08037157786", + "id": "28" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "28", + "fields":{ + "division": "Railway Police Station", + "address": "Enugu North", + "phone": "08035415405", + "id": "28" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "29", + "fields":{ + "division": "Okpuje Police Station", + "address": "Nsukka", + "phone": "08079210003", + "id": "29" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "30", + "fields":{ + "division": "Ibagwa Aka Police Station", + "address": "Igbo-Eze-South", + "phone": "07069441296", + "id": "30" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "31", + "fields":{ + "division": "Igbo Eze North Police Station", + "address": "Amaeke", + "phone": "07069441296", + "id": "31" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "32", + "fields":{ + "division": "Awkunanaw Police Station", + "address": "Enugu South", + "phone": "07069441296", + "id": "32" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "33", + "fields":{ + "division": "Nigerian Police Force Headquarters", + "address": "Shehu Shagari Way, Force Head Quarters, Louise Edet House, Central ,Abuja", + "phone": "092340868", + "id": "33" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "34", + "fields":{ + "division": "Asokoro Division Police Station", + "address": "Kef/Nyanya Road, A.Y.A, Asokoro, Abuja", + "phone": "093148360", + "id": "34" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "35", + "fields":{ + "division": "Federal Secretariat Police Station", + "address": "Federal Secretariat Complex, Shehu Shagari Way, Central Business District, Abuja", + "phone": "095234252", + "id": "35" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "36", + "fields":{ + "division": "Gwagwalada Police Station", + "address": "Specialist Hospital Road, Gwagwalada, Abuja", + "phone": "098821296", + "id": "36" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "37", + "fields":{ + "division": "Maitama Police Station", + "address": "30,Nile Street,Off Alvan Ikoku Way, Maitama, Abuja.", + "phone": "094134683", + "id": "37" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "38", + "fields":{ + "division": "National Assembly Police Station", + "address": "National Assembly, Three Arms Zone Maitama,Abuja", + "phone": "092340241", + "id": "38" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "39", + "fields":{ + "division": "Federal Highway Patrol Office Abuja", + "address": "F.C.T", + "phone": "092349403", + "id": "39" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "40", + "fields":{ + "division": "Central Police Station", + "address": "Abuja Central", + "phone": "07069441296", + "id": "40" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "41", + "fields":{ + "division": "Kam Salem House Nigeria Police Hq Annex", + "address": "Obalende, Moloney St, Lagos", + "phone": "08033183477", + "id": "41" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "42", + "fields":{ + "division": "Ijora Badia Police Station Fadaini Street", + "address": "Fadaini Street Ijora, Apapa", + "phone": "08056250710", + "id": "42" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "43", + "fields":{ + "division": "Bode Thomas Police Station", + "address": "Bode Thomas St, Alaka, Lagosh", + "phone": "08033011052", + "id": "43" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "44", + "fields":{ + "division": "Alakara Police Station", + "address": "Agege Motor Rd, Idi Oro, Lagos", + "phone": "08033183477", + "id": "44" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "45", + "fields":{ + "division": "Ikotun Police Divisional Hq", + "address": "Ikotun – Idimu Rd, Ikotun, Lagos", + "phone": "08056250710", + "id": "45" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "46", + "fields":{ + "division": "Airport Police Command", + "address": "Alhaji Azeez St", + "phone": "08033183477", + "id": "46" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "47", + "fields":{ + "division": "Police Divisional Hq Victoria Island", + "address": "VI, Police Barracks, Bar–Beach, Ahmadu Bello Way, Lagos", + "phone": "08033183477", + "id": "47" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "48", + "fields":{ + "division": "Marina Leventis Police Station", + "address": "Marina, Lagos Island", + "phone": "08056250710", + "id": "48" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "49", + "fields":{ + "division": "Oginigba Police Station", + "address": "Adjacent glass industry, oginigba road Trans-Amadi, Port-Harcourt", + "phone": "08032003514", + "id": "49" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "50", + "fields":{ + "division": "Elekahia Police Station", + "address": "Elekahia Rd, Rumumasi, Port Harcourt", + "phone": "08028915460", + "id": "50" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "51", + "fields":{ + "division": "Old GRA Police Station", + "address": "Old GRA police divisional head quarters", + "phone": "08028915462", + "id": "51" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "52", + "fields":{ + "division": "GRA Police Station", + "address": "10 Sani Abacha Road, Rumueme, Port Harcourt", + "phone": "08032003514", + "id": "52" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "53", + "fields":{ + "division": "Elelewon Police Station", + "address": "54-56 Elelenwo Rd, Umurolu, Port Harcourt", + "phone": "08028915460", + "id": "53" + + } + }, + { + "model": "Zoitapp.policestation", + "pk": "54", + "fields":{ + "division": "The Nigeria Police Divisional Headquarters", + "address": "Ikwerre Road, Rumuepirikom, Port Harcourt, Rivers", + "phone": "08032003514", + "id": "54" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "55", + "fields":{ + "division": "Rumuomasi Police Post", + "address": "7A Arochukwu Street, Rumuomasi, Port Harcourt", + "phone": "08032003510", + "id": "55" + } + }, + { + "model": "Zoitapp.policestation", + "pk": "56", + "fields":{ + "division": "Oyibgo Police Station", + "address": "Police Station, Kings Ave, Oyigbo", + "phone": "08160723892", + "id": "56" + } + } +] diff --git a/src/usersapp/fixtures/state.json b/src/usersapp/fixtures/state.json new file mode 100644 index 0000000..8bb56bc --- /dev/null +++ b/src/usersapp/fixtures/state.json @@ -0,0 +1,372 @@ +[ + { + "model": "Zoitapp.state", + "pk": "1", + "fields": { + "name": "Abia State", + "capital": "Umuahia", + "zone": "South-East", + "id": 1 + } + }, + { + "model": "Zoitapp.state", + "pk": "2", + "fields": { + "name": "Adamawa State", + "capital": "Yola", + "zone": "North-East", + "id": 2 + } + }, + { + "model": "Zoitapp.state", + "pk": "3", + "fields": { + "name": "Akwa Ibom State", + "capital": "Uyo", + "zone": "South-South", + "id": 3 + } + }, + { + "model": "Zoitapp.state", + "pk": "4", + "fields": { + "name": "Anambra State", + "capital": "Awka", + "zone": "South-East", + "id": 4 + } + }, + { + "model": "Zoitapp.state", + "pk": "5", + "fields": { + "name": "Bauchi State", + "capital": "Bauchi", + "zone": "North-East", + "id": 5 + } + }, + { + "model": "Zoitapp.state", + "pk": "6", + "fields": { + "name": "Bayelsa State", + "capital": "Yenagoa", + "zone": "South-South", + "id": 6 + } + }, + { + "model": "Zoitapp.state", + "pk": "7", + "fields": { + "name": "Benue State", + "capital": "Makurdi", + "zone": "North-Central", + "id": 7 + } + }, + { + "model": "Zoitapp.state", + "pk": "8", + "fields": { + "name": "Borno State", + "capital": "Maiduguri", + "zone": "North-East", + "id": 8 + } + }, + { + "model": "Zoitapp.state", + "pk": "9", + "fields": { + "name": "Cross River State", + "capital": "Calabar", + "zone": "South-South", + "id": 9 + } + }, + { + "model": "Zoitapp.state", + "pk": "10", + "fields": { + "name": "Delta State", + "capital": "Asaba", + "zone": "South-South", + "id": 10 + } + }, + { + "model": "Zoitapp.state", + "pk": "11", + "fields": { + "name": "Ebonyi State", + "capital": "Abakaliki", + "zone": "South-East", + "id": 11 + } + }, + { + "model": "Zoitapp.state", + "pk": "12", + "fields": { + "name": "Edo State", + "capital": "Benin City", + "zone": "South-South", + "id": 12 + } + }, + { + "model": "Zoitapp.state", + "pk": "13", + "fields": { + "name": "Ekiti State", + "capital": "Ekiti", + "zone": "South-West", + "id": 13 + } + }, + { + "model": "Zoitapp.state", + "pk": "14", + "fields": { + "name": "Enugu State", + "capital": "Enugu", + "zone": "South-East", + "id": 14 + } + }, + { + "model": "Zoitapp.state", + "pk": "15", + "fields": { + "name": "Federal Capital Territory", + "capital": "Abuja", + "zone": "North-Central", + "id": 15 + } + }, + { + "model": "Zoitapp.state", + "pk": "16", + "fields": { + "name": "Gombe State", + "capital": "Gombe", + "zone": "North-East", + "id": 16 + } + }, + { + "model": "Zoitapp.state", + "pk": "17", + "fields": { + "name": "Imo State", + "capital": "Owerri", + "zone": "South-East", + "id": 17 + } + }, + { + "model": "Zoitapp.state", + "pk": "18", + "fields": { + "name": "Jigawa State", + "capital": "Dutse", + "zone": "North-East", + "id": 18 + } + }, + { + "model": "Zoitapp.state", + "pk": "19", + "fields": { + "name": "Kaduna State", + "capital": "Kaduna", + "zone": "North-West", + "id": 19 + } + }, + { + "model": "Zoitapp.state", + "pk": "20", + "fields": { + "name": "Kano State", + "capital": "Kano", + "zone": "North-West", + "id": 20 + } + }, + { + "model": "Zoitapp.state", + "pk": "21", + "fields": { + "name": "Katsina State", + "capital": "Katsina", + "zone": "North-West", + "id": 21 + } + }, + { + "model": "Zoitapp.state", + "pk": "22", + "fields": { + "name": "Kebbi State", + "capital": "Birin-Kebbi", + "zone": "North-West", + "id": 22 + } + }, + { + "model": "Zoitapp.state", + "pk": "23", + "fields": { + "name": "Kogi State", + "capital": "Lokoja", + "zone": "North-Central", + "id": 23 + } + }, + { + "model": "Zoitapp.state", + "pk": "24", + "fields": { + "name": "Kwara State", + "capital": "Ilorin", + "zone": "North-Central", + "id": 24 + } + }, + { + "model": "Zoitapp.state", + "pk": "25", + "fields": { + "name": "Lagos State", + "capital": "Ikeja", + "zone": "South-West", + "id": 25 + } + }, + { + "model": "Zoitapp.state", + "pk": "26", + "fields": { + "name": "Nasarawa State", + "capital": "Lafia", + "zone": "North-Central", + "id": 26 + } + }, + { + "model": "Zoitapp.state", + "pk": "27", + "fields": { + "name": "Niger State", + "capital": "Minna", + "zone": "North-Central", + "id": 27 + } + }, + { + "model": "Zoitapp.state", + "pk": "28", + "fields": { + "name": "Ogun State", + "capital": "Abeokuta", + "zone": "South-west", + "id": 28 + } + }, + { + "model": "Zoitapp.state", + "pk": "29", + "fields": { + "name": "Ondo State", + "capital": "Akure", + "zone": "South-West", + "id": 29 + } + }, + { + "model": "Zoitapp.state", + "pk": "30", + "fields": { + "name": "Osun State", + "capital": "Oshogbo", + "zone": "South-West", + "id": 30 + } + }, + { + "model": "Zoitapp.state", + "pk": "31", + "fields": { + "name": "Oyo State", + "capital": "Ibadan", + "zone": "South-West", + "id": 31 + } + }, + { + "model": "Zoitapp.state", + "pk": "32", + "fields": { + "name": "Plateau State", + "capital": "Jos", + "zone": "North-Central", + "id": 32 + } + }, + { + "model": "Zoitapp.state", + "pk": "33", + "fields": { + "name": "Rivers State", + "capital": "Port-Harcourt", + "zone": "South-South", + "id": 33 + } + }, + { + "model": "Zoitapp.state", + "pk": "34", + "fields": { + "name": "Sokoto State", + "capital": "Sokoto", + "zone": "North-West", + "id": 34 + } + }, + { + "model": "Zoitapp.state", + "pk": "35", + "fields": { + "name": "Taraba State", + "capital": "Jalingo", + "zone": "North-East", + "id": 35 + } + }, + { + "model": "Zoitapp.state", + "pk": "36", + "fields": { + "name": "Yobe State", + "capital": "Damaturu", + "zone": "North-East", + "id": 36 + } + }, + { + "model": "Zoitapp.state", + "pk": "37", + "fields": { + "name": "Zamfara State", + "capital": "Gusau", + "zone": "North-West", + "id": 37 + } + } +]