From 3ff3dbd2657a59e8359f21ea3240d289941c0387 Mon Sep 17 00:00:00 2001 From: Ali Karbassi Date: Mon, 26 Aug 2019 19:38:14 -0500 Subject: [PATCH 1/7] WIP --- coderdojochi/admin.py | 6 ++--- coderdojochi/factories.py | 2 +- .../migrations/0026_teacher_to_instructor.py | 19 +++++++++++++++ coderdojochi/models.py | 5 ++-- coderdojochi/static/css/cdc.css | 22 +++++++++--------- coderdojochi/templates/dashboard/admin.html | 4 +++- coderdojochi/templates/faqs.html | 2 +- coderdojochi/templates/session-detail.html | 14 +++++------ fixtures/04-coderdojochi-session.json | 12 +++++----- .../{teachers => instructors}/adam-lurie.jpg | Bin .../ali-karbassi.jpg | Bin .../brett-kellgren.jpg | Bin .../clayton-reynolds.jpg | Bin .../daniel-conrad.jpg | Bin .../{teachers => instructors}/david-kam.jpg | Bin .../matthew-felz.jpg | Bin .../templates/weallcode/get_involved.html | 4 ++-- weallcode/templates/weallcode/our_story.html | 10 ++++---- weallcode/templates/weallcode/team.html | 20 ++++++++-------- 19 files changed, 71 insertions(+), 49 deletions(-) create mode 100644 coderdojochi/migrations/0026_teacher_to_instructor.py rename weallcode/static/weallcode/images/team/{teachers => instructors}/adam-lurie.jpg (100%) rename weallcode/static/weallcode/images/team/{teachers => instructors}/ali-karbassi.jpg (100%) rename weallcode/static/weallcode/images/team/{teachers => instructors}/brett-kellgren.jpg (100%) rename weallcode/static/weallcode/images/team/{teachers => instructors}/clayton-reynolds.jpg (100%) rename weallcode/static/weallcode/images/team/{teachers => instructors}/daniel-conrad.jpg (100%) rename weallcode/static/weallcode/images/team/{teachers => instructors}/david-kam.jpg (100%) rename weallcode/static/weallcode/images/team/{teachers => instructors}/matthew-felz.jpg (100%) diff --git a/coderdojochi/admin.py b/coderdojochi/admin.py index c0b864c3..13213b8c 100644 --- a/coderdojochi/admin.py +++ b/coderdojochi/admin.py @@ -534,7 +534,7 @@ class SessionAdmin(ImportExportMixin, ImportExportActionModelAdmin): list_select_related = [ 'course', 'location', - 'teacher', + 'instructor', ] ordering = [ @@ -549,7 +549,7 @@ class SessionAdmin(ImportExportMixin, ImportExportActionModelAdmin): autocomplete_fields = [ 'course', 'location', - 'teacher', + 'instructor', ] search_fields = [ @@ -572,7 +572,7 @@ class SessionAdmin(ImportExportMixin, ImportExportActionModelAdmin): 'mentor_end_date', 'capacity', 'mentor_capacity', - 'teacher', + 'instructor', 'is_active', 'is_public', ), diff --git a/coderdojochi/factories.py b/coderdojochi/factories.py index 8c3267dc..f4b53c63 100644 --- a/coderdojochi/factories.py +++ b/coderdojochi/factories.py @@ -48,7 +48,7 @@ class SessionFactory(factory.DjangoModelFactory): mentor_start_date = datetime.now(utc) mentor_end_date = datetime.now(utc) password = '' - teacher = factory.SubFactory(MentorFactory) + instructor = factory.SubFactory(MentorFactory) class Meta: model = Session diff --git a/coderdojochi/migrations/0026_teacher_to_instructor.py b/coderdojochi/migrations/0026_teacher_to_instructor.py new file mode 100644 index 00000000..68307256 --- /dev/null +++ b/coderdojochi/migrations/0026_teacher_to_instructor.py @@ -0,0 +1,19 @@ +# Generated by Django 2.2.4 on 2019-08-22 23:48 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('coderdojochi', '0025_course_course_type'), + ] + + operations = [ + migrations.RenameField( + model_name='session', + old_name='teacher', + new_name='instructor', + ), + ] diff --git a/coderdojochi/models.py b/coderdojochi/models.py index cfb5dc76..773d8f84 100644 --- a/coderdojochi/models.py +++ b/coderdojochi/models.py @@ -479,10 +479,11 @@ class Session(models.Model): null=True, help_text="Basic HTML allowed" ) - teacher = models.ForeignKey( + instructor = models.ForeignKey( Mentor, - related_name="session_teacher", on_delete=models.CASCADE, + related_name="session_instructor", + limit_choices_to={''} ) waitlist_mentors = models.ManyToManyField( Mentor, diff --git a/coderdojochi/static/css/cdc.css b/coderdojochi/static/css/cdc.css index 8540b04e..8bdb7b5c 100644 --- a/coderdojochi/static/css/cdc.css +++ b/coderdojochi/static/css/cdc.css @@ -15,16 +15,16 @@ */ .container, .row, -.page-class-detail .teachers .teacher { +.page-class-detail .instructors .instructor { zoom: 1; } .container:before, .row:before, -.page-class-detail .teachers .teacher:before, +.page-class-detail .instructors .instructor:before, .container:after, .row:after, -.page-class-detail .teachers .teacher:after { +.page-class-detail .instructors .instructor:after { display: block; overflow: hidden; @@ -35,7 +35,7 @@ .container:after, .row:after, -.page-class-detail .teachers .teacher:after { +.page-class-detail .instructors .instructor:after { clear: both; } @@ -714,7 +714,7 @@ a.unstyled { } .row, -.page-class-detail .teachers .teacher { +.page-class-detail .instructors .instructor { margin: 10px 0; } @@ -1627,18 +1627,18 @@ a.icon-action:hover { background: #F8F8F8; } -.page-class-detail .teachers { +.page-class-detail .instructors { overflow: hidden; margin-bottom: 40px; } -.page-class-detail .teachers .teacher { +.page-class-detail .instructors .instructor { margin: 0 0 10px 0; } @media (min-width: 768px) { - .page-class-detail .teachers .teacher .image { + .page-class-detail .instructors .instructor .image { float: left; width: 49.15254%; @@ -1646,13 +1646,13 @@ a.icon-action:hover { } } -.page-class-detail .teachers .teacher .image img { +.page-class-detail .instructors .instructor .image img { width: 100%; height: auto; } @media (min-width: 768px) { - .page-class-detail .teachers .teacher .info { + .page-class-detail .instructors .instructor .info { float: right; width: 49.15254%; @@ -1660,7 +1660,7 @@ a.icon-action:hover { } } -.page-class-detail .teachers .teacher .info .subtitle { +.page-class-detail .instructors .instructor .info .subtitle { margin: 0 0 30px; } diff --git a/coderdojochi/templates/dashboard/admin.html b/coderdojochi/templates/dashboard/admin.html index b626a741..d6f68baf 100644 --- a/coderdojochi/templates/dashboard/admin.html +++ b/coderdojochi/templates/dashboard/admin.html @@ -154,7 +154,8 @@

Classes {{ sessions.count }}Date S. Time E. Time - Class Name + Course + Instructor Location Students @@ -191,6 +192,7 @@

Classes {{ sessions.count }}{{ session.start_date|time:"H:i" }} {{ session.end_date|time:"H:i" }} {{ session.course.title }} + {{ session.instructor }} {{ session.location.name }} {% if session.announced_date_guardians|yesno:'yes,no' == 'yes' %} diff --git a/coderdojochi/templates/faqs.html b/coderdojochi/templates/faqs.html index b7cc5af5..caecb4a3 100644 --- a/coderdojochi/templates/faqs.html +++ b/coderdojochi/templates/faqs.html @@ -26,7 +26,7 @@

What level of code you are offering at classes?

Our Dojo develops content to suit the students and mentors in attendance. We All Code recommends HTML as a good starting point to demonstrate to kids that they can actually create content. This will encourage progression into more complex programming with functions/loops/variables etc.

Who are the volunteers?

-

Volunteers include parents, teachers and programmers from the industry who are enthusiastic about helping kids to develop their coding skills.

+

Volunteers include parents, instructors, and programmers from the industry who are enthusiastic about helping kids to develop their coding skills.

Can I stay with my child during the class?

Yes! We highly encourage parents to stay with their children throughout the process. This allows everyone to learn something new and amazing!

diff --git a/coderdojochi/templates/session-detail.html b/coderdojochi/templates/session-detail.html index 8909f5b0..444c325c 100644 --- a/coderdojochi/templates/session-detail.html +++ b/coderdojochi/templates/session-detail.html @@ -138,16 +138,16 @@
- {% if session.teacher %} -

About the teacher

-
+ {% if session.instructor %} +

About the instructor

+
- Photo of session.teacher.user.first_name }} {{ session.teacher.last_name }} + Photo of session.instructor.user.first_name }} {{ session.instructor.last_name }}
-

{{ session.teacher.user.first_name }} {{ session.teacher.last_name }}

-

{{ session.teacher.bio|truncatechars:120 }}

-

Learn more about {{ session.teacher.user.first_name }}.

+

{{ session.instructor.user.first_name }} {{ session.instructor.last_name }}

+

{{ session.instructor.bio|truncatechars:120 }}

+

Learn more about {{ session.instructor.user.first_name }}.

{% endif %} diff --git a/fixtures/04-coderdojochi-session.json b/fixtures/04-coderdojochi-session.json index d25b53ce..b829e802 100644 --- a/fixtures/04-coderdojochi-session.json +++ b/fixtures/04-coderdojochi-session.json @@ -10,7 +10,7 @@ "mentor_end_date": "2020-01-01T14:00:00-06:00", "location": 1, "capacity": 20, - "teacher": 1, + "instructor": 1, "is_active": true, "is_public": true, "created_at": "2000-01-01T00:00:00-06:00", @@ -34,7 +34,7 @@ "mentor_end_date": "2020-02-02T14:00:00-06:00", "location": 1, "capacity": 20, - "teacher": 1, + "instructor": 1, "is_active": true, "is_public": true, "created_at": "2000-01-01T00:00:00-06:00", @@ -55,7 +55,7 @@ "mentor_end_date": "2020-03-03T14:00:00-06:00", "location": 2, "capacity": 20, - "teacher": 1, + "instructor": 1, "is_active": true, "is_public": true, "created_at": "2000-01-01T00:00:00-06:00", @@ -77,7 +77,7 @@ "mentor_end_date": "2020-04-04T14:00:00-06:00", "location": 1, "capacity": 20, - "teacher": 1, + "instructor": 1, "is_active": true, "is_public": true, "created_at": "2000-01-01T00:00:00-06:00", @@ -98,7 +98,7 @@ "mentor_end_date": "2020-05-05T14:00:00-06:00", "location": 1, "capacity": 20, - "teacher": 1, + "instructor": 1, "is_active": true, "is_public": true, "password": "password", @@ -122,7 +122,7 @@ "mentor_end_date": "2020-06-12T14:30:00-06:00", "location": 2, "capacity": 20, - "teacher": 1, + "instructor": 1, "is_active": true, "is_public": true, "created_at": "2000-01-01T00:00:00-06:00", diff --git a/weallcode/static/weallcode/images/team/teachers/adam-lurie.jpg b/weallcode/static/weallcode/images/team/instructors/adam-lurie.jpg similarity index 100% rename from weallcode/static/weallcode/images/team/teachers/adam-lurie.jpg rename to weallcode/static/weallcode/images/team/instructors/adam-lurie.jpg diff --git a/weallcode/static/weallcode/images/team/teachers/ali-karbassi.jpg b/weallcode/static/weallcode/images/team/instructors/ali-karbassi.jpg similarity index 100% rename from weallcode/static/weallcode/images/team/teachers/ali-karbassi.jpg rename to weallcode/static/weallcode/images/team/instructors/ali-karbassi.jpg diff --git a/weallcode/static/weallcode/images/team/teachers/brett-kellgren.jpg b/weallcode/static/weallcode/images/team/instructors/brett-kellgren.jpg similarity index 100% rename from weallcode/static/weallcode/images/team/teachers/brett-kellgren.jpg rename to weallcode/static/weallcode/images/team/instructors/brett-kellgren.jpg diff --git a/weallcode/static/weallcode/images/team/teachers/clayton-reynolds.jpg b/weallcode/static/weallcode/images/team/instructors/clayton-reynolds.jpg similarity index 100% rename from weallcode/static/weallcode/images/team/teachers/clayton-reynolds.jpg rename to weallcode/static/weallcode/images/team/instructors/clayton-reynolds.jpg diff --git a/weallcode/static/weallcode/images/team/teachers/daniel-conrad.jpg b/weallcode/static/weallcode/images/team/instructors/daniel-conrad.jpg similarity index 100% rename from weallcode/static/weallcode/images/team/teachers/daniel-conrad.jpg rename to weallcode/static/weallcode/images/team/instructors/daniel-conrad.jpg diff --git a/weallcode/static/weallcode/images/team/teachers/david-kam.jpg b/weallcode/static/weallcode/images/team/instructors/david-kam.jpg similarity index 100% rename from weallcode/static/weallcode/images/team/teachers/david-kam.jpg rename to weallcode/static/weallcode/images/team/instructors/david-kam.jpg diff --git a/weallcode/static/weallcode/images/team/teachers/matthew-felz.jpg b/weallcode/static/weallcode/images/team/instructors/matthew-felz.jpg similarity index 100% rename from weallcode/static/weallcode/images/team/teachers/matthew-felz.jpg rename to weallcode/static/weallcode/images/team/instructors/matthew-felz.jpg diff --git a/weallcode/templates/weallcode/get_involved.html b/weallcode/templates/weallcode/get_involved.html index 9e0f2cb3..383fc9de 100644 --- a/weallcode/templates/weallcode/get_involved.html +++ b/weallcode/templates/weallcode/get_involved.html @@ -33,7 +33,7 @@

Get involved

-

We All Code wouldn't exist without your support! Our teachers, volunteers, and sponsors make it possible for kids to explore their curiosity through coding.

+

We All Code wouldn't exist without your support! Our instructors, volunteers, and sponsors make it possible for kids to explore their curiosity through coding.

@@ -59,7 +59,7 @@

Make a difference

  • Free classes are open to kids across Chicago
  • -
  • Highly-trained teachers and mentors teach coding skills
  • +
  • Highly-trained instructors and mentors teach coding skills
  • Students are encouraged to show what they know with real working projects
  • Kids work collaboratively, respect their peers, and have fun
diff --git a/weallcode/templates/weallcode/our_story.html b/weallcode/templates/weallcode/our_story.html index b757a1c1..847e51a3 100644 --- a/weallcode/templates/weallcode/our_story.html +++ b/weallcode/templates/weallcode/our_story.html @@ -53,7 +53,7 @@

Benefits

  • Free classes are open to kids across Chicago
  • -
  • Highly-trained teachers and mentors teach coding skills
  • +
  • Highly-trained instructors and mentors teach coding skills
  • Students are encouraged to show what they know with real working projects
  • Kids work collaboratively, respect their peers, and have fun
@@ -126,7 +126,7 @@

Opportunity

What we offer

We All Code offers classes, courses, and camps at every level to help kids get excited about coding.

Our lessons are fast-paced, experiential, and build the confidence kids need to put their skills to use.

-

Students learn from highly-trained teachers and benefit from the support of volunteer mentors. Our 2 students to 1 mentor ratio means all kids get the attention they need to thrive.

+

Students learn from highly-trained instructors and benefit from the support of volunteer mentors. Our 2 students to 1 mentor ratio means all kids get the attention they need to thrive.

@@ -214,7 +214,7 @@

Our Approach

We All Code teaches real, solid coding skills as a basis for a future in STEM.

-

Highly-trained teachers guide our classes while mentors work closely with students.

+

Highly-trained instructors guide our classes while mentors work closely with students.

Kids get excited about coding when we make it relevant and encourage them to show what they know, solve problems, and explore possibilities.

@@ -227,7 +227,7 @@

Our Approach

I Do

-

Teacher demonstrates a skill to the students

+

Instructors demonstrates a skill to the students

@@ -238,7 +238,7 @@

I Do

We Do

-

Students and teachers practice the skill together

+

Students and instructors practice the skill together

diff --git a/weallcode/templates/weallcode/team.html b/weallcode/templates/weallcode/team.html index c16fd838..3d2a51a4 100644 --- a/weallcode/templates/weallcode/team.html +++ b/weallcode/templates/weallcode/team.html @@ -11,7 +11,7 @@
  • Leadership
  • Board
  • Associate Board
  • -
  • Head Teachers
  • +
  • Instructors
  • Mentors
  • Volunteers
  • @@ -27,7 +27,7 @@

    The Team

    -

    Our dedicated team works hard to keep We All Code classes safe, supportive, and largely free. Our leaders, teachers, mentors, and volunteers work to help every child explore their kid creativity through coding.

    +

    Our dedicated team works hard to keep We All Code classes safe, supportive, and largely free. Our leaders, instructors, mentors, and volunteers work to help every child explore their kid creativity through coding.

    @@ -145,29 +145,29 @@

    Associate Board

    - -
    + +
    -

    Head Teachers

    +

    Instructors

    These highly-trained volunteers come from tech backgrounds and are skilled in creating a supportive, experiential learning environment to help every kid code.

    - {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Ali Karbassi" static_image="weallcode/images/team/teachers/ali-karbassi.jpg" %} + {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Ali Karbassi" static_image="weallcode/images/team/instuctors/ali-karbassi.jpg" %}
    - {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="David Kam" static_image="weallcode/images/team/teachers/david-kam.jpg" %} + {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="David Kam" static_image="weallcode/images/team/instuctors/david-kam.jpg" %}
    - {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Daniel Conrad" static_image="weallcode/images/team/teachers/daniel-conrad.jpg" %} + {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Daniel Conrad" static_image="weallcode/images/team/instuctors/daniel-conrad.jpg" %}
    - {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Matthew Felz" static_image="weallcode/images/team/teachers/matthew-felz.jpg" %} + {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Matthew Felz" static_image="weallcode/images/team/instuctors/matthew-felz.jpg" %}
    - {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Clayton Reynolds" static_image="weallcode/images/team/teachers/clayton-reynolds.jpg" %} + {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Clayton Reynolds" static_image="weallcode/images/team/instuctors/clayton-reynolds.jpg" %}
    From fd0ac84a9246a1e2e9316116aaea06c55d4e6755 Mon Sep 17 00:00:00 2001 From: Ali Karbassi Date: Mon, 21 Oct 2019 15:58:11 -0500 Subject: [PATCH 2/7] Typo. instuctors to instructors. --- weallcode/templates/weallcode/team.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/weallcode/templates/weallcode/team.html b/weallcode/templates/weallcode/team.html index 1b3f6e3f..27faf303 100644 --- a/weallcode/templates/weallcode/team.html +++ b/weallcode/templates/weallcode/team.html @@ -155,22 +155,22 @@

    Instructors

    - {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Ali Karbassi" static_image="weallcode/images/team/instuctors/ali-karbassi.jpg" %} + {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Ali Karbassi" static_image="weallcode/images/team/instructors/ali-karbassi.jpg" %}
    - {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="David Kam" static_image="weallcode/images/team/instuctors/david-kam.jpg" %} + {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="David Kam" static_image="weallcode/images/team/instructors/david-kam.jpg" %}
    - {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Daniel Conrad" static_image="weallcode/images/team/instuctors/daniel-conrad.jpg" %} + {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Daniel Conrad" static_image="weallcode/images/team/instructors/daniel-conrad.jpg" %}
    - {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Matthew Felz" static_image="weallcode/images/team/instuctors/matthew-felz.jpg" %} + {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Matthew Felz" static_image="weallcode/images/team/instructors/matthew-felz.jpg" %}
    - {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Keanan Koppenhaver" static_image="weallcode/images/team/instuctors/keanan-koppenhaver.jpg" %} + {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Keanan Koppenhaver" static_image="weallcode/images/team/instructors/keanan-koppenhaver.jpg" %}
    - {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Saba Jamalian" static_image="weallcode/images/team/instuctors/saba-jamalian.jpg" %} + {% include "weallcode/snippets/team_member.html" with is_on_dark=True name="Saba Jamalian" static_image="weallcode/images/team/instructors/saba-jamalian.jpg" %}
    From 620f5efa745ff5f39689b1faaeb027d2434d3f20 Mon Sep 17 00:00:00 2001 From: Ali Karbassi Date: Tue, 22 Oct 2019 17:09:13 -0500 Subject: [PATCH 3/7] Renamed fixture files. --- fixtures/{01-site-site.json => 00-sites.site.json} | 0 ...cialaccount-socialapp.json => 02-socialaccount.socialapp.json} | 0 ...{01-coderdojochi-cdcuser.json => 03-coderdojochi.cdcuser.json} | 0 .../{01-coderdojochi-courses.json => 04-coderdojochi.course.json} | 0 ...ochi-equipmenttype.json => 05-coderdojochi.equipmenttype.json} | 0 ...1-coderdojochi-location.json => 06-coderdojochi.location.json} | 0 ...rdojochi-meetingtype.json => 07-coderdojochi.meetingtype.json} | 0 ...ochi-raceethnicity.json => 08-coderdojochi.raceethnicity.json} | 0 ...2-coderdojochi-guardian.json => 09-coderdojochi.guardian.json} | 0 ...{02-coderdojochi-meeting.json => 10-coderdojochi.meeting.json} | 0 .../{02-coderdojochi-mentor.json => 11-coderdojochi.mentor.json} | 0 ...{03-coderdojochi-student.json => 12-coderdojochi.student.json} | 0 ...{04-coderdojochi-session.json => 13-coderdojochi.session.json} | 0 ...rdojochi-mentororder.json => 14-coderdojochi.mentororder.json} | 0 .../{05-coderdojochi-order.json => 15-coderdojochi.order.json} | 0 15 files changed, 0 insertions(+), 0 deletions(-) rename fixtures/{01-site-site.json => 00-sites.site.json} (100%) rename fixtures/{02-socialaccount-socialapp.json => 02-socialaccount.socialapp.json} (100%) rename fixtures/{01-coderdojochi-cdcuser.json => 03-coderdojochi.cdcuser.json} (100%) rename fixtures/{01-coderdojochi-courses.json => 04-coderdojochi.course.json} (100%) rename fixtures/{01-coderdojochi-equipmenttype.json => 05-coderdojochi.equipmenttype.json} (100%) rename fixtures/{01-coderdojochi-location.json => 06-coderdojochi.location.json} (100%) rename fixtures/{01-coderdojochi-meetingtype.json => 07-coderdojochi.meetingtype.json} (100%) rename fixtures/{01-coderdojochi-raceethnicity.json => 08-coderdojochi.raceethnicity.json} (100%) rename fixtures/{02-coderdojochi-guardian.json => 09-coderdojochi.guardian.json} (100%) rename fixtures/{02-coderdojochi-meeting.json => 10-coderdojochi.meeting.json} (100%) rename fixtures/{02-coderdojochi-mentor.json => 11-coderdojochi.mentor.json} (100%) rename fixtures/{03-coderdojochi-student.json => 12-coderdojochi.student.json} (100%) rename fixtures/{04-coderdojochi-session.json => 13-coderdojochi.session.json} (100%) rename fixtures/{05-coderdojochi-mentororder.json => 14-coderdojochi.mentororder.json} (100%) rename fixtures/{05-coderdojochi-order.json => 15-coderdojochi.order.json} (100%) diff --git a/fixtures/01-site-site.json b/fixtures/00-sites.site.json similarity index 100% rename from fixtures/01-site-site.json rename to fixtures/00-sites.site.json diff --git a/fixtures/02-socialaccount-socialapp.json b/fixtures/02-socialaccount.socialapp.json similarity index 100% rename from fixtures/02-socialaccount-socialapp.json rename to fixtures/02-socialaccount.socialapp.json diff --git a/fixtures/01-coderdojochi-cdcuser.json b/fixtures/03-coderdojochi.cdcuser.json similarity index 100% rename from fixtures/01-coderdojochi-cdcuser.json rename to fixtures/03-coderdojochi.cdcuser.json diff --git a/fixtures/01-coderdojochi-courses.json b/fixtures/04-coderdojochi.course.json similarity index 100% rename from fixtures/01-coderdojochi-courses.json rename to fixtures/04-coderdojochi.course.json diff --git a/fixtures/01-coderdojochi-equipmenttype.json b/fixtures/05-coderdojochi.equipmenttype.json similarity index 100% rename from fixtures/01-coderdojochi-equipmenttype.json rename to fixtures/05-coderdojochi.equipmenttype.json diff --git a/fixtures/01-coderdojochi-location.json b/fixtures/06-coderdojochi.location.json similarity index 100% rename from fixtures/01-coderdojochi-location.json rename to fixtures/06-coderdojochi.location.json diff --git a/fixtures/01-coderdojochi-meetingtype.json b/fixtures/07-coderdojochi.meetingtype.json similarity index 100% rename from fixtures/01-coderdojochi-meetingtype.json rename to fixtures/07-coderdojochi.meetingtype.json diff --git a/fixtures/01-coderdojochi-raceethnicity.json b/fixtures/08-coderdojochi.raceethnicity.json similarity index 100% rename from fixtures/01-coderdojochi-raceethnicity.json rename to fixtures/08-coderdojochi.raceethnicity.json diff --git a/fixtures/02-coderdojochi-guardian.json b/fixtures/09-coderdojochi.guardian.json similarity index 100% rename from fixtures/02-coderdojochi-guardian.json rename to fixtures/09-coderdojochi.guardian.json diff --git a/fixtures/02-coderdojochi-meeting.json b/fixtures/10-coderdojochi.meeting.json similarity index 100% rename from fixtures/02-coderdojochi-meeting.json rename to fixtures/10-coderdojochi.meeting.json diff --git a/fixtures/02-coderdojochi-mentor.json b/fixtures/11-coderdojochi.mentor.json similarity index 100% rename from fixtures/02-coderdojochi-mentor.json rename to fixtures/11-coderdojochi.mentor.json diff --git a/fixtures/03-coderdojochi-student.json b/fixtures/12-coderdojochi.student.json similarity index 100% rename from fixtures/03-coderdojochi-student.json rename to fixtures/12-coderdojochi.student.json diff --git a/fixtures/04-coderdojochi-session.json b/fixtures/13-coderdojochi.session.json similarity index 100% rename from fixtures/04-coderdojochi-session.json rename to fixtures/13-coderdojochi.session.json diff --git a/fixtures/05-coderdojochi-mentororder.json b/fixtures/14-coderdojochi.mentororder.json similarity index 100% rename from fixtures/05-coderdojochi-mentororder.json rename to fixtures/14-coderdojochi.mentororder.json diff --git a/fixtures/05-coderdojochi-order.json b/fixtures/15-coderdojochi.order.json similarity index 100% rename from fixtures/05-coderdojochi-order.json rename to fixtures/15-coderdojochi.order.json From 61f222f5c18ada48cf8b16a9ea08c1a86289cfb8 Mon Sep 17 00:00:00 2001 From: Ali Karbassi Date: Thu, 24 Oct 2019 16:48:48 -0500 Subject: [PATCH 4/7] Adding new fixtures. --- fixtures-prod/get.sh | 2 +- fixtures/01-auth.group.json | 84 + fixtures/03-coderdojochi.cdcuser.json | 2165 +++++++++++++++++++- fixtures/04-coderdojochi.course.json | 12 +- fixtures/07-coderdojochi.meetingtype.json | 4 +- fixtures/09-coderdojochi.guardian.json | 7 +- fixtures/10-coderdojochi.meeting.json | 10 +- fixtures/11-coderdojochi.mentor.json | 2200 ++++++++++++++++++++- fixtures/12-coderdojochi.student.json | 24 +- fixtures/13-coderdojochi.session.json | 352 ++-- fixtures/14-coderdojochi.mentororder.json | 12 +- fixtures/15-coderdojochi.order.json | 17 +- fixtures/get.sh | 29 + 13 files changed, 4542 insertions(+), 376 deletions(-) create mode 100644 fixtures/01-auth.group.json create mode 100755 fixtures/get.sh diff --git a/fixtures-prod/get.sh b/fixtures-prod/get.sh index df1415e7..2e2becdb 100644 --- a/fixtures-prod/get.sh +++ b/fixtures-prod/get.sh @@ -25,5 +25,5 @@ models=( for i in "${!models[@]}" do - heroku run --app production-wac python -W ignore manage.py dumpdata "${models[$i]}" --indent 2 -- > "$i-${models[$i]}.json" + heroku run --app production-wac python -W ignore manage.py dumpdata "${models[$i]}" --indent 2 -- > "`printf %02d $i`-${models[$i]}.json" done diff --git a/fixtures/01-auth.group.json b/fixtures/01-auth.group.json new file mode 100644 index 00000000..20c1d15b --- /dev/null +++ b/fixtures/01-auth.group.json @@ -0,0 +1,84 @@ +[ +{ + "model": "auth.group", + "pk": 1, + "fields": { + "name": "Committee Head", + "permissions": [ + 35, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 64, + 65, + 66, + 67, + 68, + 69, + 49, + 50, + 51, + 52, + 38, + 41, + 44, + 46, + 47, + 48 + ] + } +}, +{ + "model": "auth.group", + "pk": 3, + "fields": { + "name": "Management", + "permissions": [ + 29, + 30, + 53, + 54, + 58, + 59, + 61, + 62, + 64, + 65, + 66, + 67, + 68, + 69, + 100, + 101, + 49, + 50, + 52, + 28, + 37, + 38, + 40, + 41, + 43, + 44, + 46, + 47, + 48 + ] + } +}, +{ + "model": "auth.group", + "pk": 4, + "fields": { + "name": "Instructor", + "permissions": [] + } +} +] diff --git a/fixtures/03-coderdojochi.cdcuser.json b/fixtures/03-coderdojochi.cdcuser.json index 3e27c0ff..3c84f92c 100644 --- a/fixtures/03-coderdojochi.cdcuser.json +++ b/fixtures/03-coderdojochi.cdcuser.json @@ -1,105 +1,2064 @@ [ - { "model": "coderdojochi.cdcuser", "pk": 1, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": true, "username": "test_admin", "first_name": "Ali", "last_name": "Karbassi", "email": "admin@sink.sendgrid.net", "is_staff": true, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": null, "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 2, "fields": { "password": "pbkdf2_sha256$24000$zLpXwy8Z8pvn$JZW267fmmrqJqNnoLMocbGkeRDtq4FlJjFyMnj3op3U=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "test_guardian", "first_name": "John", "last_name": "Doe", "email": "guardian@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "guardian", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 3, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "test_mentor", "first_name": "Daniel", "last_name": "Conrad", "email": "mentor@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 4, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "levifowler", "first_name": "Levi", "last_name": "Fowler", "email": "levi.fowler@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 5, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "maureenbradley", "first_name": "Maureen", "last_name": "Bradley", "email": "maureen.bradley@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 6, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "kellythompson", "first_name": "Kelly", "last_name": "Thompson", "email": "kelly.thompson@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 7, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "violetlawson", "first_name": "Violet", "last_name": "Lawson", "email": "violet.lawson@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 8, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "mitchellsims", "first_name": "Mitchell", "last_name": "Sims", "email": "mitchell.sims@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 9, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "tammysmith", "first_name": "Tammy", "last_name": "Smith", "email": "tammy.smith@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 10, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "philipalvarez", "first_name": "Philip", "last_name": "Alvarez", "email": "philip.alvarez@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 11, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "derekwallace", "first_name": "Derek", "last_name": "Wallace", "email": "derek.wallace@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 12, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "arnoldrichards", "first_name": "Arnold", "last_name": "Richards", "email": "arnold.richards@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 13, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "evankennedy", "first_name": "Evan", "last_name": "Kennedy", "email": "evan.kennedy@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 14, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "sallymitchell", "first_name": "Sally", "last_name": "Mitchell", "email": "sally.mitchell@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 15, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "gilbertferguson", "first_name": "Gilbert", "last_name": "Ferguson", "email": "gilbert.ferguson@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 16, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "virgillawson", "first_name": "Virgil", "last_name": "Lawson", "email": "virgil.lawson@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 17, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "annettemarshall", "first_name": "Annette", "last_name": "Marshall", "email": "annette.marshall@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 18, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "jeansanders", "first_name": "Jean", "last_name": "Sanders", "email": "jean.sanders@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 19, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "isaacgordon", "first_name": "Isaac", "last_name": "Gordon", "email": "isaac.gordon@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 20, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "edithsimpson", "first_name": "Edith", "last_name": "Simpson", "email": "edith.simpson@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 21, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "robertaburke", "first_name": "Roberta", "last_name": "Burke", "email": "roberta.burke@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 22, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "mariotorres", "first_name": "Mario", "last_name": "Torres", "email": "mario.torres@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 23, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "brandiehansen", "first_name": "Brandie", "last_name": "Hansen", "email": "brandie.hansen@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 24, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "mikemitchelle", "first_name": "Mike", "last_name": "Mitchelle", "email": "mike.mitchelle@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 25, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "suecrawford", "first_name": "Sue", "last_name": "Crawford", "email": "sue.crawford@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 26, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "mabelpatterson", "first_name": "Mabel", "last_name": "Patterson", "email": "mabel.patterson@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 27, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "melvinhill", "first_name": "Melvin", "last_name": "Hill", "email": "melvin.hill@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 28, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "andreajennings", "first_name": "Andrea", "last_name": "Jennings", "email": "andrea.jennings@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 29, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "byrongomez", "first_name": "Byron", "last_name": "Gomez", "email": "byron.gomez@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 30, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "flenncurtis", "first_name": "Flenn", "last_name": "Curtis", "email": "flenn.curtis@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 31, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "landonherrera", "first_name": "Landon", "last_name": "Herrera", "email": "landon.herrera@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 32, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "brettprice", "first_name": "Brett", "last_name": "Price", "email": "brett.price@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 33, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "morriscole", "first_name": "Morris", "last_name": "Cole", "email": "morris.cole@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 34, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "candicewarren", "first_name": "Candice", "last_name": "Warren", "email": "candice.warren@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 35, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "jenniferortiz", "first_name": "Jennifer", "last_name": "Ortiz", "email": "jennifer.ortiz@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 36, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "carlaellis", "first_name": "Carla", "last_name": "Ellis", "email": "carla.ellis@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 37, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "brianross", "first_name": "Brian", "last_name": "Ross", "email": "brian.ross@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 38, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "amandabyrd", "first_name": "Amanda", "last_name": "Byrd", "email": "amanda.byrd@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 39, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "sergiohorton", "first_name": "Sergio", "last_name": "Horton", "email": "sergio.horton@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 40, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "oscarhowell", "first_name": "Oscar", "last_name": "Howell", "email": "oscar.howell@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 41, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "savannahrobinson", "first_name": "Savannah", "last_name": "Robinson", "email": "savannah.robinson@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 42, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "mistyvargas", "first_name": "Misty", "last_name": "Vargas", "email": "misty.vargas@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 43, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "kristinacook", "first_name": "Kristina", "last_name": "Cook", "email": "kristina.cook@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 44, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "doloresbrewer", "first_name": "Dolores", "last_name": "Brewer", "email": "dolores.brewer@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 45, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "andymills", "first_name": "Andy", "last_name": "Mills", "email": "andy.mills@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 46, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "kristinashaw", "first_name": "Kristina", "last_name": "Shaw", "email": "kristina.shaw@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 47, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "jeanbutler", "first_name": "Jean", "last_name": "Butler", "email": "jean.butler@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 48, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "paulbishop", "first_name": "Paul", "last_name": "Bishop", "email": "paul.bishop@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 49, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "avanguyen", "first_name": "Ava", "last_name": "Nguyen", "email": "ava.nguyen@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 50, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "freddiewilliamson", "first_name": "Freddie", "last_name": "Williamson", "email": "freddie.williamson@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 51, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "roberthayes", "first_name": "Robert", "last_name": "Hayes", "email": "robert.hayes@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 52, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "marleneknight", "first_name": "Marlene", "last_name": "Knight", "email": "marlene.knight@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 53, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "johnnijennings", "first_name": "Johnni", "last_name": "Jennings", "email": "johnni.jennings@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 54, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "vincentjensen", "first_name": "Vincent", "last_name": "Jensen", "email": "vincent.jensen@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 55, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "dennismatthews", "first_name": "Dennis", "last_name": "Matthews", "email": "dennis.matthews@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 56, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "cecilwade", "first_name": "Cecil", "last_name": "Wade", "email": "cecil.wade@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 57, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "gregorysutton", "first_name": "Gregory", "last_name": "Sutton", "email": "gregory.sutton@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 58, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "amberreid", "first_name": "Amber", "last_name": "Reid", "email": "amber.reid@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 59, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "nataliewallace", "first_name": "Natalie", "last_name": "Wallace", "email": "natalie.wallace@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 60, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "theodorecollins", "first_name": "Theodore", "last_name": "Collins", "email": "theodore.collins@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 61, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "fernandohanson", "first_name": "Fernando", "last_name": "Hanson", "email": "fernando.hanson@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 62, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "eileenellis", "first_name": "Eileen", "last_name": "Ellis", "email": "eileen.ellis@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 63, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "braydenpatterson", "first_name": "Brayden", "last_name": "Patterson", "email": "brayden.patterson@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 64, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "ronnielucas", "first_name": "Ronnie", "last_name": "Lucas", "email": "ronnie.lucas@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 65, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "norahowell", "first_name": "Nora", "last_name": "Howell", "email": "nora.howell@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 66, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "aaronjames", "first_name": "Aaron", "last_name": "James", "email": "aaron.james@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 67, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "gabenguyen", "first_name": "Gabe", "last_name": "Nguyen", "email": "gabe.nguyen@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 68, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "braydenprescott", "first_name": "Brayden", "last_name": "Prescott", "email": "brayden.prescott@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 69, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "brettmckinney", "first_name": "Brett", "last_name": "Mckinney", "email": "brett.mckinney@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 70, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "hildasanchez", "first_name": "Hilda", "last_name": "Sanchez", "email": "hilda.sanchez@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 71, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "jessiedouglas", "first_name": "Jessie", "last_name": "Douglas", "email": "jessie.douglas@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 72, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "dannygardner", "first_name": "Danny", "last_name": "Gardner", "email": "danny.gardner@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 73, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "annegutierrez", "first_name": "Anne", "last_name": "Gutierrez", "email": "anne.gutierrez@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 74, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "carlaarmstrong", "first_name": "Carla", "last_name": "Armstrong", "email": "carla.armstrong@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 75, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "lucasbradley", "first_name": "Lucas", "last_name": "Bradley", "email": "lucas.bradley@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 76, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "beverlyharris", "first_name": "Beverly", "last_name": "Harris", "email": "beverly.harris@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 77, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "norarice", "first_name": "Nora", "last_name": "Rice", "email": "nora.rice@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 78, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "tarahenry", "first_name": "Tara", "last_name": "Henry", "email": "tara.henry@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 79, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "marthamason", "first_name": "Martha", "last_name": "Mason", "email": "martha.mason@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 80, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "perrywagner", "first_name": "Perry", "last_name": "Wagner", "email": "perry.wagner@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 81, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "jamesbennett", "first_name": "James", "last_name": "Bennett", "email": "james.bennett@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 82, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "vivanhamilton", "first_name": "Vivan", "last_name": "Hamilton", "email": "vivan.hamilton@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 83, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "arleneoliver", "first_name": "Arlene", "last_name": "Oliver", "email": "arlene.oliver@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 84, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "shawngarcia", "first_name": "Shawn", "last_name": "Garcia", "email": "shawn.garcia@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 85, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "stephenfleming", "first_name": "Stephen", "last_name": "Fleming", "email": "stephen.fleming@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 86, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "ethelellis", "first_name": "Ethel", "last_name": "Ellis", "email": "ethel.ellis@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 87, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "marionnelson", "first_name": "Marion", "last_name": "Nelson", "email": "marion.nelson@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 88, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "theresasimmons", "first_name": "Theresa", "last_name": "Simmons", "email": "theresa.simmons@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 89, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "teresadavis", "first_name": "Teresa", "last_name": "Davis", "email": "teresa.davis@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 90, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "danajones", "first_name": "Dana", "last_name": "Jones", "email": "dana.jones@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 91, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "haroldmontgomery", "first_name": "Harold", "last_name": "Montgomery", "email": "harold.montgomery@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 92, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "edwardburns", "first_name": "Edward", "last_name": "Burns", "email": "edward.burns@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 93, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "lonniemurray", "first_name": "Lonnie", "last_name": "Murray", "email": "lonnie.murray@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 94, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "lisaanderson", "first_name": "Lisa", "last_name": "Anderson", "email": "lisa.anderson@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 95, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "gregmurphy", "first_name": "Greg", "last_name": "Murphy", "email": "greg.murphy@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 96, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "christinebradley", "first_name": "Christine", "last_name": "Bradley", "email": "christine.bradley@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 97, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "ameliaburns", "first_name": "Amelia", "last_name": "Burns", "email": "amelia.burns@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 98, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "joreid", "first_name": "Jo", "last_name": "Reid", "email": "jo.reid@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 99, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "saragardner", "first_name": "Sara", "last_name": "Gardner", "email": "sara.gardner@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 100, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "charlesbrown", "first_name": "Charles", "last_name": "Brown", "email": "spam@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 101, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "lynnlittle", "first_name": "Lynn", "last_name": "Little", "email": "soft_bounce@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 102, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "rebeccaday", "first_name": "Rebecca", "last_name": "Day", "email": "hard_bounce@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } }, - { "model": "coderdojochi.cdcuser", "pk": 103, "fields": { "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", "last_login": "2013-01-01T06:00:00Z", "is_superuser": false, "username": "benjaminlee", "first_name": "Benjamin", "last_name": "Lee", "email": "reject@sink.sendgrid.net", "is_staff": false, "is_active": true, "date_joined": "2013-01-01T06:00:00Z", "role": "mentor", "admin_notes": "", "groups": [], "user_permissions": [] } } +{ + "model": "coderdojochi.cdcuser", + "pk": 1, + "fields": { + "password": "pbkdf2_sha256$150000$DK1OCnEJ5TSo$nstx4xX9583QaRr7OG6E2ITH44VLq3ioYgQKX57QPBk=", + "last_login": "2019-10-23T19:45:43.166Z", + "is_superuser": true, + "username": "test_admin", + "first_name": "Ali", + "last_name": "Karbassi", + "email": "admin@sink.sendgrid.net", + "is_staff": true, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [ + 4 + ], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 2, + "fields": { + "password": "pbkdf2_sha256$24000$zLpXwy8Z8pvn$JZW267fmmrqJqNnoLMocbGkeRDtq4FlJjFyMnj3op3U=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "test_guardian", + "first_name": "John", + "last_name": "Doe", + "email": "guardian@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "guardian", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 3, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "test_mentor", + "first_name": "Daniel", + "last_name": "Conrad", + "email": "mentor@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 4, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "levifowler", + "first_name": "Levi", + "last_name": "Fowler", + "email": "levi.fowler@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 5, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "maureenbradley", + "first_name": "Maureen", + "last_name": "Bradley", + "email": "maureen.bradley@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 6, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "kellythompson", + "first_name": "Kelly", + "last_name": "Thompson", + "email": "kelly.thompson@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 7, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "violetlawson", + "first_name": "Violet", + "last_name": "Lawson", + "email": "violet.lawson@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 8, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "mitchellsims", + "first_name": "Mitchell", + "last_name": "Sims", + "email": "mitchell.sims@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 9, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "tammysmith", + "first_name": "Tammy", + "last_name": "Smith", + "email": "tammy.smith@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 10, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "philipalvarez", + "first_name": "Philip", + "last_name": "Alvarez", + "email": "philip.alvarez@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 11, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "derekwallace", + "first_name": "Derek", + "last_name": "Wallace", + "email": "derek.wallace@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 12, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "arnoldrichards", + "first_name": "Arnold", + "last_name": "Richards", + "email": "arnold.richards@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 13, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "evankennedy", + "first_name": "Evan", + "last_name": "Kennedy", + "email": "evan.kennedy@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 14, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "sallymitchell", + "first_name": "Sally", + "last_name": "Mitchell", + "email": "sally.mitchell@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 15, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "gilbertferguson", + "first_name": "Gilbert", + "last_name": "Ferguson", + "email": "gilbert.ferguson@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 16, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "virgillawson", + "first_name": "Virgil", + "last_name": "Lawson", + "email": "virgil.lawson@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 17, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "annettemarshall", + "first_name": "Annette", + "last_name": "Marshall", + "email": "annette.marshall@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 18, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "jeansanders", + "first_name": "Jean", + "last_name": "Sanders", + "email": "jean.sanders@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 19, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "isaacgordon", + "first_name": "Isaac", + "last_name": "Gordon", + "email": "isaac.gordon@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 20, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "edithsimpson", + "first_name": "Edith", + "last_name": "Simpson", + "email": "edith.simpson@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 21, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "robertaburke", + "first_name": "Roberta", + "last_name": "Burke", + "email": "roberta.burke@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 22, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "mariotorres", + "first_name": "Mario", + "last_name": "Torres", + "email": "mario.torres@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 23, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "brandiehansen", + "first_name": "Brandie", + "last_name": "Hansen", + "email": "brandie.hansen@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 24, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "mikemitchelle", + "first_name": "Mike", + "last_name": "Mitchelle", + "email": "mike.mitchelle@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 25, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "suecrawford", + "first_name": "Sue", + "last_name": "Crawford", + "email": "sue.crawford@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 26, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "mabelpatterson", + "first_name": "Mabel", + "last_name": "Patterson", + "email": "mabel.patterson@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 27, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "melvinhill", + "first_name": "Melvin", + "last_name": "Hill", + "email": "melvin.hill@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 28, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "andreajennings", + "first_name": "Andrea", + "last_name": "Jennings", + "email": "andrea.jennings@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 29, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "byrongomez", + "first_name": "Byron", + "last_name": "Gomez", + "email": "byron.gomez@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 30, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "flenncurtis", + "first_name": "Flenn", + "last_name": "Curtis", + "email": "flenn.curtis@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 31, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "landonherrera", + "first_name": "Landon", + "last_name": "Herrera", + "email": "landon.herrera@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 32, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "brettprice", + "first_name": "Brett", + "last_name": "Price", + "email": "brett.price@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 33, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "morriscole", + "first_name": "Morris", + "last_name": "Cole", + "email": "morris.cole@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 34, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "candicewarren", + "first_name": "Candice", + "last_name": "Warren", + "email": "candice.warren@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 35, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "jenniferortiz", + "first_name": "Jennifer", + "last_name": "Ortiz", + "email": "jennifer.ortiz@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 36, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "carlaellis", + "first_name": "Carla", + "last_name": "Ellis", + "email": "carla.ellis@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 37, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "brianross", + "first_name": "Brian", + "last_name": "Ross", + "email": "brian.ross@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 38, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "amandabyrd", + "first_name": "Amanda", + "last_name": "Byrd", + "email": "amanda.byrd@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 39, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "sergiohorton", + "first_name": "Sergio", + "last_name": "Horton", + "email": "sergio.horton@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 40, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "oscarhowell", + "first_name": "Oscar", + "last_name": "Howell", + "email": "oscar.howell@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 41, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "savannahrobinson", + "first_name": "Savannah", + "last_name": "Robinson", + "email": "savannah.robinson@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 42, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "mistyvargas", + "first_name": "Misty", + "last_name": "Vargas", + "email": "misty.vargas@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 43, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "kristinacook", + "first_name": "Kristina", + "last_name": "Cook", + "email": "kristina.cook@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 44, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "doloresbrewer", + "first_name": "Dolores", + "last_name": "Brewer", + "email": "dolores.brewer@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 45, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "andymills", + "first_name": "Andy", + "last_name": "Mills", + "email": "andy.mills@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 46, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "kristinashaw", + "first_name": "Kristina", + "last_name": "Shaw", + "email": "kristina.shaw@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 47, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "jeanbutler", + "first_name": "Jean", + "last_name": "Butler", + "email": "jean.butler@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 48, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "paulbishop", + "first_name": "Paul", + "last_name": "Bishop", + "email": "paul.bishop@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 49, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "avanguyen", + "first_name": "Ava", + "last_name": "Nguyen", + "email": "ava.nguyen@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 50, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "freddiewilliamson", + "first_name": "Freddie", + "last_name": "Williamson", + "email": "freddie.williamson@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 51, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "roberthayes", + "first_name": "Robert", + "last_name": "Hayes", + "email": "robert.hayes@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 52, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "marleneknight", + "first_name": "Marlene", + "last_name": "Knight", + "email": "marlene.knight@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 53, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "johnnijennings", + "first_name": "Johnni", + "last_name": "Jennings", + "email": "johnni.jennings@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 54, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "vincentjensen", + "first_name": "Vincent", + "last_name": "Jensen", + "email": "vincent.jensen@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 55, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "dennismatthews", + "first_name": "Dennis", + "last_name": "Matthews", + "email": "dennis.matthews@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 56, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "cecilwade", + "first_name": "Cecil", + "last_name": "Wade", + "email": "cecil.wade@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 57, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "gregorysutton", + "first_name": "Gregory", + "last_name": "Sutton", + "email": "gregory.sutton@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 58, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "amberreid", + "first_name": "Amber", + "last_name": "Reid", + "email": "amber.reid@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 59, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "nataliewallace", + "first_name": "Natalie", + "last_name": "Wallace", + "email": "natalie.wallace@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 60, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "theodorecollins", + "first_name": "Theodore", + "last_name": "Collins", + "email": "theodore.collins@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 61, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "fernandohanson", + "first_name": "Fernando", + "last_name": "Hanson", + "email": "fernando.hanson@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 62, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "eileenellis", + "first_name": "Eileen", + "last_name": "Ellis", + "email": "eileen.ellis@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 63, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "braydenpatterson", + "first_name": "Brayden", + "last_name": "Patterson", + "email": "brayden.patterson@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 64, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "ronnielucas", + "first_name": "Ronnie", + "last_name": "Lucas", + "email": "ronnie.lucas@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 65, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "norahowell", + "first_name": "Nora", + "last_name": "Howell", + "email": "nora.howell@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 66, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "aaronjames", + "first_name": "Aaron", + "last_name": "James", + "email": "aaron.james@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 67, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "gabenguyen", + "first_name": "Gabe", + "last_name": "Nguyen", + "email": "gabe.nguyen@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 68, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "braydenprescott", + "first_name": "Brayden", + "last_name": "Prescott", + "email": "brayden.prescott@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 69, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "brettmckinney", + "first_name": "Brett", + "last_name": "Mckinney", + "email": "brett.mckinney@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 70, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "hildasanchez", + "first_name": "Hilda", + "last_name": "Sanchez", + "email": "hilda.sanchez@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 71, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "jessiedouglas", + "first_name": "Jessie", + "last_name": "Douglas", + "email": "jessie.douglas@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 72, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "dannygardner", + "first_name": "Danny", + "last_name": "Gardner", + "email": "danny.gardner@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 73, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "annegutierrez", + "first_name": "Anne", + "last_name": "Gutierrez", + "email": "anne.gutierrez@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 74, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "carlaarmstrong", + "first_name": "Carla", + "last_name": "Armstrong", + "email": "carla.armstrong@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 75, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "lucasbradley", + "first_name": "Lucas", + "last_name": "Bradley", + "email": "lucas.bradley@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 76, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "beverlyharris", + "first_name": "Beverly", + "last_name": "Harris", + "email": "beverly.harris@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 77, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "norarice", + "first_name": "Nora", + "last_name": "Rice", + "email": "nora.rice@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 78, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "tarahenry", + "first_name": "Tara", + "last_name": "Henry", + "email": "tara.henry@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 79, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "marthamason", + "first_name": "Martha", + "last_name": "Mason", + "email": "martha.mason@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 80, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "perrywagner", + "first_name": "Perry", + "last_name": "Wagner", + "email": "perry.wagner@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 81, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "jamesbennett", + "first_name": "James", + "last_name": "Bennett", + "email": "james.bennett@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 82, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "vivanhamilton", + "first_name": "Vivan", + "last_name": "Hamilton", + "email": "vivan.hamilton@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 83, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "arleneoliver", + "first_name": "Arlene", + "last_name": "Oliver", + "email": "arlene.oliver@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 84, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "shawngarcia", + "first_name": "Shawn", + "last_name": "Garcia", + "email": "shawn.garcia@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 85, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "stephenfleming", + "first_name": "Stephen", + "last_name": "Fleming", + "email": "stephen.fleming@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 86, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "ethelellis", + "first_name": "Ethel", + "last_name": "Ellis", + "email": "ethel.ellis@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 87, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "marionnelson", + "first_name": "Marion", + "last_name": "Nelson", + "email": "marion.nelson@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 88, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "theresasimmons", + "first_name": "Theresa", + "last_name": "Simmons", + "email": "theresa.simmons@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 89, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "teresadavis", + "first_name": "Teresa", + "last_name": "Davis", + "email": "teresa.davis@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 90, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "danajones", + "first_name": "Dana", + "last_name": "Jones", + "email": "dana.jones@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 91, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "haroldmontgomery", + "first_name": "Harold", + "last_name": "Montgomery", + "email": "harold.montgomery@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 92, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "edwardburns", + "first_name": "Edward", + "last_name": "Burns", + "email": "edward.burns@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 93, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "lonniemurray", + "first_name": "Lonnie", + "last_name": "Murray", + "email": "lonnie.murray@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 94, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "lisaanderson", + "first_name": "Lisa", + "last_name": "Anderson", + "email": "lisa.anderson@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 95, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "gregmurphy", + "first_name": "Greg", + "last_name": "Murphy", + "email": "greg.murphy@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 96, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "christinebradley", + "first_name": "Christine", + "last_name": "Bradley", + "email": "christine.bradley@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 97, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "ameliaburns", + "first_name": "Amelia", + "last_name": "Burns", + "email": "amelia.burns@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 98, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "joreid", + "first_name": "Jo", + "last_name": "Reid", + "email": "jo.reid@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 99, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "saragardner", + "first_name": "Sara", + "last_name": "Gardner", + "email": "sara.gardner@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 100, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "charlesbrown", + "first_name": "Charles", + "last_name": "Brown", + "email": "spam@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 101, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "lynnlittle", + "first_name": "Lynn", + "last_name": "Little", + "email": "soft_bounce@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 102, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "rebeccaday", + "first_name": "Rebecca", + "last_name": "Day", + "email": "hard_bounce@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +}, +{ + "model": "coderdojochi.cdcuser", + "pk": 103, + "fields": { + "password": "pbkdf2_sha256$100000$yBgNBYjjCrmY$26MzzNci8ohH+8VnnlM0u/3IASji1koWptvOONUK5F4=", + "last_login": "2013-01-01T06:00:00Z", + "is_superuser": false, + "username": "benjaminlee", + "first_name": "Benjamin", + "last_name": "Lee", + "email": "reject@sink.sendgrid.net", + "is_staff": false, + "is_active": true, + "date_joined": "2013-01-01T06:00:00Z", + "role": "mentor", + "admin_notes": "", + "groups": [], + "user_permissions": [] + } +} ] diff --git a/fixtures/04-coderdojochi.course.json b/fixtures/04-coderdojochi.course.json index 344e221d..bd7ee8e7 100644 --- a/fixtures/04-coderdojochi.course.json +++ b/fixtures/04-coderdojochi.course.json @@ -8,8 +8,8 @@ "title": "Choose Your Own Adventure", "slug": "choose-your-own-adventure", "description": "

    Think HTML and CSS are something you'd find in alphabet soup? Ever wonder how the web can deliver everything from Minecraft maps to YouTube Videos? Eager to learn and ready to build?

    \r\n\r\n

    By the end of the session, students will understand how the language HTML, CSS, and Javascript work together to build the web. Students will develop an understanding of how HTML is used to define the structure of web pages. In keeping with We All Code's philosophy of learning-by-doing, students will use their knowledge to hack together their own \"Choose Your Own Adventure\" game.

    ", - "created_at": "2013-01-01T00:00:00-06:00", - "updated_at": "2013-01-01T00:00:00-06:00" + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z" } }, { @@ -21,8 +21,8 @@ "title": "Choose Your Own Adventure", "slug": "choose-your-own-adventure", "description": "

    Think HTML and CSS are something you'd find in alphabet soup? Ever wonder how the web can deliver everything from Minecraft maps to YouTube Videos? Eager to learn and ready to build?

    \r\n\r\n

    By the end of the session, students will understand how the language HTML, CSS, and Javascript work together to build the web. Students will develop an understanding of how HTML is used to define the structure of web pages. In keeping with We All Code's philosophy of learning-by-doing, students will use their knowledge to hack together their own \"Choose Your Own Adventure\" game.

    ", - "created_at": "2019-01-01T00:00:00-06:00", - "updated_at": "2019-01-01T00:00:00-06:00" + "created_at": "2019-01-01T06:00:00Z", + "updated_at": "2019-01-01T06:00:00Z" } }, { @@ -34,8 +34,8 @@ "title": "Build your own game in JS", "slug": "build-your-own-game-in-js", "description": "

    Campers learn the fundamentals of web technologies to create, code, and produce their own project. Camp ends with a special showcase presentation for family and friends.

    Students work side-by-side with professionals in the field of computer science during this intensive, five-day workshops.They will learn not only the fundamentals of web technologies but will also experience how a real-world project moves through its lifecycle.

    Every session provides students with an opportunity to take a hands-on approach to their projects.Working closely with mentors allows plenty of room for discussion and reflection on one another's work, ultimately presenting to peers, guests, family, and friends.

    Only 20 Chicago youth will be in each cohort to allow a high level of individual mentor-to-student attention.

    Tuition includes all camp workshops, equipment, and any materials needed.

    ", - "created_at": "2019-01-01T00:00:00-06:00", - "updated_at": "2019-01-01T00:00:00-06:00" + "created_at": "2019-01-01T06:00:00Z", + "updated_at": "2019-01-01T06:00:00Z" } } ] diff --git a/fixtures/07-coderdojochi.meetingtype.json b/fixtures/07-coderdojochi.meetingtype.json index bb0c2da1..6e5bf1a6 100644 --- a/fixtures/07-coderdojochi.meetingtype.json +++ b/fixtures/07-coderdojochi.meetingtype.json @@ -7,8 +7,8 @@ "title": "Introductory Meeting", "slug": "introductory-meeting", "description": "

    This will be an introduction meeting. We will be going over our progress, our future, and how you can help!

    \r\n\r\n

    Please bring something you want to write on.

    \r\n\r\n

    Do you like kids? Do you like helping kids learn? We All Code is the best of both: a free computer club for kids interested in learning how to code.

    \r\n\r\n

    Everybody is welcome! No technical skills necessary.

    \r\n\r\n

    If you are interested in helping out, please sign up and tell your friends! We are so excited for so many passionate people!

    ", - "created_at": "2013-01-01T00:00:00-06:00", - "updated_at": "2013-01-01T00:00:00-06:00" + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z" } } ] diff --git a/fixtures/09-coderdojochi.guardian.json b/fixtures/09-coderdojochi.guardian.json index 10117e82..8d07963b 100644 --- a/fixtures/09-coderdojochi.guardian.json +++ b/fixtures/09-coderdojochi.guardian.json @@ -7,8 +7,11 @@ "is_active": true, "phone": "2489141315", "zip": "60650", - "created_at": "2016-05-08T13:04:36.438-06:00", - "updated_at": "2016-05-08T13:04:39.552-06:00" + "birthday": null, + "gender": null, + "created_at": "2016-05-08T19:04:36.438Z", + "updated_at": "2016-05-08T19:04:39.552Z", + "race_ethnicity": [] } } ] diff --git a/fixtures/10-coderdojochi.meeting.json b/fixtures/10-coderdojochi.meeting.json index 6329bd39..25ac0ea7 100644 --- a/fixtures/10-coderdojochi.meeting.json +++ b/fixtures/10-coderdojochi.meeting.json @@ -5,17 +5,17 @@ "fields": { "meeting_type": 1, "additional_info": "", - "start_date": "2020-02-01T18:00:00-06:00", - "end_date": "2020-02-01T19:00:00-06:00", + "start_date": "2020-02-02T00:00:00Z", + "end_date": "2020-02-02T01:00:00Z", "location": 1, "external_enrollment_url": "", "is_public": true, "is_active": true, "image_url": "images/classes/0001.jpg", "bg_image": "", - "announced_date": "2020-02-01T00:00:00-06:00", - "created_at": "2013-01-01T00:00:00-06:00", - "updated_at": "2013-01-01T00:00:00-06:00" + "announced_date": "2020-02-01T06:00:00Z", + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z" } } ] diff --git a/fixtures/11-coderdojochi.mentor.json b/fixtures/11-coderdojochi.mentor.json index a8bd5b42..643fb6fc 100644 --- a/fixtures/11-coderdojochi.mentor.json +++ b/fixtures/11-coderdojochi.mentor.json @@ -1,102 +1,2102 @@ [ - { "model": "coderdojochi.mentor", "pk": 1, "fields": { "user": 1, "bio": "Hello, I'm a test mentor!", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": true, "is_public": true, "avatar": "avatar/test_admin.jpg", "avatar_approved": true } }, - { "model": "coderdojochi.mentor", "pk": 2, "fields": { "user": 3, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 3, "fields": { "user": 4, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 4, "fields": { "user": 5, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 5, "fields": { "user": 6, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 6, "fields": { "user": 7, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 7, "fields": { "user": 8, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 8, "fields": { "user": 9, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 9, "fields": { "user": 10, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 10, "fields": { "user": 11, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 11, "fields": { "user": 12, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 12, "fields": { "user": 13, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 13, "fields": { "user": 14, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 14, "fields": { "user": 15, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 15, "fields": { "user": 16, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 16, "fields": { "user": 17, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 17, "fields": { "user": 18, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 18, "fields": { "user": 19, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 19, "fields": { "user": 20, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 20, "fields": { "user": 21, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 21, "fields": { "user": 22, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 22, "fields": { "user": 23, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 23, "fields": { "user": 24, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 24, "fields": { "user": 25, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 25, "fields": { "user": 26, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 26, "fields": { "user": 27, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 27, "fields": { "user": 28, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 28, "fields": { "user": 29, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 29, "fields": { "user": 30, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 30, "fields": { "user": 31, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 31, "fields": { "user": 32, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 32, "fields": { "user": 33, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 33, "fields": { "user": 34, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 34, "fields": { "user": 35, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 35, "fields": { "user": 36, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 36, "fields": { "user": 37, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 37, "fields": { "user": 38, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 38, "fields": { "user": 39, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 39, "fields": { "user": 40, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 40, "fields": { "user": 41, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 41, "fields": { "user": 42, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 42, "fields": { "user": 43, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 43, "fields": { "user": 44, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 44, "fields": { "user": 45, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 45, "fields": { "user": 46, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 46, "fields": { "user": 47, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 47, "fields": { "user": 48, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 48, "fields": { "user": 49, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 49, "fields": { "user": 50, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 50, "fields": { "user": 51, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 51, "fields": { "user": 52, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 52, "fields": { "user": 53, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 53, "fields": { "user": 54, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 54, "fields": { "user": 55, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 55, "fields": { "user": 56, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 56, "fields": { "user": 57, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 57, "fields": { "user": 58, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 58, "fields": { "user": 59, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 59, "fields": { "user": 60, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 60, "fields": { "user": 61, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 61, "fields": { "user": 62, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 62, "fields": { "user": 63, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 63, "fields": { "user": 64, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 64, "fields": { "user": 65, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 65, "fields": { "user": 66, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 66, "fields": { "user": 67, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 67, "fields": { "user": 68, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 68, "fields": { "user": 69, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 69, "fields": { "user": 70, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 70, "fields": { "user": 71, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 71, "fields": { "user": 72, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 72, "fields": { "user": 73, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 73, "fields": { "user": 74, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 74, "fields": { "user": 75, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 75, "fields": { "user": 76, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 76, "fields": { "user": 77, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 77, "fields": { "user": 78, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 78, "fields": { "user": 79, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 79, "fields": { "user": 80, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 80, "fields": { "user": 81, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 81, "fields": { "user": 82, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 82, "fields": { "user": 83, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 83, "fields": { "user": 84, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 84, "fields": { "user": 85, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 85, "fields": { "user": 86, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 86, "fields": { "user": 87, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 87, "fields": { "user": 88, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 88, "fields": { "user": 89, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 89, "fields": { "user": 90, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 90, "fields": { "user": 91, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 91, "fields": { "user": 92, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 92, "fields": { "user": 93, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 93, "fields": { "user": 94, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 94, "fields": { "user": 95, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 95, "fields": { "user": 96, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 96, "fields": { "user": 97, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 97, "fields": { "user": 98, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 98, "fields": { "user": 99, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 99, "fields": { "user": 100, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } }, - { "model": "coderdojochi.mentor", "pk": 100, "fields": { "user": 101, "bio": "", "is_active": true, "created_at": "2013-01-01T06:00:00Z", "updated_at": "2013-01-01T06:00:00Z", "background_check": false, "is_public": false, "avatar": "", "avatar_approved": false } } +{ + "model": "coderdojochi.mentor", + "pk": 1, + "fields": { + "user": 1, + "bio": "Hello, I'm a test mentor!", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": true, + "is_public": true, + "avatar": "avatar/test_admin.jpg", + "avatar_approved": true, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 2, + "fields": { + "user": 3, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 3, + "fields": { + "user": 4, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 4, + "fields": { + "user": 5, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 5, + "fields": { + "user": 6, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 6, + "fields": { + "user": 7, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 7, + "fields": { + "user": 8, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 8, + "fields": { + "user": 9, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 9, + "fields": { + "user": 10, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 10, + "fields": { + "user": 11, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 11, + "fields": { + "user": 12, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 12, + "fields": { + "user": 13, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 13, + "fields": { + "user": 14, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 14, + "fields": { + "user": 15, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 15, + "fields": { + "user": 16, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 16, + "fields": { + "user": 17, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 17, + "fields": { + "user": 18, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 18, + "fields": { + "user": 19, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 19, + "fields": { + "user": 20, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 20, + "fields": { + "user": 21, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 21, + "fields": { + "user": 22, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 22, + "fields": { + "user": 23, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 23, + "fields": { + "user": 24, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 24, + "fields": { + "user": 25, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 25, + "fields": { + "user": 26, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 26, + "fields": { + "user": 27, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 27, + "fields": { + "user": 28, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 28, + "fields": { + "user": 29, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 29, + "fields": { + "user": 30, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 30, + "fields": { + "user": 31, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 31, + "fields": { + "user": 32, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 32, + "fields": { + "user": 33, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 33, + "fields": { + "user": 34, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 34, + "fields": { + "user": 35, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 35, + "fields": { + "user": 36, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 36, + "fields": { + "user": 37, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 37, + "fields": { + "user": 38, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 38, + "fields": { + "user": 39, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 39, + "fields": { + "user": 40, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 40, + "fields": { + "user": 41, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 41, + "fields": { + "user": 42, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 42, + "fields": { + "user": 43, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 43, + "fields": { + "user": 44, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 44, + "fields": { + "user": 45, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 45, + "fields": { + "user": 46, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 46, + "fields": { + "user": 47, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 47, + "fields": { + "user": 48, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 48, + "fields": { + "user": 49, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 49, + "fields": { + "user": 50, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 50, + "fields": { + "user": 51, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 51, + "fields": { + "user": 52, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 52, + "fields": { + "user": 53, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 53, + "fields": { + "user": 54, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 54, + "fields": { + "user": 55, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 55, + "fields": { + "user": 56, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 56, + "fields": { + "user": 57, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 57, + "fields": { + "user": 58, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 58, + "fields": { + "user": 59, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 59, + "fields": { + "user": 60, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 60, + "fields": { + "user": 61, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 61, + "fields": { + "user": 62, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 62, + "fields": { + "user": 63, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 63, + "fields": { + "user": 64, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 64, + "fields": { + "user": 65, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 65, + "fields": { + "user": 66, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 66, + "fields": { + "user": 67, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 67, + "fields": { + "user": 68, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 68, + "fields": { + "user": 69, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 69, + "fields": { + "user": 70, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 70, + "fields": { + "user": 71, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 71, + "fields": { + "user": 72, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 72, + "fields": { + "user": 73, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 73, + "fields": { + "user": 74, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 74, + "fields": { + "user": 75, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 75, + "fields": { + "user": 76, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 76, + "fields": { + "user": 77, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 77, + "fields": { + "user": 78, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 78, + "fields": { + "user": 79, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 79, + "fields": { + "user": 80, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 80, + "fields": { + "user": 81, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 81, + "fields": { + "user": 82, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 82, + "fields": { + "user": 83, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 83, + "fields": { + "user": 84, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 84, + "fields": { + "user": 85, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 85, + "fields": { + "user": 86, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 86, + "fields": { + "user": 87, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 87, + "fields": { + "user": 88, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 88, + "fields": { + "user": 89, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 89, + "fields": { + "user": 90, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 90, + "fields": { + "user": 91, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 91, + "fields": { + "user": 92, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 92, + "fields": { + "user": 93, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 93, + "fields": { + "user": 94, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 94, + "fields": { + "user": 95, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 95, + "fields": { + "user": 96, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 96, + "fields": { + "user": 97, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 97, + "fields": { + "user": 98, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 98, + "fields": { + "user": 99, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 99, + "fields": { + "user": 100, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +}, +{ + "model": "coderdojochi.mentor", + "pk": 100, + "fields": { + "user": 101, + "bio": "", + "is_active": true, + "created_at": "2013-01-01T06:00:00Z", + "updated_at": "2013-01-01T06:00:00Z", + "background_check": false, + "is_public": false, + "avatar": "", + "avatar_approved": false, + "birthday": null, + "gender": null, + "work_place": null, + "phone": null, + "home_address": null, + "race_ethnicity": [] + } +} ] diff --git a/fixtures/12-coderdojochi.student.json b/fixtures/12-coderdojochi.student.json index f2c7bfa8..3016f480 100644 --- a/fixtures/12-coderdojochi.student.json +++ b/fixtures/12-coderdojochi.student.json @@ -6,7 +6,7 @@ "guardian": 1, "first_name": "David", "last_name": "Doe", - "birthday": "2004-05-02T13:05:04-06:00", + "birthday": "2004-05-02T19:05:04Z", "gender": "Male", "school_name": "Murphy Elementary", "school_type": "Public", @@ -14,8 +14,8 @@ "medications": "", "photo_release": true, "consent": true, - "created_at": "2016-05-08T13:05:21.112-06:00", - "updated_at": "2016-05-08T13:05:21.112-06:00", + "created_at": "2016-05-08T19:05:21.112Z", + "updated_at": "2016-05-08T19:05:21.112Z", "is_active": true, "race_ethnicity": [ 3, @@ -32,7 +32,7 @@ "guardian": 1, "first_name": "Rachel", "last_name": "Doe", - "birthday": "2011-05-17T13:05:34-06:00", + "birthday": "2011-05-17T19:05:34Z", "gender": "Female", "school_name": "Disney", "school_type": "Private", @@ -40,8 +40,8 @@ "medications": "", "photo_release": true, "consent": true, - "created_at": "2016-05-08T13:05:51.103-06:00", - "updated_at": "2016-05-08T13:05:54.813-06:00", + "created_at": "2016-05-08T19:05:51.103Z", + "updated_at": "2016-05-08T19:05:54.813Z", "is_active": true, "race_ethnicity": [ 2 @@ -55,7 +55,7 @@ "guardian": 1, "first_name": "Kelly", "last_name": "Doe", - "birthday": "2008-01-13T13:06:13-06:00", + "birthday": "2008-01-13T19:06:13Z", "gender": "Other", "school_name": "Murphy Elementary", "school_type": "Public", @@ -63,8 +63,8 @@ "medications": "", "photo_release": true, "consent": true, - "created_at": "2016-05-08T13:06:25.378-06:00", - "updated_at": "2016-05-08T13:06:31.135-06:00", + "created_at": "2016-05-08T19:06:25.378Z", + "updated_at": "2016-05-08T19:06:31.135Z", "is_active": true, "race_ethnicity": [ 4 @@ -78,7 +78,7 @@ "guardian": 1, "first_name": "Mitch", "last_name": "Doe", - "birthday": "1996-05-08T13:06:46-06:00", + "birthday": "1996-05-08T19:06:46Z", "gender": "Boy", "school_name": "Murphy Elementary", "school_type": "Public", @@ -86,8 +86,8 @@ "medications": "", "photo_release": true, "consent": true, - "created_at": "2016-05-08T13:07:00.193-06:00", - "updated_at": "2016-05-08T13:07:00.193-06:00", + "created_at": "2016-05-08T19:07:00.193Z", + "updated_at": "2016-05-08T19:07:00.193Z", "is_active": true, "race_ethnicity": [ 7 diff --git a/fixtures/13-coderdojochi.session.json b/fixtures/13-coderdojochi.session.json index b829e802..204a55c3 100644 --- a/fixtures/13-coderdojochi.session.json +++ b/fixtures/13-coderdojochi.session.json @@ -1,134 +1,224 @@ [ - { - "model": "coderdojochi.session", - "pk": 1, - "fields": { - "course": 1, - "start_date": "2020-01-01T10:00:00-06:00", - "end_date": "2020-01-01T13:00:00-06:00", - "mentor_start_date": "2020-01-01T09:00:00-06:00", - "mentor_end_date": "2020-01-01T14:00:00-06:00", - "location": 1, - "capacity": 20, - "instructor": 1, - "is_active": true, - "is_public": true, - "created_at": "2000-01-01T00:00:00-06:00", - "updated_at": "2000-01-01T00:00:00-06:00", - "image_url": "classes/0001.jpg", - "mentors_week_reminder_sent": true, - "mentors_day_reminder_sent": true, - "gender_limitation": "male", - "min_age_limitation": 7, - "max_age_limitation": 17 - } - }, - { - "model": "coderdojochi.session", - "pk": 2, - "fields": { - "course": 1, - "start_date": "2020-02-02T10:00:00-06:00", - "end_date": "2020-02-02T13:00:00-06:00", - "mentor_start_date": "2020-02-02T09:00:00-06:00", - "mentor_end_date": "2020-02-02T14:00:00-06:00", - "location": 1, - "capacity": 20, - "instructor": 1, - "is_active": true, - "is_public": true, - "created_at": "2000-01-01T00:00:00-06:00", - "updated_at": "2000-01-01T00:00:00-06:00", - "image_url": "classes/0002.jpg", - "min_age_limitation": 7, - "max_age_limitation": 17 - } - }, - { - "model": "coderdojochi.session", - "pk": 3, - "fields": { - "course": 1, - "start_date": "2020-03-03T10:00:00-06:00", - "end_date": "2020-03-03T13:00:00-06:00", - "mentor_start_date": "2020-03-03T09:00:00-06:00", - "mentor_end_date": "2020-03-03T14:00:00-06:00", - "location": 2, - "capacity": 20, - "instructor": 1, - "is_active": true, - "is_public": true, - "created_at": "2000-01-01T00:00:00-06:00", - "updated_at": "2000-01-01T00:00:00-06:00", - "image_url": "classes/0003.jpg", - "gender_limitation": "Male", - "min_age_limitation": 7, - "max_age_limitation": 17 - } - }, - { - "model": "coderdojochi.session", - "pk": 4, - "fields": { - "course": 1, - "start_date": "2020-04-04T10:00:00-06:00", - "end_date": "2020-04-04T13:00:00-06:00", - "mentor_start_date": "2020-04-04T09:00:00-06:00", - "mentor_end_date": "2020-04-04T14:00:00-06:00", - "location": 1, - "capacity": 20, - "instructor": 1, - "is_active": true, - "is_public": true, - "created_at": "2000-01-01T00:00:00-06:00", - "updated_at": "2000-01-01T00:00:00-06:00", - "image_url": "classes/0004.jpg", - "min_age_limitation": 10, - "max_age_limitation": 16 - } - }, - { - "model": "coderdojochi.session", - "pk": 5, - "fields": { - "course": 1, - "start_date": "2020-05-05T10:00:00-06:00", - "end_date": "2020-05-05T13:00:00-06:00", - "mentor_start_date": "2020-05-05T09:00:00-06:00", - "mentor_end_date": "2020-05-05T14:00:00-06:00", - "location": 1, - "capacity": 20, - "instructor": 1, - "is_active": true, - "is_public": true, - "password": "password", - "partner_message": "

    This is the message that is displayed on the password page

    \r\n

    The password below is password

    ", - "created_at": "2000-01-01T00:00:00-06:00", - "updated_at": "2000-01-01T00:00:00-06:00", - "image_url": "classes/0001.jpg", - "gender_limitation": "female", - "min_age_limitation": 10, - "max_age_limitation": 15 - } - }, - { - "model": "coderdojochi.session", - "pk": 6, - "fields": { - "course": 2, - "start_date": "2020-07-06T09:00:00-06:00", - "end_date": "2020-07-10T14:00:00-06:00", - "mentor_start_date": "2020-06-08T08:00:00-06:00", - "mentor_end_date": "2020-06-12T14:30:00-06:00", - "location": 2, - "capacity": 20, - "instructor": 1, - "is_active": true, - "is_public": true, - "created_at": "2000-01-01T00:00:00-06:00", - "updated_at": "2000-01-01T00:00:00-06:00", - "min_age_limitation": 7, - "max_age_limitation": 17 - } +{ + "model": "coderdojochi.session", + "pk": 1, + "fields": { + "course": 1, + "cost": "0.00", + "min_cost": null, + "max_cost": null, + "start_date": "2020-01-01T16:00:00Z", + "end_date": "2020-01-01T19:00:00Z", + "mentor_start_date": "2020-01-01T15:00:00Z", + "mentor_end_date": "2020-01-01T20:00:00Z", + "location": 1, + "capacity": 20, + "mentor_capacity": null, + "additional_info": null, + "instructor": 1, + "external_enrollment_url": null, + "is_active": true, + "is_public": true, + "password": "", + "partner_message": "", + "announced_date_mentors": null, + "announced_date_guardians": null, + "created_at": "2000-01-01T06:00:00Z", + "updated_at": "2000-01-01T06:00:00Z", + "image_url": "classes/0001.jpg", + "bg_image": "", + "mentors_week_reminder_sent": true, + "mentors_day_reminder_sent": true, + "gender_limitation": "male", + "min_age_limitation": 7, + "max_age_limitation": 17, + "waitlist_mentors": [], + "waitlist_students": [] } +}, +{ + "model": "coderdojochi.session", + "pk": 2, + "fields": { + "course": 1, + "cost": "0.00", + "min_cost": null, + "max_cost": null, + "start_date": "2020-02-02T16:00:00Z", + "end_date": "2020-02-02T19:00:00Z", + "mentor_start_date": "2020-02-02T15:00:00Z", + "mentor_end_date": "2020-02-02T20:00:00Z", + "location": 1, + "capacity": 20, + "mentor_capacity": null, + "additional_info": null, + "instructor": 1, + "external_enrollment_url": null, + "is_active": true, + "is_public": true, + "password": "", + "partner_message": "", + "announced_date_mentors": null, + "announced_date_guardians": null, + "created_at": "2000-01-01T06:00:00Z", + "updated_at": "2000-01-01T06:00:00Z", + "image_url": "classes/0002.jpg", + "bg_image": "", + "mentors_week_reminder_sent": false, + "mentors_day_reminder_sent": false, + "gender_limitation": null, + "min_age_limitation": 7, + "max_age_limitation": 17, + "waitlist_mentors": [], + "waitlist_students": [] + } +}, +{ + "model": "coderdojochi.session", + "pk": 3, + "fields": { + "course": 1, + "cost": "0.00", + "min_cost": null, + "max_cost": null, + "start_date": "2020-03-03T16:00:00Z", + "end_date": "2020-03-03T19:00:00Z", + "mentor_start_date": "2020-03-03T15:00:00Z", + "mentor_end_date": "2020-03-03T20:00:00Z", + "location": 2, + "capacity": 20, + "mentor_capacity": null, + "additional_info": null, + "instructor": 1, + "external_enrollment_url": null, + "is_active": true, + "is_public": true, + "password": "", + "partner_message": "", + "announced_date_mentors": null, + "announced_date_guardians": null, + "created_at": "2000-01-01T06:00:00Z", + "updated_at": "2000-01-01T06:00:00Z", + "image_url": "classes/0003.jpg", + "bg_image": "", + "mentors_week_reminder_sent": false, + "mentors_day_reminder_sent": false, + "gender_limitation": "Male", + "min_age_limitation": 7, + "max_age_limitation": 17, + "waitlist_mentors": [], + "waitlist_students": [] + } +}, +{ + "model": "coderdojochi.session", + "pk": 4, + "fields": { + "course": 1, + "cost": "0.00", + "min_cost": null, + "max_cost": null, + "start_date": "2020-04-04T16:00:00Z", + "end_date": "2020-04-04T19:00:00Z", + "mentor_start_date": "2020-04-04T15:00:00Z", + "mentor_end_date": "2020-04-04T20:00:00Z", + "location": 1, + "capacity": 20, + "mentor_capacity": null, + "additional_info": null, + "instructor": 1, + "external_enrollment_url": null, + "is_active": true, + "is_public": true, + "password": "", + "partner_message": "", + "announced_date_mentors": null, + "announced_date_guardians": null, + "created_at": "2000-01-01T06:00:00Z", + "updated_at": "2000-01-01T06:00:00Z", + "image_url": "classes/0004.jpg", + "bg_image": "", + "mentors_week_reminder_sent": false, + "mentors_day_reminder_sent": false, + "gender_limitation": null, + "min_age_limitation": 10, + "max_age_limitation": 16, + "waitlist_mentors": [], + "waitlist_students": [] + } +}, +{ + "model": "coderdojochi.session", + "pk": 5, + "fields": { + "course": 1, + "cost": "0.00", + "min_cost": null, + "max_cost": null, + "start_date": "2020-05-05T16:00:00Z", + "end_date": "2020-05-05T19:00:00Z", + "mentor_start_date": "2020-05-05T15:00:00Z", + "mentor_end_date": "2020-05-05T20:00:00Z", + "location": 1, + "capacity": 20, + "mentor_capacity": null, + "additional_info": null, + "instructor": 1, + "external_enrollment_url": null, + "is_active": true, + "is_public": true, + "password": "password", + "partner_message": "

    This is the message that is displayed on the password page

    \r\n

    The password below is password

    ", + "announced_date_mentors": null, + "announced_date_guardians": null, + "created_at": "2000-01-01T06:00:00Z", + "updated_at": "2000-01-01T06:00:00Z", + "image_url": "classes/0001.jpg", + "bg_image": "", + "mentors_week_reminder_sent": false, + "mentors_day_reminder_sent": false, + "gender_limitation": "female", + "min_age_limitation": 10, + "max_age_limitation": 15, + "waitlist_mentors": [], + "waitlist_students": [] + } +}, +{ + "model": "coderdojochi.session", + "pk": 6, + "fields": { + "course": 2, + "cost": "0.00", + "min_cost": null, + "max_cost": null, + "start_date": "2020-07-06T15:00:00Z", + "end_date": "2020-07-10T20:00:00Z", + "mentor_start_date": "2020-06-08T14:00:00Z", + "mentor_end_date": "2020-06-12T20:30:00Z", + "location": 2, + "capacity": 20, + "mentor_capacity": null, + "additional_info": null, + "instructor": 1, + "external_enrollment_url": null, + "is_active": true, + "is_public": true, + "password": "", + "partner_message": "", + "announced_date_mentors": null, + "announced_date_guardians": null, + "created_at": "2000-01-01T06:00:00Z", + "updated_at": "2000-01-01T06:00:00Z", + "image_url": null, + "bg_image": "", + "mentors_week_reminder_sent": false, + "mentors_day_reminder_sent": false, + "gender_limitation": null, + "min_age_limitation": 7, + "max_age_limitation": 17, + "waitlist_mentors": [], + "waitlist_students": [] + } +} ] diff --git a/fixtures/14-coderdojochi.mentororder.json b/fixtures/14-coderdojochi.mentororder.json index c6b7a0a8..a8e3b1a5 100644 --- a/fixtures/14-coderdojochi.mentororder.json +++ b/fixtures/14-coderdojochi.mentororder.json @@ -5,15 +5,15 @@ "fields": { "mentor": 1, "session": 2, - "check_in": "2016-05-07T10:00:00-06:00", + "is_active": true, + "ip": "", + "check_in": "2016-05-07T16:00:00Z", "affiliate": "", "order_number": "", - "ip": "", + "created_at": "2016-05-08T19:07:25.346Z", + "updated_at": "2016-05-08T19:07:25.346Z", "week_reminder_sent": true, - "day_reminder_sent": true, - "is_active": true, - "created_at": "2016-05-08T13:07:25.346-06:00", - "updated_at": "2016-05-08T13:07:25.346-06:00" + "day_reminder_sent": true } } ] diff --git a/fixtures/15-coderdojochi.order.json b/fixtures/15-coderdojochi.order.json index c8cb8553..c1afb8f2 100644 --- a/fixtures/15-coderdojochi.order.json +++ b/fixtures/15-coderdojochi.order.json @@ -8,11 +8,12 @@ "student": 1, "is_active": true, "ip": "", + "check_in": null, "alternate_guardian": "", "affiliate": "", "order_number": "", - "created_at": "2016-05-08T13:07:25.346-06:00", - "updated_at": "2016-05-08T13:07:25.346-06:00", + "created_at": "2016-05-08T19:07:25.346Z", + "updated_at": "2016-05-08T19:07:25.346Z", "week_reminder_sent": false, "day_reminder_sent": false } @@ -26,12 +27,12 @@ "student": 2, "is_active": false, "ip": "", - "check_in": "2016-05-07T13:07:35-06:00", + "check_in": "2016-05-07T19:07:35Z", "alternate_guardian": "", "affiliate": "", "order_number": "", - "created_at": "2016-05-08T13:07:41.042-06:00", - "updated_at": "2016-05-08T13:07:41.042-06:00", + "created_at": "2016-05-08T19:07:41.042Z", + "updated_at": "2016-05-08T19:07:41.042Z", "week_reminder_sent": false, "day_reminder_sent": false } @@ -45,12 +46,12 @@ "student": 3, "is_active": true, "ip": "", - "check_in": "2016-05-07T10:07:50-06:00", + "check_in": "2016-05-07T16:07:50Z", "alternate_guardian": "", "affiliate": "", "order_number": "", - "created_at": "2016-05-08T13:07:57.868-06:00", - "updated_at": "2016-05-08T13:07:57.868-06:00", + "created_at": "2016-05-08T19:07:57.868Z", + "updated_at": "2016-05-08T19:07:57.868Z", "week_reminder_sent": false, "day_reminder_sent": false } diff --git a/fixtures/get.sh b/fixtures/get.sh new file mode 100755 index 00000000..1cc305e5 --- /dev/null +++ b/fixtures/get.sh @@ -0,0 +1,29 @@ +#/bin/env bash + +# To run: +# bash ./get.sh +# + +models=( + "sites.site" + "auth.group" + "socialaccount.socialapp" + "coderdojochi.cdcuser" + "coderdojochi.course" + "coderdojochi.equipmenttype" + "coderdojochi.location" + "coderdojochi.meetingtype" + "coderdojochi.raceethnicity" + "coderdojochi.guardian" + "coderdojochi.meeting" + "coderdojochi.mentor" + "coderdojochi.student" + "coderdojochi.session" + "coderdojochi.mentororder" + "coderdojochi.order" +) + +for i in "${!models[@]}" +do + docker-compose run --rm app python -W ignore manage.py dumpdata "${models[$i]}" --indent 2 > "`printf %02d $i`-${models[$i]}.json" +done From 625dac71e6482a163f86b094bb585ae60b36a48b Mon Sep 17 00:00:00 2001 From: Ali Karbassi Date: Thu, 24 Oct 2019 17:02:11 -0500 Subject: [PATCH 5/7] Updated pipfile.lock --- Pipfile.lock | 308 ++++++++++++++++++++++++++------------------------- 1 file changed, 159 insertions(+), 149 deletions(-) diff --git a/Pipfile.lock b/Pipfile.lock index c75e7172..e7bd02c3 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -18,40 +18,33 @@ "default": { "arrow": { "hashes": [ - "sha256:8c53fad4e723a56c02d8df75fd7a879800148d6e51df4713f91502e70a65e1be", - "sha256:9f1503d359011a74cd41169652f0eb0232822f58c67c414229f4174a15ae71f9" + "sha256:10257c5daba1a88db34afa284823382f4963feca7733b9107956bed041aff24f", + "sha256:c2325911fcd79972cf493cfd957072f9644af8ad25456201ae1ede3316576eb4" ], "index": "pypi", - "version": "==0.14.6" - }, - "backports.csv": { - "hashes": [ - "sha256:1277dfff73130b2e106bf3dd347adb3c5f6c4340882289d88f31240da92cbd6d", - "sha256:21f6e09bab589e6c1f877edbc40277b65e626262a86e69a70137db714eaac5ce" - ], - "version": "==1.0.7" + "version": "==0.15.2" }, "boto3": { "hashes": [ - "sha256:654c7ebd6d089d5af634a8121f3960e50e283643660abcba07e602ac237f4839", - "sha256:f114b586c307f73a46d6dfe9dfb1c37865354f48fc749794d96517527424d1f5" + "sha256:7fc97cb2c9cdff905e950750c8e8b23b872a84696158a28852355dc4b712ba3a", + "sha256:818c56a317c176142dbf1dca3f5b4366c80460c6cc3c4efe22f0bde736571283" ], "index": "pypi", - "version": "==1.9.220" + "version": "==1.10.2" }, "botocore": { "hashes": [ - "sha256:748fe4ee5cc8b10ef09e52c740b488402d6f6d4d1f0dde0c936da232b42b1bdd", - "sha256:9ffd9264e4ad999d2929cfe1c7e413d4cdf76a8bd92f011dce31874f056d2e18" + "sha256:8223485841ef4731a5d4943a733295ba69d0005c4ae64c468308cc07f6960d39", + "sha256:f8e12dc6e536ea512f0ad25b74e7eecdf5d9e09ae92b5de236b535bee7804d5b" ], - "version": "==1.12.220" + "version": "==1.13.2" }, "certifi": { "hashes": [ - "sha256:046832c04d4e752f37383b628bc601a7ea7211496b4638f6514d0e5b9acc4939", - "sha256:945e3ba63a0b9f577b1395204e13c3a231f9bc0223888be653286534e5873695" + "sha256:e4f3620cfea4f83eedc95b24abd9cd56f3c4b146dd0177e83a21b4eb49e21e50", + "sha256:fd7c7c74727ddcf00e9acd26bba8da604ffec95bf1c2144e67aff7a8b50e6cef" ], - "version": "==2019.6.16" + "version": "==2019.9.11" }, "chardet": { "hashes": [ @@ -82,11 +75,11 @@ }, "django": { "hashes": [ - "sha256:148a4a2d1a85b23883b0a4e99ab7718f518a83675e4485e44dc0c1d36988c5fa", - "sha256:deb70aa038e59b58593673b15e9a711d1e5ccd941b5973b30750d5d026abfd56" + "sha256:4025317ca01f75fc79250ff7262a06d8ba97cd4f82e93394b2a0a6a4a925caeb", + "sha256:a8ca1033acac9f33995eb2209a6bf18a4681c3e5269a878e9a7e0b7384ed1ca3" ], "index": "pypi", - "version": "==2.2.5" + "version": "==2.2.6" }, "django-allauth": { "hashes": [ @@ -97,11 +90,11 @@ }, "django-anymail": { "hashes": [ - "sha256:72549db8823c144a334bf88c8e749becb1fc82911658129549f46bfb84de311c", - "sha256:947c9c5de009036771ff9c4295da1836c950fdee4d7c27441181ce1021c370a8" + "sha256:7930d5f841c9be7e044a9e6bf3492aedf7aa641716b6c1f8f52411658f674131", + "sha256:dfa4a00a1608d40893cf818ed3632046a0bb01cf2a2bb3a64d31ff146151533a" ], "index": "pypi", - "version": "==6.1.0" + "version": "==7.0.0" }, "django-appconf": { "hashes": [ @@ -221,11 +214,11 @@ }, "django-storages": { "hashes": [ - "sha256:8e35d2c7baeda5dc6f0b4f9a0fc142d25f9a1bf72b8cebfcbc5db4863abc552d", - "sha256:b1a63cd5ea286ee5a9fb45de6c3c5c0ae132d58308d06f1ce9865cfcd5e470a7" + "sha256:87287b7ad2e789cd603373439994e1ac6f94d9dc2e5f8173d2a87aa3ed458bd9", + "sha256:f3b3def96493d3ccde37b864cea376472baf6e8a596504b209278801c510b807" ], "index": "pypi", - "version": "==1.7.1" + "version": "==1.7.2" }, "docutils": { "hashes": [ @@ -237,8 +230,8 @@ }, "et-xmlfile": { "hashes": [ - "sha256:614d9722d572f6246302c4491846d2c393c199cfa4edc9af593437691683335b", - "sha256:cd4cb7a6bfba77c7a06d5d6bcbb7b1999b9337d7f879a25cdf66410d95b490f1" + "sha256:49ae4c7dbbaee5159ba04ed073906bb50c54460cdb05255527d614e633e64236", + "sha256:614d9722d572f6246302c4491846d2c393c199cfa4edc9af593437691683335b" ], "version": "==1.0.1" }, @@ -252,10 +245,10 @@ }, "faker": { "hashes": [ - "sha256:1d3f700e8dfcefd6e657118d71405d53e86974448aba78884f119bbd84c0cddf", - "sha256:d5366e120191c5610fceeebfe1c298dc46da0277096f639c6dd7e2eaee0fa547" + "sha256:5902379d8df308a204fc11c4f621590ee83975805a6c7b2228203b9defa45250", + "sha256:5e8c755c619f332d5ec28b7586389665f136bcf528e165eb925e87c06a63eda7" ], - "version": "==2.0.1" + "version": "==2.0.3" }, "gunicorn": { "hashes": [ @@ -310,6 +303,12 @@ "index": "pypi", "version": "==0.2" }, + "markuppy": { + "hashes": [ + "sha256:1adee2c0a542af378fe84548ff6f6b0168f3cb7f426b46961038a2bcfaad0d5f" + ], + "version": "==1.14" + }, "mock": { "hashes": [ "sha256:83657d894c90d5681d62155c82bda9c1187827525880eda8ff5df4ec813437c3", @@ -341,98 +340,104 @@ }, "openpyxl": { "hashes": [ - "sha256:72d1ed243972cad0b3c236230083cac00d9c72804e64a2ae93d7901aec1a8f1c" + "sha256:340a1ab2069764559b9d58027a43a24db18db0e25deb80f81ecb8ca7ee5253db" ], - "version": "==2.6.3" + "version": "==3.0.0" }, "pillow": { "hashes": [ - "sha256:0804f77cb1e9b6dbd37601cee11283bba39a8d44b9ddb053400c58e0c0d7d9de", - "sha256:0ab7c5b5d04691bcbd570658667dd1e21ca311c62dcfd315ad2255b1cd37f64f", - "sha256:0b3e6cf3ea1f8cecd625f1420b931c83ce74f00c29a0ff1ce4385f99900ac7c4", - "sha256:365c06a45712cd723ec16fa4ceb32ce46ad201eb7bbf6d3c16b063c72b61a3ed", - "sha256:38301fbc0af865baa4752ddae1bb3cbb24b3d8f221bf2850aad96b243306fa03", - "sha256:3aef1af1a91798536bbab35d70d35750bd2884f0832c88aeb2499aa2d1ed4992", - "sha256:3fe0ab49537d9330c9bba7f16a5f8b02da615b5c809cdf7124f356a0f182eccd", - "sha256:45a619d5c1915957449264c81c008934452e3fd3604e36809212300b2a4dab68", - "sha256:49f90f147883a0c3778fd29d3eb169d56416f25758d0f66775db9184debc8010", - "sha256:571b5a758baf1cb6a04233fb23d6cf1ca60b31f9f641b1700bfaab1194020555", - "sha256:5ac381e8b1259925287ccc5a87d9cf6322a2dc88ae28a97fe3e196385288413f", - "sha256:6153db744a743c0c8c91b8e3b9d40e0b13a5d31dbf8a12748c6d9bfd3ddc01ad", - "sha256:6fd63afd14a16f5d6b408f623cc2142917a1f92855f0df997e09a49f0341be8a", - "sha256:70acbcaba2a638923c2d337e0edea210505708d7859b87c2bd81e8f9902ae826", - "sha256:70b1594d56ed32d56ed21a7fbb2a5c6fd7446cdb7b21e749c9791eac3a64d9e4", - "sha256:76638865c83b1bb33bcac2a61ce4d13c17dba2204969dedb9ab60ef62bede686", - "sha256:7b2ec162c87fc496aa568258ac88631a2ce0acfe681a9af40842fc55deaedc99", - "sha256:7cee2cef07c8d76894ebefc54e4bb707dfc7f258ad155bd61d87f6cd487a70ff", - "sha256:7d16d4498f8b374fc625c4037742fbdd7f9ac383fd50b06f4df00c81ef60e829", - "sha256:b50bc1780681b127e28f0075dfb81d6135c3a293e0c1d0211133c75e2179b6c0", - "sha256:bd0582f831ad5bcad6ca001deba4568573a4675437db17c4031939156ff339fa", - "sha256:cfd40d8a4b59f7567620410f966bb1f32dc555b2b19f82a91b147fac296f645c", - "sha256:e3ae410089de680e8f84c68b755b42bc42c0ceb8c03dbea88a5099747091d38e", - "sha256:e9046e559c299b395b39ac7dbf16005308821c2f24a63cae2ab173bd6aa11616", - "sha256:ef6be704ae2bc8ad0ebc5cb850ee9139493b0fc4e81abcc240fb392a63ebc808", - "sha256:f8dc19d92896558f9c4317ee365729ead9d7bbcf2052a9a19a3ef17abbb8ac5b" - ], - "index": "pypi", - "version": "==6.1.0" + "sha256:047d9473cf68af50ac85f8ee5d5f21a60f849bc17d348da7fc85711287a75031", + "sha256:0f66dc6c8a3cc319561a633b6aa82c44107f12594643efa37210d8c924fc1c71", + "sha256:12c9169c4e8fe0a7329e8658c7e488001f6b4c8e88740e76292c2b857af2e94c", + "sha256:248cffc168896982f125f5c13e9317c059f74fffdb4152893339f3be62a01340", + "sha256:27faf0552bf8c260a5cee21a76e031acaea68babb64daf7e8f2e2540745082aa", + "sha256:285edafad9bc60d96978ed24d77cdc0b91dace88e5da8c548ba5937c425bca8b", + "sha256:384b12c9aa8ef95558abdcb50aada56d74bc7cc131dd62d28c2d0e4d3aadd573", + "sha256:38950b3a707f6cef09cd3cbb142474357ad1a985ceb44d921bdf7b4647b3e13e", + "sha256:4aad1b88933fd6dc2846552b89ad0c74ddbba2f0884e2c162aa368374bf5abab", + "sha256:4ac6148008c169603070c092e81f88738f1a0c511e07bd2bb0f9ef542d375da9", + "sha256:4deb1d2a45861ae6f0b12ea0a786a03d19d29edcc7e05775b85ec2877cb54c5e", + "sha256:59aa2c124df72cc75ed72c8d6005c442d4685691a30c55321e00ed915ad1a291", + "sha256:5a47d2123a9ec86660fe0e8d0ebf0aa6bc6a17edc63f338b73ea20ba11713f12", + "sha256:5cc901c2ab9409b4b7ac7b5bcc3e86ac14548627062463da0af3b6b7c555a871", + "sha256:6c1db03e8dff7b9f955a0fb9907eb9ca5da75b5ce056c0c93d33100a35050281", + "sha256:7ce80c0a65a6ea90ef9c1f63c8593fcd2929448613fc8da0adf3e6bfad669d08", + "sha256:809c19241c14433c5d6135e1b6c72da4e3b56d5c865ad5736ab99af8896b8f41", + "sha256:83792cb4e0b5af480588601467c0764242b9a483caea71ef12d22a0d0d6bdce2", + "sha256:846fa202bd7ee0f6215c897a1d33238ef071b50766339186687bd9b7a6d26ac5", + "sha256:9f5529fc02009f96ba95bea48870173426879dc19eec49ca8e08cd63ecd82ddb", + "sha256:a423c2ea001c6265ed28700df056f75e26215fd28c001e93ef4380b0f05f9547", + "sha256:ac4428094b42907aba5879c7c000d01c8278d451a3b7cccd2103e21f6397ea75", + "sha256:b1ae48d87f10d1384e5beecd169c77502fcc04a2c00a4c02b85f0a94b419e5f9", + "sha256:bf4e972a88f8841d8fdc6db1a75e0f8d763e66e3754b03006cbc3854d89f1cb1", + "sha256:c6414f6aad598364aaf81068cabb077894eb88fed99c6a65e6e8217bab62ae7a", + "sha256:c710fcb7ee32f67baf25aa9ffede4795fd5d93b163ce95fdc724383e38c9df96", + "sha256:c7be4b8a09852291c3c48d3c25d1b876d2494a0a674980089ac9d5e0d78bd132", + "sha256:c9e5ffb910b14f090ac9c38599063e354887a5f6d7e6d26795e916b4514f2c1a", + "sha256:e0697b826da6c2472bb6488db4c0a7fa8af0d52fa08833ceb3681358914b14e5", + "sha256:e9a3edd5f714229d41057d56ac0f39ad9bdba6767e8c888c951869f0bdd129b0" + ], + "index": "pypi", + "version": "==6.2.1" }, "progressbar2": { "hashes": [ - "sha256:39a987c263401d94e687869562c0943e6f9bfaa3215aebda180dfa935be72e38", - "sha256:87a403d2f80f6e48b7b55559feae5c75b903941f55189b22207b574fe5e62276" + "sha256:7538d02045a1fd3aa2b2834bfda463da8755bd3ff050edc6c5ddff3bc616215f", + "sha256:eb774d1e0d03ea4730f381c13c2c6ae7abb5ddfb14d8321d7a58a61aa708f0d0" ], - "version": "==3.43.1" + "version": "==3.47.0" }, "psycopg2": { "hashes": [ - "sha256:128d0fa910ada0157bba1cb74a9c5f92bb8a1dca77cf91a31eb274d1f889e001", - "sha256:227fd46cf9b7255f07687e5bde454d7d67ae39ca77e170097cdef8ebfc30c323", - "sha256:2315e7f104681d498ccf6fd70b0dba5bce65d60ac92171492bfe228e21dcc242", - "sha256:4b5417dcd2999db0f5a891d54717cfaee33acc64f4772c4bc574d4ff95ed9d80", - "sha256:640113ddc943522aaf71294e3f2d24013b0edd659b7820621492c9ebd3a2fb0b", - "sha256:897a6e838319b4bf648a574afb6cabcb17d0488f8c7195100d48d872419f4457", - "sha256:8dceca81409898c870e011c71179454962dec152a1a6b86a347f4be74b16d864", - "sha256:b1b8e41da09a0c3ef0b3d4bb72da0dde2abebe583c1e8462973233fd5ad0235f", - "sha256:cb407fccc12fc29dc331f2b934913405fa49b9b75af4f3a72d0f50f57ad2ca23", - "sha256:d3a27550a8185e53b244ad7e79e307594b92fede8617d80200a8cce1fba2c60f", - "sha256:f0e6b697a975d9d3ccd04135316c947dd82d841067c7800ccf622a8717e98df1" + "sha256:47fc642bf6f427805daf52d6e52619fe0637648fe27017062d898f3bf891419d", + "sha256:72772181d9bad1fa349792a1e7384dde56742c14af2b9986013eb94a240f005b", + "sha256:8396be6e5ff844282d4d49b81631772f80dabae5658d432202faf101f5283b7c", + "sha256:893c11064b347b24ecdd277a094413e1954f8a4e8cdaf7ffbe7ca3db87c103f0", + "sha256:965c4c93e33e6984d8031f74e51227bd755376a9df6993774fd5b6fb3288b1f4", + "sha256:9ab75e0b2820880ae24b7136c4d230383e07db014456a476d096591172569c38", + "sha256:b0845e3bdd4aa18dc2f9b6fb78fbd3d9d371ad167fd6d1b7ad01c0a6cdad4fc6", + "sha256:dca2d7203f0dfce8ea4b3efd668f8ea65cd2b35112638e488a4c12594015f67b", + "sha256:ed686e5926929887e2c7ae0a700e32c6129abb798b4ad2b846e933de21508151", + "sha256:ef6df7e14698e79c59c7ee7cf94cd62e5b869db369ed4b1b8f7b729ea825712a", + "sha256:f898e5cc0a662a9e12bde6f931263a1bbd350cfb18e1d5336a12927851825bb6" ], - "version": "==2.8.3" + "version": "==2.8.4" }, "psycopg2-binary": { "hashes": [ - "sha256:080c72714784989474f97be9ab0ddf7b2ad2984527e77f2909fcd04d4df53809", - "sha256:110457be80b63ff4915febb06faa7be002b93a76e5ba19bf3f27636a2ef58598", - "sha256:171352a03b22fc099f15103959b52ee77d9a27e028895d7e5fde127aa8e3bac5", - "sha256:19d013e7b0817087517a4b3cab39c084d78898369e5c46258aab7be4f233d6a1", - "sha256:249b6b21ae4eb0f7b8423b330aa80fab5f821b9ffc3f7561a5e2fd6bb142cf5d", - "sha256:2ac0731d2d84b05c7bb39e85b7e123c3a0acd4cda631d8d542802c88deb9e87e", - "sha256:2b6d561193f0dc3f50acfb22dd52ea8c8dfbc64bcafe3938b5f209cc17cb6f00", - "sha256:2bd23e242e954214944481124755cbefe7c2cf563b1a54cd8d196d502f2578bf", - "sha256:3e1239242ca60b3725e65ab2f13765fc199b03af9eaf1b5572f0e97bdcee5b43", - "sha256:3eb70bb697abbe86b1d2b1316370c02ba320bfd1e9e35cf3b9566a855ea8e4e5", - "sha256:51a2fc7e94b98bd1bb5d4570936f24fc2b0541b63eccadf8fdea266db8ad2f70", - "sha256:52f1bdafdc764b7447e393ed39bb263eccb12bfda25a4ac06d82e3a9056251f6", - "sha256:5b3581319a3951f1e866f4f6c5e42023db0fae0284273b82e97dfd32c51985cd", - "sha256:63c1b66e3b2a3a336288e4bcec499e0dc310cd1dceaed1c46fa7419764c68877", - "sha256:8123a99f24ecee469e5c1339427bcdb2a33920a18bb5c0d58b7c13f3b0298ba3", - "sha256:85e699fcabe7f817c0f0a412d4e7c6627e00c412b418da7666ff353f38e30f67", - "sha256:8dbff4557bbef963697583366400822387cccf794ccb001f1f2307ed21854c68", - "sha256:908d21d08d6b81f1b7e056bbf40b2f77f8c499ab29e64ec5113052819ef1c89b", - "sha256:af39d0237b17d0a5a5f638e9dffb34013ce2b1d41441fd30283e42b22d16858a", - "sha256:af51bb9f055a3f4af0187149a8f60c9d516cf7d5565b3dac53358796a8fb2a5b", - "sha256:b2ecac57eb49e461e86c092761e6b8e1fd9654dbaaddf71a076dcc869f7014e2", - "sha256:cd37cc170678a4609becb26b53a2bc1edea65177be70c48dd7b39a1149cabd6e", - "sha256:d17e3054b17e1a6cb8c1140f76310f6ede811e75b7a9d461922d2c72973f583e", - "sha256:d305313c5a9695f40c46294d4315ed3a07c7d2b55e48a9010dad7db7a66c8b7f", - "sha256:dd0ef0eb1f7dd18a3f4187226e226a7284bda6af5671937a221766e6ef1ee88f", - "sha256:e1adff53b56db9905db48a972fb89370ad5736e0450b96f91bcf99cadd96cfd7", - "sha256:f0d43828003c82dbc9269de87aa449e9896077a71954fbbb10a614c017e65737", - "sha256:f78e8b487de4d92640105c1389e5b90be3496b1d75c90a666edd8737cc2dbab7" - ], - "index": "pypi", - "version": "==2.8.3" + "sha256:040234f8a4a8dfd692662a8308d78f63f31a97e1c42d2480e5e6810c48966a29", + "sha256:086f7e89ec85a6704db51f68f0dcae432eff9300809723a6e8782c41c2f48e03", + "sha256:18ca813fdb17bc1db73fe61b196b05dd1ca2165b884dd5ec5568877cabf9b039", + "sha256:19dc39616850342a2a6db70559af55b22955f86667b5f652f40c0e99253d9881", + "sha256:2166e770cb98f02ed5ee2b0b569d40db26788e0bf2ec3ae1a0d864ea6f1d8309", + "sha256:3a2522b1d9178575acee4adf8fd9f979f9c0449b00b4164bb63c3475ea6528ed", + "sha256:3aa773580f85a28ffdf6f862e59cb5a3cc7ef6885121f2de3fca8d6ada4dbf3b", + "sha256:3b5deaa3ee7180585a296af33e14c9b18c218d148e735c7accf78130765a47e3", + "sha256:407af6d7e46593415f216c7f56ba087a9a42bd6dc2ecb86028760aa45b802bd7", + "sha256:4c3c09fb674401f630626310bcaf6cd6285daf0d5e4c26d6e55ca26a2734e39b", + "sha256:4c6717962247445b4f9e21c962ea61d2e884fc17df5ddf5e35863b016f8a1f03", + "sha256:50446fae5681fc99f87e505d4e77c9407e683ab60c555ec302f9ac9bffa61103", + "sha256:5057669b6a66aa9ca118a2a860159f0ee3acf837eda937bdd2a64f3431361a2d", + "sha256:5dd90c5438b4f935c9d01fcbad3620253da89d19c1f5fca9158646407ed7df35", + "sha256:659c815b5b8e2a55193ede2795c1e2349b8011497310bb936da7d4745652823b", + "sha256:69b13fdf12878b10dc6003acc8d0abf3ad93e79813fd5f3812497c1c9fb9be49", + "sha256:7a1cb80e35e1ccea3e11a48afe65d38744a0e0bde88795cc56a4d05b6e4f9d70", + "sha256:7e6e3c52e6732c219c07bd97fff6c088f8df4dae3b79752ee3a817e6f32e177e", + "sha256:7f42a8490c4fe854325504ce7a6e4796b207960dabb2cbafe3c3959cb00d1d7e", + "sha256:84156313f258eafff716b2961644a4483a9be44a5d43551d554844d15d4d224e", + "sha256:8578d6b8192e4c805e85f187bc530d0f52ba86c39172e61cd51f68fddd648103", + "sha256:890167d5091279a27e2505ff0e1fb273f8c48c41d35c5b92adbf4af80e6b2ed6", + "sha256:9aadff9032e967865f9778485571e93908d27dab21d0fdfdec0ca779bb6f8ad9", + "sha256:9f24f383a298a0c0f9b3113b982e21751a8ecde6615494a3f1470eb4a9d70e9e", + "sha256:a73021b44813b5c84eda4a3af5826dd72356a900bac9bd9dd1f0f81ee1c22c2f", + "sha256:afd96845e12638d2c44d213d4810a08f4dc4a563f9a98204b7428e567014b1cd", + "sha256:b73ddf033d8cd4cc9dfed6324b1ad2a89ba52c410ef6877998422fcb9c23e3a8", + "sha256:dbc5cd56fff1a6152ca59445178652756f4e509f672e49ccdf3d79c1043113a4", + "sha256:eac8a3499754790187bb00574ab980df13e754777d346f85e0ff6df929bcd964", + "sha256:eaed1c65f461a959284649e37b5051224f4db6ebdc84e40b5e65f2986f101a08" + ], + "index": "pypi", + "version": "==2.8.4" }, "py-mini-racer": { "hashes": [ @@ -481,10 +486,10 @@ }, "pytz": { "hashes": [ - "sha256:26c0b32e437e54a18161324a2fca3c4b9846b74a8dccddd843113109e1116b32", - "sha256:c894d57500a4cd2d5c71114aaab77dbab5eabd9022308ce5ac9bb93a60a6f0c7" + "sha256:1c557d7d0e871de1f5ccd5833f60fb2550652da6be2693c1e02300743d21500d", + "sha256:b02c06db6cf09c12dd25137e563b31700d3b80fcc4ad23abb7a315f2789819be" ], - "version": "==2019.2" + "version": "==2019.3" }, "pyyaml": { "hashes": [ @@ -542,20 +547,20 @@ }, "sq-native": { "hashes": [ - "sha256:00fea938ea80eb52848651f2a3b972e75d2f7508058822e11b3d9f81b82db132", - "sha256:0a5f4c7b24ea7326fd72fe70693dcb81eb2713d950b97d0c276cc4cf6fd7652d", - "sha256:0ab07582c635f3917c0feea174cecb76ffc7bc6508eab7db60f6e63630ece092", - "sha256:1298a8664868e8fca240e8079575ea9ccfa97bc476876eee23443da7144c1e52", - "sha256:175e82e5d2b619001db713ba574a413a1cfee4a2630f6a0670477e38b3885115", - "sha256:1bd6551fe275d0099e4d993709adfc6ca99bf5277a05313028d5f861e86bdd6d", - "sha256:2e2ee60aed1f000d378948445bb4d6c4ae6129da8ea3c999e76c49ce6a271d83", - "sha256:62f1aa85d0333263c0507f676bfe016f18393684c1e9cff250a38dce37de7731", - "sha256:72f1bb22b2c4a38976cea01944071bed48c0e736a96be38f6fcdb8aa4948cf6f", - "sha256:c524ddfbc558e18960581087892e0bb1150429a6bcd8c1804843dceee5caf3ab", - "sha256:e05eb3545b437433b25758cfcabc8e2355689e72999e85135fea9f50debd8e54", - "sha256:ff7de27d8e7b591f41e0df5477cabf95e1cd531280150d388981e23e2fd5e3ef" - ], - "version": "==0.4" + "sha256:034f2939656a91c3495b4401d2785846b7a6d4561db6e869c80dc3a89c706384", + "sha256:0c8ea02f665269e5a3ccac397dbf4964836a0df76b458c5b5c1c35279c99be47", + "sha256:2784dd6594ca2000de46f0552e0fd27818c6a2ccdac8e7bbd0e3321da3c3cdee", + "sha256:61fba25ec6b069a520f9ab667f5da6862405042e302dab61c1c5f4a2c1f227e5", + "sha256:6bda4f761434181105ba1f1b8f032da975f5c52f4482c928690865d2b0f531b7", + "sha256:7bcbc4eaa85fcf0e28271bb074fc5920632ffd295c09b359990f8cbf980a6f7c", + "sha256:8ac730812ce8020245b2a157d3146a7f2a2d36a11e35fdae9d62aa5236f5c971", + "sha256:b8d06e4517d0397339833e91efb1dd68697de098299aa17f7ded8c6042024b65", + "sha256:bd29846f62cf4de921de8f74647fe810d32bd43741fd39a4ef29e0fa22692178", + "sha256:c0a24a76fb75e5de21ca276a5a2282c3dc8ec56a3f58fc8f7039719cf04ac32d", + "sha256:c37c3cd60a9fd01ac2fb010cfabc54a5d13a6876b32a9cb0c7ce63288c2bfe14", + "sha256:fb9339ad7915d009d20fea6bc03338f9acbf5fd19aea455ee582a8d3ae4306e6" + ], + "version": "==0.4.4" }, "sqlparse": { "hashes": [ @@ -566,40 +571,40 @@ }, "sqreen": { "hashes": [ - "sha256:2577f0c60caa81b6a8b3568d37e3129a39bfc2aa193a00332d76fd776ce736e0", - "sha256:74c74dc06628a5bc07669398544fcc326151cfaa52f9df4878f67abc9108123a" + "sha256:a39dbcf97a5260dd1ff6f71e1fd6074612a83118a26677574488be23f86b8f3c", + "sha256:db147d7a55b4a2d57d9151e58848315c28987c4e303025d7ccc0e4623d3f4dae" ], "index": "pypi", - "version": "==1.15.2" + "version": "==1.16.1" }, "tablib": { "hashes": [ - "sha256:0f88a9cebdaa1a2cc29ae57387082ee81015d1149ecd34e48a8c8d3b4dd21670", - "sha256:5f33c079b07eb10cf9c4b4696add2ecf32c89db7729240546ecdcd5c92f67e13" + "sha256:00654241e5beee437ba544e4fa4abef70ccec3668503aa95406c1250bb660770", + "sha256:6336e7aa3f0e5894b47270a3dc639cc2e78eb823c7ccb8c4512fb408cdc18d08" ], - "version": "==0.13.0" + "version": "==0.14.0" }, "text-unidecode": { "hashes": [ - "sha256:5a1375bb2ba7968740508ae38d92e1f889a0832913cb1c447d5e2046061a396d", - "sha256:801e38bd550b943563660a91de8d4b6fa5df60a542be9093f7abf819f86050cc" + "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8", + "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93" ], - "version": "==1.2" + "version": "==1.3" }, "urllib3": { "hashes": [ - "sha256:b246607a25ac80bedac05c6f282e3cdaf3afb65420fd024ac94435cabe6e18d1", - "sha256:dbe59173209418ae49d485b87d1681aefa36252ee85884c31346debd19463232" + "sha256:3de946ffbed6e6746608990594d08faac602528ac7015ac28d33cee6a45b7398", + "sha256:9a107b99a5393caf59c7aa3c1249c16e6879447533d0887f4336dde834c7be86" ], "markers": "python_version >= '3.4'", - "version": "==1.25.3" + "version": "==1.25.6" }, "whitenoise": { "hashes": [ - "sha256:59d880d25d0e90bcc6554fe0504a11195bd2e59b3d690b6fb42a8040d4e67ef5", - "sha256:c9b7c47fdc1dba4d37bf2787a01a844dc7a521e174fcd22a2d429e0be65e1782" + "sha256:22f79cf8f1f509639330f93886acaece8ec5ac5e9600c3b981d33c34e8a42dfd", + "sha256:6dfea214b7c12efd689007abf9afa87a426586e9dbc051873ad2c8e535e2a1ac" ], - "version": "==4.1.3" + "version": "==4.1.4" }, "xlrd": { "hashes": [ @@ -619,10 +624,10 @@ "develop": { "astroid": { "hashes": [ - "sha256:6560e1e1749f68c64a4b5dee4e091fce798d2f0d84ebe638cf0e0585a343acf4", - "sha256:b65db1bbaac9f9f4d190199bb8680af6f6f84fd3769a5ea883df8a91fe68b4c4" + "sha256:09a3fba616519311f1af8a461f804b68f0370e100c9264a035aa7846d7852e33", + "sha256:5a79c9b4bd6c4be777424593f957c996e20beb5f74e0bc332f47713c6f675efe" ], - "version": "==2.2.5" + "version": "==2.3.2" }, "autopep8": { "hashes": [ @@ -677,11 +682,11 @@ }, "pylint": { "hashes": [ - "sha256:5d77031694a5fb97ea95e828c8d10fc770a1df6eb3906067aaed42201a8a6a09", - "sha256:723e3db49555abaf9bf79dc474c6b9e2935ad82230b10c1138a71ea41ac0fff1" + "sha256:7b76045426c650d2b0f02fc47c14d7934d17898779da95288a74c2a7ec440702", + "sha256:856476331f3e26598017290fd65bebe81c960e806776f324093a46b76fb2d1c0" ], "index": "pypi", - "version": "==2.3.1" + "version": "==2.4.3" }, "six": { "hashes": [ @@ -692,23 +697,28 @@ }, "typed-ast": { "hashes": [ + "sha256:1170afa46a3799e18b4c977777ce137bb53c7485379d9706af8a59f2ea1aa161", "sha256:18511a0b3e7922276346bcb47e2ef9f38fb90fd31cb9223eed42c85d1312344e", "sha256:262c247a82d005e43b5b7f69aff746370538e176131c32dda9cb0f324d27141e", "sha256:2b907eb046d049bcd9892e3076c7a6456c93a25bebfe554e931620c90e6a25b0", "sha256:354c16e5babd09f5cb0ee000d54cfa38401d8b8891eefa878ac772f827181a3c", + "sha256:48e5b1e71f25cfdef98b013263a88d7145879fbb2d5185f2a0c79fa7ebbeae47", "sha256:4e0b70c6fc4d010f8107726af5fd37921b666f5b31d9331f0bd24ad9a088e631", "sha256:630968c5cdee51a11c05a30453f8cd65e0cc1d2ad0d9192819df9978984529f4", "sha256:66480f95b8167c9c5c5c87f32cf437d585937970f3fc24386f313a4c97b44e34", "sha256:71211d26ffd12d63a83e079ff258ac9d56a1376a25bc80b1cdcdf601b855b90b", + "sha256:7954560051331d003b4e2b3eb822d9dd2e376fa4f6d98fee32f452f52dd6ebb2", + "sha256:838997f4310012cf2e1ad3803bce2f3402e9ffb71ded61b5ee22617b3a7f6b6e", "sha256:95bd11af7eafc16e829af2d3df510cecfd4387f6453355188342c3e79a2ec87a", "sha256:bc6c7d3fa1325a0c6613512a093bc2a2a15aeec350451cbdf9e1d4bffe3e3233", "sha256:cc34a6f5b426748a507dd5d1de4c1978f2eb5626d51326e43280941206c209e1", "sha256:d755f03c1e4a51e9b24d899561fec4ccaf51f210d52abdf8c07ee2849b212a36", "sha256:d7c45933b1bdfaf9f36c579671fec15d25b06c8398f113dab64c18ed1adda01d", "sha256:d896919306dd0aa22d0132f62a1b78d11aaf4c9fc5b3410d3c666b818191630a", + "sha256:fdc1c9bbf79510b76408840e009ed65958feba92a88833cdceecff93ae8fff66", "sha256:ffde2fbfad571af120fcbfbbc61c72469e72f550d676c3342492a9dfdefb8f12" ], - "markers": "implementation_name == 'cpython'", + "markers": "implementation_name == 'cpython' and python_version < '3.8'", "version": "==1.4.0" }, "wrapt": { From a7663b53b5100e40622da9a738c819091782589e Mon Sep 17 00:00:00 2001 From: Ali Karbassi Date: Thu, 24 Oct 2019 17:19:43 -0500 Subject: [PATCH 6/7] Updated "Head Teacher" to "Instructor". --- coderdojochi/admin.py | 2 +- .../0027_instructor_limit_choiced_to.py | 19 +++++++++++++++++++ .../migrations/0028_rename_race_ethnicity.py | 17 +++++++++++++++++ coderdojochi/models.py | 17 +++++++++-------- coderdojochi/social_account_adapter.py | 8 ++++---- coderdojochi/templates/session-detail.html | 4 ++-- coderdojochi/util.py | 7 ++++--- 7 files changed, 56 insertions(+), 18 deletions(-) create mode 100644 coderdojochi/migrations/0027_instructor_limit_choiced_to.py create mode 100644 coderdojochi/migrations/0028_rename_race_ethnicity.py diff --git a/coderdojochi/admin.py b/coderdojochi/admin.py index 13213b8c..c0bf247f 100644 --- a/coderdojochi/admin.py +++ b/coderdojochi/admin.py @@ -549,7 +549,7 @@ class SessionAdmin(ImportExportMixin, ImportExportActionModelAdmin): autocomplete_fields = [ 'course', 'location', - 'instructor', + # 'instructor', ] search_fields = [ diff --git a/coderdojochi/migrations/0027_instructor_limit_choiced_to.py b/coderdojochi/migrations/0027_instructor_limit_choiced_to.py new file mode 100644 index 00000000..4f67a268 --- /dev/null +++ b/coderdojochi/migrations/0027_instructor_limit_choiced_to.py @@ -0,0 +1,19 @@ +# Generated by Django 2.2.6 on 2019-10-24 22:00 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('coderdojochi', '0026_teacher_to_instructor'), + ] + + operations = [ + migrations.AlterField( + model_name='session', + name='instructor', + field=models.ForeignKey(limit_choices_to={'user__groups__name': 'Instructor'}, on_delete=django.db.models.deletion.CASCADE, related_name='session_instructor', to='coderdojochi.Mentor'), + ), + ] diff --git a/coderdojochi/migrations/0028_rename_race_ethnicity.py b/coderdojochi/migrations/0028_rename_race_ethnicity.py new file mode 100644 index 00000000..832b1859 --- /dev/null +++ b/coderdojochi/migrations/0028_rename_race_ethnicity.py @@ -0,0 +1,17 @@ +# Generated by Django 2.2.6 on 2019-10-24 22:01 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('coderdojochi', '0027_instructor_limit_choiced_to'), + ] + + operations = [ + migrations.AlterModelOptions( + name='raceethnicity', + options={'verbose_name': 'Race/Ethnicity', 'verbose_name_plural': 'Race/Ethnicities'}, + ), + ] diff --git a/coderdojochi/models.py b/coderdojochi/models.py index 773d8f84..c70490a8 100644 --- a/coderdojochi/models.py +++ b/coderdojochi/models.py @@ -12,13 +12,14 @@ from stdimage.models import StdImageField -ROLE_CHOICES = ( - ('mentor', 'mentor'), - ('guardian', 'guardian'), -) - class CDCUser(AbstractUser): + + ROLE_CHOICES = ( + ('mentor', 'mentor'), + ('guardian', 'guardian'), + ) + role = models.CharField( choices=ROLE_CHOICES, max_length=10, @@ -54,8 +55,8 @@ class RaceEthnicity(models.Model): ) class Meta: - verbose_name = _("race ethnicity") - verbose_name_plural = _("race ethnicities") + verbose_name = _("Race/Ethnicity") + verbose_name_plural = _("Race/Ethnicities") def __str__(self): return self.race_ethnicity @@ -483,7 +484,7 @@ class Session(models.Model): Mentor, on_delete=models.CASCADE, related_name="session_instructor", - limit_choices_to={''} + limit_choices_to={'user__groups__name': "Instructor"}, ) waitlist_mentors = models.ManyToManyField( Mentor, diff --git a/coderdojochi/social_account_adapter.py b/coderdojochi/social_account_adapter.py index c5ccaafe..f052a56a 100644 --- a/coderdojochi/social_account_adapter.py +++ b/coderdojochi/social_account_adapter.py @@ -1,7 +1,7 @@ from allauth.socialaccount.adapter import DefaultSocialAccountAdapter +from django.contrib.auth import get_user_model -from coderdojochi.models import CDCUser - +User = get_user_model() class SocialAccountAdapter(DefaultSocialAccountAdapter): def pre_social_login(self, request, sociallogin): @@ -33,10 +33,10 @@ def pre_social_login(self, request, sociallogin): # email = sociallogin.account.extra_data['email'].lower() # email_address = EmailAddress.objects.get(email__iexact=email) email = sociallogin.account.extra_data['email'].lower() - user = CDCUser.objects.get(email__iexact=email) + user = User.objects.get(email__iexact=email) # if it does not, let allauth take care of this new social account - except CDCUser.DoesNotExist: + except User.DoesNotExist: return # if it does, connect this new social login to the existing user diff --git a/coderdojochi/templates/session-detail.html b/coderdojochi/templates/session-detail.html index 444c325c..306fc6d9 100644 --- a/coderdojochi/templates/session-detail.html +++ b/coderdojochi/templates/session-detail.html @@ -142,10 +142,10 @@
    About the instructor
    - Photo of session.instructor.user.first_name }} {{ session.instructor.last_name }} + Photo of session.instructor }}
    -

    {{ session.instructor.user.first_name }} {{ session.instructor.last_name }}

    +

    {{ session.instructor }}

    {{ session.instructor.bio|truncatechars:120 }}

    Learn more about {{ session.instructor.user.first_name }}.

    diff --git a/coderdojochi/util.py b/coderdojochi/util.py index d06eeef9..0a8ff48c 100644 --- a/coderdojochi/util.py +++ b/coderdojochi/util.py @@ -1,6 +1,7 @@ import logging from django.conf import settings +from django.contrib.auth import get_user_model from django.core.mail import EmailMultiAlternatives from django.template.loader import render_to_string from django.utils import timezone @@ -10,6 +11,8 @@ logger = logging.getLogger(__name__) +User = get_user_model() + def email( subject, @@ -98,14 +101,12 @@ def email( f"user: {recipient}, {timezone.now()}" ) - from coderdojochi.models import CDCUser - user = CDCUser.objects.get(email=recipient) + user = User.objects.get(email=recipient) user.is_active = False user.admin_notes = f"User '{send_attempt.reject_reason}' when checked on {timezone.now()}" user.save() - def batches(l, n): for i in range(0, len(l), n): yield l[i:i + n] From 50a91c8e9930106086f77986d82298d64e544f04 Mon Sep 17 00:00:00 2001 From: Ali Karbassi Date: Thu, 24 Oct 2019 17:23:48 -0500 Subject: [PATCH 7/7] typo --- coderdojochi/templates/faqs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coderdojochi/templates/faqs.html b/coderdojochi/templates/faqs.html index caecb4a3..055fba00 100644 --- a/coderdojochi/templates/faqs.html +++ b/coderdojochi/templates/faqs.html @@ -26,7 +26,7 @@

    What level of code you are offering at classes?

    Our Dojo develops content to suit the students and mentors in attendance. We All Code recommends HTML as a good starting point to demonstrate to kids that they can actually create content. This will encourage progression into more complex programming with functions/loops/variables etc.

    Who are the volunteers?

    -

    Volunteers include parents, instructors, and programmers from the industry who are enthusiastic about helping kids to develop their coding skills.

    +

    Volunteers include parents, teachers, and programmers from the industry who are enthusiastic about helping kids to develop their coding skills.

    Can I stay with my child during the class?

    Yes! We highly encourage parents to stay with their children throughout the process. This allows everyone to learn something new and amazing!