repo
stringclasses
856 values
pull_number
int64
3
127k
instance_id
stringlengths
12
58
issue_numbers
sequencelengths
1
5
base_commit
stringlengths
40
40
patch
stringlengths
67
1.54M
test_patch
stringlengths
0
107M
problem_statement
stringlengths
3
307k
hints_text
stringlengths
0
908k
created_at
timestamp[s]
e-valuation/EvaP
701
e-valuation__EvaP-701
[ "576" ]
528564eff2021282aa7c39f29365321b406573d9
diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -4,6 +4,7 @@ from django.utils.translation import ugettext_lazy as _ from django.utils.text import normalize_newlines from django.core.exceptions import ValidationError +from django.contrib.auth.models import Group from evap.evaluation.forms import BootstrapMixin, QuestionnaireMultipleChoiceField from evap.evaluation.models import Contribution, Course, Question, Questionnaire, \ @@ -318,6 +319,8 @@ def __init__(self, *args, **kwargs): class UserForm(forms.ModelForm, BootstrapMixin): + is_staff = forms.BooleanField(required=False, label=_("Staff user")) + is_grade_user = forms.BooleanField(required=False, label=_("Grade user")) courses_participating_in = forms.ModelMultipleChoiceField(None) class Meta: @@ -333,6 +336,8 @@ def __init__(self, *args, **kwargs): self.fields['courses_participating_in'].initial = courses_of_current_semester.filter(participants=self.instance) if self.instance.pk else () self.fields['courses_participating_in'].label = _("Courses participating in (active semester)") self.fields['courses_participating_in'].required = False + self.fields['is_staff'].initial = self.instance.is_staff + self.fields['is_grade_user'].initial = self.instance.is_grade_publisher def clean_username(self): username = self.cleaned_data.get('username') @@ -361,6 +366,18 @@ def clean_email(self): def save(self, *args, **kw): super().save(*args, **kw) self.instance.course_set = list(self.instance.course_set.exclude(semester=Semester.active_semester())) + list(self.cleaned_data.get('courses_participating_in')) + + staff_group = Group.objects.get(name="Staff") + grade_user_group = Group.objects.get(name="Grade publisher") + if self.cleaned_data.get('is_staff'): + self.instance.groups.add(staff_group) + else: + self.instance.groups.remove(staff_group) + + if self.cleaned_data.get('is_grade_user'): + self.instance.groups.add(grade_user_group) + else: + self.instance.groups.remove(grade_user_group) class LotteryForm(forms.Form, BootstrapMixin):
Staff field on user page is missing The user edit page does not have a staff field anymore. Superusers should be able to add or remove the group there.
superusers can use the admin pages to change group memberships, so this is really not important. Same goes for Grade Users.
2016-01-04T21:20:50
e-valuation/EvaP
712
e-valuation__EvaP-712
[ "133", "133" ]
25e5c371a7b6f72728ca4d0607447d6dd7cc7494
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -268,7 +268,7 @@ def has_enough_questionnaires(self): def can_user_vote(self, user): """Returns whether the user is allowed to vote on this course.""" return (self.state == "inEvaluation" - and self.is_in_evaluation_period + and self.is_in_evaluation_period() and user in self.participants.all() and user not in self.voters.all()) diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -17,6 +17,11 @@ logger = logging.getLogger(__name__) +def disable_all_fields(form): + for field in form.fields.values(): + field.disabled = True + + class ImportForm(forms.Form, BootstrapMixin): vote_start_date = forms.DateField(label=_("First day of evaluation"), localize=True) vote_end_date = forms.DateField(label=_("Last day of evaluation"), localize=True) @@ -107,6 +112,10 @@ def __init__(self, *args, **kwargs): if self.instance.state in ['inEvaluation', 'evaluated', 'reviewed']: self.fields['vote_start_date'].disabled = True + if not self.instance.can_staff_edit: + # form is used as read-only course view + disable_all_fields(self) + def clean(self): super().clean() vote_start_date = self.cleaned_data.get('vote_start_date') @@ -151,6 +160,9 @@ def __init__(self, *args, **kwargs): if self.instance.vote_start_date: self.fields['event_date'].initial = self.instance.vote_start_date + if not self.instance.can_staff_edit: + disable_all_fields(self) + if self.instance.pk: self.fields['responsible'].initial = self.instance.responsible_contributor answer_counts = dict() @@ -222,6 +234,10 @@ def __init__(self, *args, **kwargs): self.fields['questionnaires'].queryset = Questionnaire.objects.filter(is_for_contributors=True).filter( Q(obsolete=False) | Q(contributions__course=self.course)).distinct() + + if not self.course.can_staff_edit: + # form is used as read-only course view + disable_all_fields(self) def save(self, *args, **kwargs): responsibility = self.cleaned_data['responsibility'] diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -465,12 +465,6 @@ def single_result_create(request, semester_id): def course_edit(request, semester_id, course_id): semester = get_object_or_404(Semester, id=semester_id) course = get_object_or_404(Course, id=course_id) - raise_permission_denied_if_archived(course) - - # check course state - if not course.can_staff_edit: - messages.warning(request, _("Editing not possible in current state.")) - return redirect('staff:semester_view', semester_id) if course.is_single_result(): return helper_single_result_edit(request, semester, course) @@ -490,7 +484,11 @@ def helper_course_edit(request, semester, course): if form.is_valid() and formset.is_valid(): if operation not in ('save', 'approve'): raise SuspiciousOperation("Invalid POST operation") - if course.state in ['evaluated', 'reviewed'] and course.is_in_evaluation_period: + + if not course.can_staff_edit or course.is_archived: + raise SuspiciousOperation("Modifying this course is not allowed.") + + if course.state in ['evaluated', 'reviewed'] and course.is_in_evaluation_period(): course.reopen_evaluation() form.save(user=request.user) formset.save() @@ -506,7 +504,7 @@ def helper_course_edit(request, semester, course): return custom_redirect('staff:semester_view', semester.id) else: sort_formset(request, formset) - template_data = dict(semester=semester, course=course, form=form, formset=formset, staff=True) + template_data = dict(semester=semester, course=course, form=form, formset=formset, staff=True, state=course.state) return render(request, "staff_course_form.html", template_data) @@ -515,6 +513,9 @@ def helper_single_result_edit(request, semester, course): form = SingleResultForm(request.POST or None, instance=course) if form.is_valid(): + if not course.can_staff_edit or course.is_archived: + raise SuspiciousOperation("Modifying this course is not allowed.") + form.save(user=request.user) messages.success(request, _("Successfully created single result."))
diff --git a/evap/staff/tests/tests_general.py b/evap/staff/tests/tests_general.py --- a/evap/staff/tests/tests_general.py +++ b/evap/staff/tests/tests_general.py @@ -364,7 +364,6 @@ def test_redirecting_urls(self): do not return 200 but redirect somewhere else. """ tests = [ - ("test_staff_semester_x_course_y_edit_fail", "/staff/semester/1/course/8/edit", "evap"), ] for _, url, user in tests: @@ -815,7 +814,6 @@ def test_raise_403(self): self.get_assert_403(semester_url + "import", "evap") self.get_assert_403(semester_url + "assign", "evap") self.get_assert_403(semester_url + "course/create", "evap") - self.get_assert_403(semester_url + "course/7/edit", "evap") self.get_assert_403(semester_url + "courseoperation", "evap") def test_course_is_not_archived_if_participant_count_is_set(self):
Course details should be accessible read-only for student representatives in all stages At the moment, for courses which are in one of the states "evaluated", "reviewed" or "published", student representatives cannot see the details (like lecturer, participants, and so on) of this course. It is true that the details of a course MUST NOT be edited in those states. However, it is desirable to have read-only access to this information e.g. to check the list of lecturers and to identify potential permission issues arising from it ("X is proxy of Y, but why can't X access Y's course results? Is Y really the main lecturer [='Dozent' flag]?) Course details should be accessible read-only for student representatives in all stages At the moment, for courses which are in one of the states "evaluated", "reviewed" or "published", student representatives cannot see the details (like lecturer, participants, and so on) of this course. It is true that the details of a course MUST NOT be edited in those states. However, it is desirable to have read-only access to this information e.g. to check the list of lecturers and to identify potential permission issues arising from it ("X is proxy of Y, but why can't X access Y's course results? Is Y really the main lecturer [='Dozent' flag]?)
the fix for #71 will add a "courses contributing to" list to the staff_user_edit page. when fixing this issue here, please make the items in that list a link to the respective course_edit page, which should then be read only for some of the courses. #505 adds archiving functionality. in archived semesters all courses should get a link to open them in read-only mode. @Nef10 do you still want to do this or should i remove your assignment? You can remove my assignment in the meantime all courses that are not in the state `published` can already be opened. so this change is only necessary for this last state. the fix for #71 will add a "courses contributing to" list to the staff_user_edit page. when fixing this issue here, please make the items in that list a link to the respective course_edit page, which should then be read only for some of the courses. #505 adds archiving functionality. in archived semesters all courses should get a link to open them in read-only mode. @Nef10 do you still want to do this or should i remove your assignment? You can remove my assignment in the meantime all courses that are not in the state `published` can already be opened. so this change is only necessary for this last state.
2016-01-18T19:03:58
e-valuation/EvaP
713
e-valuation__EvaP-713
[ "624" ]
653d195c357789e408462e6f9e56d631cb3b50b0
diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -129,14 +129,15 @@ def semester_course_operation(request, semester_id): if request.method == 'POST': course_ids = request.POST.getlist('course_ids') courses = Course.objects.filter(id__in=course_ids) + send_email = request.POST.get('send_email') == 'on' if operation == 'revertToNew': helper_semester_course_operation_revert(request, courses) elif operation == 'prepare' or operation == 'reenableEditorReview': - helper_semester_course_operation_prepare(request, courses) + helper_semester_course_operation_prepare(request, courses, send_email) elif operation == 'approve': helper_semester_course_operation_approve(request, courses) elif operation == 'publish': - helper_semester_course_operation_publish(request, courses) + helper_semester_course_operation_publish(request, courses, send_email) elif operation == 'unpublish': helper_semester_course_operation_unpublish(request, courses) @@ -176,6 +177,7 @@ def semester_course_operation(request, semester_id): operation=operation, current_state_name=current_state_name, new_state_name=new_state_name, + show_email_checkbox=operation in ['prepare', 'reenableEditorReview', 'publish'] ) return render(request, "staff_course_operation.html", template_data) @@ -186,14 +188,14 @@ def helper_semester_course_operation_revert(request, courses): messages.success(request, ungettext("Successfully reverted %(courses)d course to new.", "Successfully reverted %(courses)d courses to new.", len(courses)) % {'courses': len(courses)}) -def helper_semester_course_operation_prepare(request, courses): +def helper_semester_course_operation_prepare(request, courses, send_email): for course in courses: course.ready_for_editors() course.save() messages.success(request, ungettext("Successfully enabled %(courses)d course for editor review.", "Successfully enabled %(courses)d courses for editor review.", len(courses)) % {'courses': len(courses)}) - - EmailTemplate.send_review_notifications(courses) + if send_email: + EmailTemplate.send_review_notifications(courses) def helper_semester_course_operation_approve(request, courses): for course in courses: @@ -202,13 +204,14 @@ def helper_semester_course_operation_approve(request, courses): messages.success(request, ungettext("Successfully approved %(courses)d course.", "Successfully approved %(courses)d courses.", len(courses)) % {'courses': len(courses)}) -def helper_semester_course_operation_publish(request, courses): +def helper_semester_course_operation_publish(request, courses, send_email): for course in courses: course.publish() course.save() messages.success(request, ungettext("Successfully published %(courses)d course.", "Successfully published %(courses)d courses.", len(courses)) % {'courses': len(courses)}) - send_publish_notifications(evaluation_results_courses=courses) + if send_email: + send_publish_notifications(evaluation_results_courses=courses) def helper_semester_course_operation_unpublish(request, courses): for course in courses:
Course state change without sending automated email For some courses (especially D-School courses) staff users need an option to instantly begin the evaluation (out of the state `approved`). Also, no automated message should be sent, because the staff users will send a customized email to all participants of this course. In other cases evaluation results shall be published without notifying all participants (e.g. for feedback questionnaires about special events). It should be possible to change a course's state with explicitly not sending email notifications.
2016-01-18T20:24:44
e-valuation/EvaP
721
e-valuation__EvaP-721
[ "716" ]
4a37faffa6c1ec31eb679dbd6851d9423b2096af
diff --git a/evap/evaluation/views.py b/evap/evaluation/views.py --- a/evap/evaluation/views.py +++ b/evap/evaluation/views.py @@ -2,13 +2,14 @@ from django.contrib.auth import login as auth_login from django.shortcuts import redirect, render from django.utils.translation import ugettext as _ +from django.core.urlresolvers import resolve, Resolver404 from evap.evaluation.forms import NewKeyForm, LoginKeyForm, LoginUsernameForm from evap.evaluation.models import UserProfile, FaqSection, EmailTemplate, Semester def index(request): - """Main entry page into EvaP providing all the login options available. THe username/password + """Main entry page into EvaP providing all the login options available. The username/password login is thought to be used for internal users, e.g. by connecting to a LDAP directory. The login key mechanism is meant to be used to include external participants, e.g. visiting students or visiting contributors. @@ -68,7 +69,12 @@ def index(request): if user.is_participant: return redirect(redirect_to) else: - return redirect(redirect_to) + try: + resolve(redirect_to) + except Resolver404: + pass + else: + return redirect(redirect_to) # redirect user to appropriate start page if request.user.is_staff:
Only internal redirects The platform should only redirect to internal pages after logging in. (handled in `evaluation/views.py index`)
assign me
2016-02-01T18:05:56
e-valuation/EvaP
728
e-valuation__EvaP-728
[ "726" ]
bdc585c9518de62981b75adc7ea2e8cb03045b60
diff --git a/evap/student/views.py b/evap/student/views.py --- a/evap/student/views.py +++ b/evap/student/views.py @@ -76,6 +76,7 @@ def vote(request, course_id): course_form_group=course_form_group, contributor_form_groups=contributor_form_groups, course=course, + participants_warning=course.num_participants <= 5, preview=False) return render(request, "student_vote.html", template_data)
Warning in courses with small number of participants In courses with 5 or less participants a warning should be shown above the course's questionnaire: _This course has only a small number of participants. Please remember that your comments will be visible for the responsible person and the contributors you're evaluating. If two or more people evaluate the course, the results of all voting questions will also be published._
2016-02-07T11:00:57
e-valuation/EvaP
733
e-valuation__EvaP-733
[ "732" ]
d18c8d861a3ee67923e5bde072471bf1cb9ee3c2
diff --git a/evap/staff/tools.py b/evap/staff/tools.py --- a/evap/staff/tools.py +++ b/evap/staff/tools.py @@ -1,5 +1,9 @@ from django.core.urlresolvers import reverse from django.http import HttpResponseRedirect +from django.core.cache import cache +from django.core.cache.utils import make_template_fragment_key + +from evap.evaluation.models import UserProfile import urllib.parse @@ -8,3 +12,11 @@ def custom_redirect(url_name, *args, **kwargs): url = reverse(url_name, args=args) params = urllib.parse.urlencode(kwargs) return HttpResponseRedirect(url + "?%s" % params) + +def delete_navbar_cache(): + # delete navbar cache from base.html + for user in UserProfile.objects.all(): + key = make_template_fragment_key('navbar', [user.username, 'de']) + cache.delete(key) + key = make_template_fragment_key('navbar', [user.username, 'en']) + cache.delete(key) diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -22,7 +22,7 @@ FaqQuestionForm, UserImportForm, TextAnswerForm, DegreeForm, SingleResultForm, \ ExportSheetForm from evap.staff.importers import EnrollmentImporter, UserImporter -from evap.staff.tools import custom_redirect +from evap.staff.tools import custom_redirect, delete_navbar_cache from evap.student.views import vote_preview from evap.student.forms import QuestionsForm @@ -234,6 +234,7 @@ def semester_create(request): if form.is_valid(): semester = form.save() + delete_navbar_cache() messages.success(request, _("Successfully created semester.")) return redirect('staff:semester_view', semester.id) @@ -262,6 +263,7 @@ def semester_delete(request, semester_id): if semester.can_staff_delete: if request.method == 'POST': semester.delete() + delete_navbar_cache() messages.success(request, _("Successfully deleted semester.")) return redirect('staff:index') else:
Update navbar cache When adding or deleting semesters the cache must be refreshed so that the navbar shows the existing semesters. Currently changes are not immediately visible in the navbar because cached entries are used for rendering.
2016-02-13T22:24:54
e-valuation/EvaP
737
e-valuation__EvaP-737
[ "714" ]
911c25610445773962caa51477bbf9e89232e039
diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -124,7 +124,7 @@ def semester_course_operation(request, semester_id): raise_permission_denied_if_archived(semester) operation = request.GET.get('operation') - if operation not in ['revertToNew', 'prepare', 'reenableEditorReview', 'approve', 'publish', 'unpublish']: + if operation not in ['revertToNew', 'prepare', 'reenableEditorReview', 'approve', 'startEvaluation', 'publish', 'unpublish']: messages.error(request, _("Unsupported operation: ") + str(operation)) return custom_redirect('staff:semester_view', semester_id) @@ -138,6 +138,8 @@ def semester_course_operation(request, semester_id): helper_semester_course_operation_prepare(request, courses, send_email) elif operation == 'approve': helper_semester_course_operation_approve(request, courses) + elif operation == 'startEvaluation': + helper_semester_course_operation_start(request, courses, send_email) elif operation == 'publish': helper_semester_course_operation_publish(request, courses, send_email) elif operation == 'unpublish': @@ -164,6 +166,8 @@ def semester_course_operation(request, semester_id): messages.warning(request, ungettext("%(courses)d course can not be approved, because it has not enough questionnaires assigned. It was removed from the selection.", "%(courses)d courses can not be approved, because they have not enough questionnaires assigned. They were removed from the selection.", difference) % {'courses': difference}) + elif operation == 'startEvaluation': + new_state_name = STATES_ORDERED['inEvaluation'] elif operation == 'publish': new_state_name = STATES_ORDERED['published'] elif operation == 'unpublish': @@ -179,7 +183,7 @@ def semester_course_operation(request, semester_id): operation=operation, current_state_name=current_state_name, new_state_name=new_state_name, - show_email_checkbox=operation in ['prepare', 'reenableEditorReview', 'publish'] + show_email_checkbox=operation in ['prepare', 'reenableEditorReview', 'startEvaluation', 'publish'] ) return render(request, "staff_course_operation.html", template_data) @@ -210,6 +214,17 @@ def helper_semester_course_operation_approve(request, courses): "Successfully approved %(courses)d courses.", len(courses)) % {'courses': len(courses)}) +def helper_semester_course_operation_start(request, courses, send_email): + for course in courses: + course.vote_start_date = datetime.date.today() + course.evaluation_begin() + course.save() + messages.success(request, ungettext("Successfully started evaluation for %(courses)d course.", + "Successfully started evaluation for %(courses)d courses.", len(courses)) % {'courses': len(courses)}) + if send_email: + EmailTemplate.send_evaluation_started_notifications(courses) + + def helper_semester_course_operation_publish(request, courses, send_email): for course in courses: course.publish()
Instant evaluation start For some courses (especially D-School courses) staff users need an option to instantly begin the evaluation (out of the state `approved`). This must also be possible without sending notifications (see #713).
2016-02-21T14:14:04
e-valuation/EvaP
742
e-valuation__EvaP-742
[ "629" ]
1982611f635546ac3c63f8f442158ffd42d62bdb
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -857,6 +857,23 @@ def can_staff_delete(self): def is_participant(self): return self.courses_participating_in.exists() + @property + def is_student(self): + """ + A UserProfile is not considered to be a student anymore if the + newest contribution is newer than the newest participation. + """ + if not self.is_participant: + return False + + if not self.is_contributor: + return True + + last_semester_participated = Semester.objects.filter(course__participants=self).order_by("-created_at").first() + last_semester_contributed = Semester.objects.filter(course__contributions__contributor=self).order_by("-created_at").first() + + return last_semester_participated.created_at >= last_semester_contributed.created_at + @property def is_contributor(self): return self.contributions.exists() diff --git a/evap/evaluation/views.py b/evap/evaluation/views.py --- a/evap/evaluation/views.py +++ b/evap/evaluation/views.py @@ -81,6 +81,8 @@ def index(request): return redirect('staff:index') elif request.user.is_grade_publisher: return redirect('grades:semester_view', Semester.active_semester().id) + elif user.is_student: + return redirect('student:index') elif user.is_contributor_or_delegate: return redirect('contributor:index') elif user.is_participant:
diff --git a/evap/evaluation/tests/test_models.py b/evap/evaluation/tests/test_models.py --- a/evap/evaluation/tests/test_models.py +++ b/evap/evaluation/tests/test_models.py @@ -1,16 +1,15 @@ -import datetime +from datetime import date, timedelta from unittest.mock import patch from django.test import TestCase from model_mommy import mommy -from evap.evaluation.models import Course +from evap.evaluation.models import Course, UserProfile, Contribution, Semester class TestCourses(TestCase): - today = datetime.date.today() def test_approved_to_inEvaluation(self): - course = mommy.make(Course, state='approved', vote_start_date=self.today) + course = mommy.make(Course, state='approved', vote_start_date=date.today()) with patch('evap.evaluation.models.EmailTemplate.send_evaluation_started_notifications') as mock: Course.update_courses() @@ -21,7 +20,7 @@ def test_approved_to_inEvaluation(self): self.assertEqual(course.state, 'inEvaluation') def test_inEvaluation_to_evaluated(self): - course = mommy.make(Course, state='inEvaluation', vote_end_date=self.today - datetime.timedelta(days=1)) + course = mommy.make(Course, state='inEvaluation', vote_end_date=date.today() - timedelta(days=1)) with patch('evap.evaluation.models.Course.is_fully_reviewed') as mock: mock.return_value = False @@ -32,7 +31,7 @@ def test_inEvaluation_to_evaluated(self): def test_inEvaluation_to_reviewed(self): # Course is "fully reviewed" as no open text_answers are present by default, - course = mommy.make(Course, state='inEvaluation', vote_end_date=self.today - datetime.timedelta(days=1)) + course = mommy.make(Course, state='inEvaluation', vote_end_date=date.today() - timedelta(days=1)) Course.update_courses() @@ -41,7 +40,7 @@ def test_inEvaluation_to_reviewed(self): def test_inEvaluation_to_published(self): # Course is "fully reviewed" and not graded, thus gets published immediately. - course = mommy.make(Course, state='inEvaluation', vote_end_date=self.today - datetime.timedelta(days=1), + course = mommy.make(Course, state='inEvaluation', vote_end_date=date.today() - timedelta(days=1), is_graded=False) with patch('evap.evaluation.tools.send_publish_notifications') as mock: @@ -52,3 +51,33 @@ def test_inEvaluation_to_published(self): course = Course.objects.get(pk=course.pk) self.assertEqual(course.state, 'published') +class TestUserProfile(TestCase): + + def test_is_student(self): + some_user = mommy.make(UserProfile) + self.assertFalse(some_user.is_student) + + student = mommy.make(UserProfile, courses_participating_in=[mommy.make(Course)]) + self.assertTrue(student.is_student) + + contributor = mommy.make(UserProfile, contributions=[mommy.make(Contribution)]) + self.assertFalse(contributor.is_student) + + semester_contributed_to = mommy.make(Semester, created_at=date.today()) + semester_participated_in = mommy.make(Semester, created_at=date.today()) + course_contributed_to = mommy.make(Course, semester=semester_contributed_to) + course_participated_in = mommy.make(Course, semester=semester_participated_in) + contribution = mommy.make(Contribution, course=course_contributed_to) + user = mommy.make(UserProfile, contributions=[contribution], courses_participating_in=[course_participated_in]) + + self.assertTrue(user.is_student) + + semester_contributed_to.created_at = date.today() - timedelta(days=1) + semester_contributed_to.save() + + self.assertTrue(user.is_student) + + semester_participated_in.created_at = date.today() - timedelta(days=2) + semester_participated_in.save() + + self.assertFalse(user.is_student)
Page forwarding When a publishing notice about a course is sent to a participating student who also is a contributor in another course, the link for this student is always redirecting to `.../contributor`. When the student is a staff member, EvaP always opens at `.../staff`. Mostly students will be using the `.../student` page, so they should always be forwarded to this page, even if they contribute to any courses. Staff users should still be forwarded to `.../staff`, even if they are students.
To distinguish students and contributors a new method `is_student` should be written. When it returns `True`, the user is redirected to the `.../student` page, otherwise to the `.../contributor` page (the exception for staff users from above still counts). It uses the following algorithm to find out about a user's state: - Check in which semester PS the user last was a participant in any course and in which semester CS the user last was a contributor in any course. - If the PS is a later or the same semester as CS, the user is a student, return `True`. - Else the user is a contributor, return `False`.
2016-02-24T15:57:12
e-valuation/EvaP
744
e-valuation__EvaP-744
[ "671" ]
dbe296b654849418a74c37be0f1ba8950c155935
diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -33,6 +33,7 @@ import datetime import random +from collections import OrderedDict, defaultdict def raise_permission_denied_if_archived(archiveable): @@ -80,24 +81,39 @@ def semester_view(request, semester_id): this_courses = [course for course in courses if course.state == state] courses_by_state.append((state, this_courses)) - # semester statistics - num_enrollments_in_evaluation = 0 - num_votes = 0 - num_courses_evaluated = 0 - num_comments = 0 - num_comments_reviewed = 0 - first_start = datetime.date(9999, 1, 1) - last_end = datetime.date(2000, 1, 1) + # semester statistics (per degree) + class Stats: + def __init__(self): + self.num_enrollments_in_evaluation = 0 + self.num_votes = 0 + self.num_courses_evaluated = 0 + self.num_courses = 0 + self.num_comments = 0 + self.num_comments_reviewed = 0 + self.first_start = datetime.date(9999, 1, 1) + self.last_end = datetime.date(2000, 1, 1) + + degree_stats = defaultdict(Stats) + total_stats = Stats() for course in courses: - if course.state in ['inEvaluation', 'evaluated', 'reviewed', 'published']: - num_enrollments_in_evaluation += course.num_participants - num_votes += course.num_voters - num_comments += course.num_textanswers - num_comments_reviewed += course.num_reviewed_textanswers - if course.state in ['evaluated', 'reviewed', 'published']: - num_courses_evaluated += 1 - first_start = min(first_start, course.vote_start_date) - last_end = max(last_end, course.vote_end_date) + if course.is_single_result(): + continue + degrees = course.degrees.all() + stats_objects = [degree_stats[degree] for degree in degrees] + stats_objects += [total_stats] + for stats in stats_objects: + if course.state in ['inEvaluation', 'evaluated', 'reviewed', 'published']: + stats.num_enrollments_in_evaluation += course.num_participants + stats.num_votes += course.num_voters + stats.num_comments += course.num_textanswers + stats.num_comments_reviewed += course.num_reviewed_textanswers + if course.state in ['evaluated', 'reviewed', 'published']: + stats.num_courses_evaluated += 1 + stats.num_courses += 1 + stats.first_start = min(stats.first_start, course.vote_start_date) + stats.last_end = max(stats.last_end, course.vote_end_date) + degree_stats = OrderedDict(sorted(degree_stats.items(), key=lambda x: x[0].order)) + degree_stats['total'] = total_stats template_data = dict( semester=semester, @@ -106,14 +122,8 @@ def semester_view(request, semester_id): disable_if_archived="disabled" if semester.is_archived else "", rewards_active=rewards_active, grades_downloadable=grades_downloadable, - num_enrollments_in_evaluation=num_enrollments_in_evaluation, - num_votes=num_votes, - first_start=first_start, - last_end=last_end, num_courses=len(courses), - num_courses_evaluated=num_courses_evaluated, - num_comments=num_comments, - num_comments_reviewed=num_comments_reviewed, + degree_stats=degree_stats ) return render(request, "staff_semester_view.html", template_data)
Overview per degree on staff pages The statistical overview on top of the staff's semester pages should not only show the total values, but also the values per degree. A table with one line per degree and a total line is suggested. Also the panel should be collapsible like contributor questionnaires on the student's evaluating pages. Whether or not the panel is shown in a collapsed state should be saved in a similar way as the decision whether reviewed comments are displayed on the comment review pages. Current overview: ![overview](https://cloud.githubusercontent.com/assets/1781719/11336196/8195148c-91e3-11e5-8c30-c96ae6479656.PNG)
2016-02-29T20:20:11
e-valuation/EvaP
747
e-valuation__EvaP-747
[ "746" ]
9ee60dba61266edabfcb1b20c529e65d733e8d5a
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -178,8 +178,11 @@ class Meta: def __str__(self): return self.name + def __lt__(self, other): + return self.name_de < other.name_de + def can_staff_delete(self): - if self.pk == None: + if not self.pk: return True return not self.courses.all().exists() diff --git a/evap/results/exporters.py b/evap/results/exporters.py --- a/evap/results/exporters.py +++ b/evap/results/exporters.py @@ -1,11 +1,9 @@ -from evap.evaluation.models import Questionnaire +from evap.evaluation.models import CourseType from evap.evaluation.tools import calculate_results, calculate_average_grades_and_deviation, get_grade_color, get_deviation_color, has_no_rating_answers from django.utils.translation import ugettext as _ from collections import OrderedDict -from collections import defaultdict -import datetime import xlwt @@ -16,9 +14,9 @@ def __init__(self, semester): self.styles = dict() self.CUSTOM_COLOR_START = 8 - self.NUM_GRADE_COLORS = 21 # 1.0 to 5.0 in 0.2 steps - self.NUM_DEVIATION_COLORS = 13 # 0.0 to 2.4 in 0.2 steps - self.STEP = 0.2 # we only have a limited number of custom colors + self.NUM_GRADE_COLORS = 21 # 1.0 to 5.0 in 0.2 steps + self.NUM_DEVIATION_COLORS = 13 # 0.0 to 2.4 in 0.2 steps + self.STEP = 0.2 # we only have a limited number of custom colors def normalize_number(self, number): """ floors 'number' to a multiply of self.STEP """ @@ -109,7 +107,8 @@ def export(self, response, course_types_list, ignore_not_enough_answers=False, i courses_with_results.sort(key=lambda cr: cr[0].type) used_questionnaires = sorted(used_questionnaires) - writec(self, _("Evaluation {0}\n\n{1}").format(self.semester.name, ", ".join(course_types)), "headline") + course_type_names = [ct.name for ct in CourseType.objects.filter(pk__in=course_types)] + writec(self, _("Evaluation {0}\n\n{1}").format(self.semester.name, ", ".join(course_type_names)), "headline") for course, results in courses_with_results: writec(self, course.name, "course", cols=2) diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -10,7 +10,6 @@ from evap.evaluation.forms import BootstrapMixin, QuestionnaireMultipleChoiceField from evap.evaluation.models import Contribution, Course, Question, Questionnaire, Semester, UserProfile, FaqSection, \ FaqQuestion, EmailTemplate, TextAnswer, Degree, RatingAnswerCounter, CourseType -from evap.evaluation.tools import course_types_in_semester from evap.staff.fields import ToolTipModelMultipleChoiceField import logging @@ -485,10 +484,10 @@ def clean_reviewed_answer(self): class ExportSheetForm(forms.Form, BootstrapMixin): def __init__(self, semester, *args, **kwargs): super(ExportSheetForm, self).__init__(*args, **kwargs) - course_types = course_types_in_semester(semester) - course_types = [(course_type, course_type) for course_type in course_types] + course_types = CourseType.objects.filter(courses__semester=semester).distinct() + course_type_tuples = [(ct.pk, ct.name) for ct in course_types] self.fields['selected_course_types'] = forms.MultipleChoiceField( - choices=course_types, + choices=course_type_tuples, required=True, widget=forms.CheckboxSelectMultiple(), label=_("Course types")
TypeError at /staff/semester/19/export: unorderable types: CourseType() < CourseType() When trying to export a semester using the default test database set this error occurs. This might be a test data set issue.
2016-03-03T10:46:14
e-valuation/EvaP
750
e-valuation__EvaP-750
[ "555" ]
fc824d110334ada929dc808a4652158238ef3983
diff --git a/evap/results/views.py b/evap/results/views.py --- a/evap/results/views.py +++ b/evap/results/views.py @@ -3,8 +3,7 @@ from django.contrib.auth.decorators import login_required from evap.evaluation.models import Semester, Degree, Contribution -from evap.evaluation.tools import calculate_results, calculate_average_grades_and_deviation, TextResult - +from evap.evaluation.tools import calculate_results, calculate_average_grades_and_deviation, TextResult, RatingResult from collections import OrderedDict, namedtuple @@ -21,7 +20,7 @@ def semester_detail(request, semester_id): semester = get_object_or_404(Semester, id=semester_id) courses = list(semester.course_set.filter(state="published").prefetch_related("degrees")) - # annotate each course object with its grades + # Annotate each course object with its grades. for course in courses: course.avg_grade, course.avg_deviation = calculate_average_grades_and_deviation(course) @@ -54,8 +53,8 @@ def course_detail(request, semester_id, course_id): sections = calculate_results(course) - public_view = request.GET.get('public_view', 'false') # default: show own view - public_view = {'true': True, 'false': False}.get(public_view.lower()) # convert parameter to boolean + public_view = request.GET.get('public_view', 'false') # Default: show own view. + public_view = {'true': True, 'false': False}.get(public_view.lower()) # Convert parameter to boolean. represented_users = list(request.user.represented_users.all()) represented_users.append(request.user) @@ -71,7 +70,7 @@ def course_detail(request, semester_id, course_id): results.append(result) section.results[:] = results - # filter empty sections and group by contributor + # Filter empty sections and group by contributor. course_sections = [] contributor_sections = OrderedDict() for section in sections: @@ -80,14 +79,21 @@ def course_detail(request, semester_id, course_id): if section.contributor is None: course_sections.append(section) else: - contributor_sections.setdefault(section.contributor, []).append(section) + contributor_sections.setdefault(section.contributor, + {'total_votes': 0, 'sections': []})['sections'].append(section) + + # Sum up all Sections for this contributor. + # If section is not a RatingResult: + # Add 1 as we assume it is a TextResult or something similar that should be displayed. + contributor_sections[section.contributor]['total_votes'] +=\ + sum([s.total_count if isinstance(s, RatingResult) else 1 for s in section.results]) - # show a warning if course is still in evaluation (for staff preview) + # Show a warning if course is still in evaluation (for staff preview). evaluation_warning = course.state != 'published' - # results for a course might not be visible because there are not enough answers + # Results for a course might not be visible because there are not enough answers # but it can still be "published" e.g. to show the comment results to contributors. - # users who can open the results page see a warning message in this case + # Users who can open the results page see a warning message in this case. sufficient_votes_warning = not course.can_publish_grades show_grades = request.user.is_staff or course.can_publish_grades @@ -107,6 +113,7 @@ def course_detail(request, semester_id, course_id): public_view=public_view) return render(request, "results_course_detail.html", template_data) + def user_can_see_text_answer(user, represented_users, text_answer, public_view=False): if public_view: return False @@ -118,10 +125,11 @@ def user_can_see_text_answer(user, represented_users, text_answer, public_view=F if text_answer.is_published: if contributor in represented_users: return True - if text_answer.contribution.course.contributions.filter(contributor__in=represented_users, comment_visibility=Contribution.ALL_COMMENTS).exists(): + if text_answer.contribution.course.contributions.filter( + contributor__in=represented_users, comment_visibility=Contribution.ALL_COMMENTS).exists(): return True - if text_answer.contribution.is_general and \ - text_answer.contribution.course.contributions.filter(contributor__in=represented_users, comment_visibility=Contribution.COURSE_COMMENTS).exists(): + if text_answer.contribution.is_general and text_answer.contribution.course.contributions.filter( + contributor__in=represented_users, comment_visibility=Contribution.COURSE_COMMENTS).exists(): return True return False
collapse contributors with no answers in course detail pages Contributors who didn't get any answers should be collapsed on the results pages, so that the empty answer lines are not shown. This should also happen if there are answers in the database, but none of them can be seen by the current user. ![2015 04 02 17_37_57-000018](https://cloud.githubusercontent.com/assets/1891915/6967376/2b406e48-d95f-11e4-99da-37d2f04ec3e1.png)
there is some code which should remove those lines: https://github.com/fsr-itse/EvaP/blob/839ef21a8dfaec7c0e8a51fda4e0c1bdd9c8376d/evap/results/views.py#L96 but it does not work, as there is a result (and not None or the like) for each question even if it has no answers. besides, we don't want to remove those questions, but rather collapse a questionnaire (or "section" as it's called in that part of the code) if none of it's questions has answers. Tho code in question would make the whole section disappear. The sections are currently not collapsable. So one solution would be changing the layout of all results pages to include collapsible Sections.
2016-03-04T22:01:22
e-valuation/EvaP
762
e-valuation__EvaP-762
[ "704" ]
68c1d0ef498020267b10f3ba1b00314e55fcc9b7
diff --git a/evap/evaluation/management/commands/import_ad.py b/evap/evaluation/management/commands/import_ad.py deleted file mode 100644 --- a/evap/evaluation/management/commands/import_ad.py +++ /dev/null @@ -1,42 +0,0 @@ -import getpass -import ldap -import sys - -from django.core.management.base import BaseCommand - -from evap.evaluation.models import UserProfile - - -class Command(BaseCommand): - args = '<ldap server> <username>' - help = 'Imports user data from Active Directory. The username should be specified with realm.' - - def handle(self, *args, **options): - try: - # connect - l = ldap.initialize(args[0]) - - # bind - l.bind_s(args[1], getpass.getpass("AD Password: ")) - - # find all users - result = l.search_s("OU=INSTITUT,DC=hpi,DC=uni-potsdam,DC=de", ldap.SCOPE_SUBTREE, filterstr="(&(&(objectClass=user)(!(objectClass=computer)))(givenName=*)(sn=*)(mail=*))") - for _, attrs in result: - try: - user = UserProfile.objects.get(username__iexact=attrs['sAMAccountName'][0]) - user.first_name = attrs['givenName'][0] - user.last_name = attrs['sn'][0] - user.email = attrs['mail'][0] - user.save() - - print("Successfully updated: '{0}'".format(user.username)) - except UserProfile.DoesNotExist: - pass - except Exception as e: - print(e) - - l.unbind_s() - - except KeyboardInterrupt: - sys.stderr.write("\nOperation cancelled.\n") - sys.exit(1)
Test management commands Because in three years, run_tasks will silently fail on the production system and nobody will notice. - [x] **run_tasks** - shouldn't be too hard and is rather important - [x] **anonymize** - might be a bit of work to cover it properly, but should be straightforward. - [x] **refresh_results_cache** - should be easy - [x] **dump_testdata** - don't know how not to overwrite the file during testing, but should be possible the other commands are already tested or rather unsuitable for testing - [x] **merge_users** - already has a test (#703) and is shown to be pretty broken. - [x] **run** - don't know how to test this and there isn't really anything that could break. still, somehow running it to check that it doesn't crash right away on e.g. imports would be cool - [x] **reload_testdata** - don't know whether it's possible at all to test that, i mean it drops the whole database... - [ ] **import_ad** - we never used it and i don't know whether it's feasible to mock ldap use `self.stdout.write` instead of `print` and `call_command("command_name", stdout=StringIO())` to avoid console output during tests. don't know what to do about calls to `input`.
calls to input can be mocked as usual: ``` from mock import patch with patch('builtins.input') as mock_input: # do stuff ```
2016-03-30T17:51:50
e-valuation/EvaP
763
e-valuation__EvaP-763
[ "743" ]
aac8f89438490f8f390af4acb05822896f011f5a
diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -151,8 +151,6 @@ class Meta: def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - self.fields['type'].widget = forms.Select(choices=[(a, a) for a in Course.objects.values_list('type', flat=True).order_by().distinct()]) - self.fields['last_modified_time_2'].initial = self.instance.last_modified_time if self.instance.last_modified_user: self.fields['last_modified_user_2'].initial = self.instance.last_modified_user.full_name
single results not sortable by result On the results site of a semester are the single results not sortable by the result. When clicking on the results table header the results get sorted by something, but not the result.
What exactly is meant by "sortable by the result"? I see no results table header on the semester results site. ![screen shot 2016-02-29 at 7 24 43 pm](https://cloud.githubusercontent.com/assets/5385472/13404511/329aa7aa-df1a-11e5-9662-d29ccc029b3a.png) your screenshot does not show the single results, but the normal course results
2016-03-31T13:19:02
e-valuation/EvaP
764
e-valuation__EvaP-764
[ "258" ]
eebf8b6106da48a465b5482f0c75157325a7aebb
diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -78,6 +78,15 @@ def clean(self): raise SuspiciousOperation("Deleting course type not allowed") +class CourseTypeMergeSelectionForm(forms.Form, BootstrapMixin): + main_type = forms.ModelChoiceField(CourseType.objects.all()) + other_type = forms.ModelChoiceField(CourseType.objects.all()) + + def clean(self): + super().clean() + if self.cleaned_data.get('main_type') == self.cleaned_data.get('other_type'): + raise ValidationError(_("You must select two different course types.")) + class CourseForm(forms.ModelForm, BootstrapMixin): general_questions = QuestionnaireMultipleChoiceField(Questionnaire.objects.filter(is_for_contributors=False, obsolete=False), label=_("General questions")) diff --git a/evap/staff/urls.py b/evap/staff/urls.py --- a/evap/staff/urls.py +++ b/evap/staff/urls.py @@ -43,7 +43,10 @@ url(r"^questionnaire/update_indices$", questionnaire_update_indices, name="questionnaire_update_indices"), url(r"^degrees/$", degree_index, name="degree_index"), + url(r"^course_types/$", course_type_index, name="course_type_index"), + url(r"^course_types/merge$", course_type_merge_selection, name="course_type_merge_selection"), + url(r"^course_types/(\d+)/merge/(\d+)$", course_type_merge, name="course_type_merge"), url(r"^user/$", user_index, name="user_index"), url(r"^user/create$", user_create, name="user_create"), diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -20,7 +20,7 @@ ImportForm, LotteryForm, QuestionForm, QuestionnaireForm, QuestionnairesAssignForm, \ SemesterForm, UserForm, ContributionFormSet, FaqSectionForm, FaqQuestionForm, \ UserImportForm, TextAnswerForm, DegreeForm, SingleResultForm, ExportSheetForm, \ - UserMergeSelectionForm, CourseTypeForm, UserBulkDeleteForm + UserMergeSelectionForm, CourseTypeForm, UserBulkDeleteForm, CourseTypeMergeSelectionForm from evap.staff.importers import EnrollmentImporter, UserImporter from evap.staff.tools import custom_redirect, delete_navbar_cache, merge_users, bulk_delete_users from evap.student.views import vote_preview @@ -854,6 +854,35 @@ def course_type_index(request): return render(request, "staff_course_type_index.html", dict(formset=formset)) +@staff_required +def course_type_merge_selection(request): + form = CourseTypeMergeSelectionForm(request.POST or None) + + if form.is_valid(): + main_type = form.cleaned_data['main_type'] + other_type = form.cleaned_data['other_type'] + return redirect('staff:course_type_merge', main_type.id, other_type.id) + else: + return render(request, "staff_course_type_merge_selection.html", dict(form=form)) + + +@staff_required +def course_type_merge(request, main_type_id, other_type_id): + main_type = get_object_or_404(CourseType, id=main_type_id) + other_type = get_object_or_404(CourseType, id=other_type_id) + + if request.method == 'POST': + Course.objects.filter(type=other_type).update(type=main_type) + other_type.delete() + messages.success(request, _("Successfully merged course types.")) + return redirect('staff:course_type_index') + else: + courses_with_other_type = Course.objects.filter(type=other_type).order_by('semester__created_at', 'name_de') + return render(request, "staff_course_type_merge.html", + dict(main_type=main_type, other_type=other_type, courses_with_other_type=courses_with_other_type)) + + + @staff_required def user_index(request): from django.db.models import BooleanField, ExpressionWrapper, Q, Sum, Case, When, IntegerField @@ -948,7 +977,7 @@ def user_bulk_delete(request): @staff_required def user_merge_selection(request): - form = UserMergeSelectionForm(request.POST or None, request.FILES or None) + form = UserMergeSelectionForm(request.POST or None) if form.is_valid(): main_user = form.cleaned_data['main_user']
diff --git a/evap/staff/fixtures/minimal_test_data.json b/evap/staff/fixtures/minimal_test_data.json --- a/evap/staff/fixtures/minimal_test_data.json +++ b/evap/staff/fixtures/minimal_test_data.json @@ -1319,6 +1319,14 @@ "name_en": "Master project" } }, +{ + "pk": 3, + "model": "evaluation.coursetype", + "fields": { + "name_de": "Obsoleter Kurstyp", + "name_en": "Obsolete course type" + } +}, { "pk": 1, "model": "evaluation.course", @@ -1527,7 +1535,7 @@ "participants": [5], "vote_end_date": "2099-11-20", "name_en": "dadas", - "type": 2, + "type": 3, "vote_start_date": "2014-11-07" } }, diff --git a/evap/staff/tests/tests_general.py b/evap/staff/tests/tests_general.py --- a/evap/staff/tests/tests_general.py +++ b/evap/staff/tests/tests_general.py @@ -332,18 +332,21 @@ def test_all_urls(self): ("test_staff_faq", "/staff/faq/", "evap"), ("test_staff_faq_x", "/staff/faq/1", "evap"), # rewards - ("rewards_index", "/rewards/", "student"), - ("reward_points_redemption_events", "/rewards/reward_point_redemption_events/", "evap"), - ("reward_points_redemption_event_create", "/rewards/reward_point_redemption_event/create", "evap"), - ("reward_points_redemption_event_edit", "/rewards/reward_point_redemption_event/1/edit", "evap"), - ("reward_points_redemption_event_export", "/rewards/reward_point_redemption_event/1/export", "evap"), - ("reward_points_semester_activation", "/rewards/reward_semester_activation/1/on", "evap"), - ("reward_points_semester_deactivation", "/rewards/reward_semester_activation/1/off", "evap"), - ("reward_points_semester_overview", "/rewards/semester/1/reward_points", "evap"), + ("test_staff_rewards_index", "/rewards/", "student"), + ("test_staff_reward_points_redemption_events", "/rewards/reward_point_redemption_events/", "evap"), + ("test_staff_reward_points_redemption_event_create", "/rewards/reward_point_redemption_event/create", "evap"), + ("test_staff_reward_points_redemption_event_edit", "/rewards/reward_point_redemption_event/1/edit", "evap"), + ("test_staff_reward_points_redemption_event_export", "/rewards/reward_point_redemption_event/1/export", "evap"), + ("test_staff_reward_points_semester_activation", "/rewards/reward_semester_activation/1/on", "evap"), + ("test_staff_reward_points_semester_deactivation", "/rewards/reward_semester_activation/1/off", "evap"), + ("test_staff_reward_points_semester_overview", "/rewards/semester/1/reward_points", "evap"), # degrees - ("degree_index", "/staff/degrees/", "evap"), + ("test_staff_degree_index", "/staff/degrees/", "evap"), # course types - ("course_type_index", "/staff/course_types/", "evap")] + ("test_staff_course_type_index", "/staff/course_types/", "evap"), + ("test_staff_course_type_merge", "/staff/course_types/merge", "evap"), + ("test_staff_course_type_x_merge_x", "/staff/course_types/2/merge/3", "evap"), + ] for _, url, user in tests: self.get_assert_200(url, user) @@ -381,6 +384,7 @@ def test_failing_forms(self): ("/staff/questionnaire/create", "evap"), ("/staff/user/create", "evap"), ("/staff/user/merge", "evap"), + ("/staff/course_types/merge", "evap"), ] for form in forms: response = self.get_submit_assert_200(form[0], form[1]) @@ -727,6 +731,26 @@ def test_degree_form(self): self.assertTrue(Degree.objects.filter(name_de="Test", name_en="Test").exists()) + def test_course_type_merge(self): + """ + Tests that the merging of course types works as expected. + """ + main_type = CourseType.objects.get(name_en="Master project") + other_type = CourseType.objects.get(name_en="Obsolete course type") + num_courses_with_main_type = Course.objects.filter(type=main_type).count() + courses_with_other_type = Course.objects.filter(type=other_type) + self.assertGreater(courses_with_other_type.count(), 0) + + page = self.get_assert_200("/staff/course_types/" + str(main_type.pk) + "/merge/" + str(other_type.pk), user="evap") + form = lastform(page) + response = form.submit() + self.assertIn("Successfully", str(response)) + + self.assertFalse(CourseType.objects.filter(name_en="Obsolete course type").exists()) + self.assertEqual(Course.objects.filter(type=main_type).count(), num_courses_with_main_type + 1) + for course in courses_with_other_type: + self.assertTrue(course.type == main_type) + class ArchivingTests(WebTest):
Merge option for course types On the semester overview page the FSR need an option to merge course types after importing courses and assigning questionnaires. This makes #53 obsolete.
@kateyy Did you work on this issue, do you want to continue or can I remove your assignment in preparation for the next Hackday? I think it's better to remove the assignment for now, i didn't produce any usable code for this issue. #315 will probably make this easier and should be implemented first.
2016-03-31T20:22:48
e-valuation/EvaP
765
e-valuation__EvaP-765
[ "755" ]
62005ee8408f7292813d17d154a0f8b5f86b5c6f
diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -892,7 +892,7 @@ def user_index(request): .annotate(is_staff=ExpressionWrapper(Q(staff_group_count__exact=1), output_field=BooleanField())) .annotate(grade_publisher_group_count=Sum(Case(When(groups__name="Grade publisher", then=1), output_field=IntegerField()))) .annotate(is_grade_publisher=ExpressionWrapper(Q(grade_publisher_group_count__exact=1), output_field=BooleanField())) - .prefetch_related('contributions', 'courses_participating_in')) + .prefetch_related('contributions', 'courses_participating_in', 'courses_participating_in__semester')) return render(request, "staff_user_index.html", dict(users=users))
diff --git a/evap/evaluation/fixtures/test_data.json b/evap/evaluation/fixtures/test_data.json --- a/evap/evaluation/fixtures/test_data.json +++ b/evap/evaluation/fixtures/test_data.json @@ -98904,26 +98904,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 5, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.132", - "is_superuser": false, - "username": "mohammed.swank.ext", - "email": "[email protected]", - "title": null, - "first_name": "Mohammed", - "last_name": "Swank", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 6, @@ -98984,26 +98964,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 9, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.152", - "is_superuser": false, - "username": "meda.cerda.ext", - "email": "[email protected]", - "title": null, - "first_name": "Meda", - "last_name": "Cerda", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 10, @@ -99044,26 +99004,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 12, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.167", - "is_superuser": false, - "username": "fermin.cummings.ext", - "email": "[email protected]", - "title": null, - "first_name": "Fermin", - "last_name": "Cummings", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 13, @@ -99144,26 +99084,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 17, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-02T18:07:54.141", - "is_superuser": false, - "username": "eufemia.thomsen.ext", - "email": "[email protected]", - "title": null, - "first_name": "Eufemia", - "last_name": "Thomsen", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 18, @@ -99204,86 +99124,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 20, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-23T09:46:04.308", - "is_superuser": false, - "username": "valery.rhoades", - "email": "[email protected]", - "title": null, - "first_name": "Valery", - "last_name": "Rhoades", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 21, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.210", - "is_superuser": false, - "username": "wilhemina.hudson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Wilhemina", - "last_name": "Hudson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 22, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-13T07:15:10.024", - "is_superuser": false, - "username": "tyron.mcguire", - "email": "[email protected]", - "title": null, - "first_name": "Tyron", - "last_name": "Mcguire", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 23, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.219", - "is_superuser": false, - "username": "leonardo.lindsey.ext", - "email": "[email protected]", - "title": null, - "first_name": "Leonardo", - "last_name": "Lindsey", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 24, @@ -99324,26 +99164,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 26, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.234", - "is_superuser": false, - "username": "ayana.carnes.ext", - "email": "[email protected]", - "title": null, - "first_name": "Ayana", - "last_name": "Carnes", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 27, @@ -99384,26 +99204,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 29, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.248", - "is_superuser": false, - "username": "marlyn.martinez.ext", - "email": "[email protected]", - "title": null, - "first_name": "Marlyn", - "last_name": "Martinez", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 30, @@ -99424,26 +99224,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 31, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.258", - "is_superuser": false, - "username": "debera.lehman.ext", - "email": "[email protected]", - "title": null, - "first_name": "Debera", - "last_name": "Lehman", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 32, @@ -99484,46 +99264,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 34, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.272", - "is_superuser": false, - "username": "yahaira.mccombs.ext", - "email": "[email protected]", - "title": null, - "first_name": "Yahaira", - "last_name": "Mccombs", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 35, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.277", - "is_superuser": false, - "username": "lourdes.shanahan.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lourdes", - "last_name": "Shanahan", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 36, @@ -99544,46 +99284,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 37, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-03-06T19:46:51.747", - "is_superuser": false, - "username": "yoshie.tom", - "email": "[email protected]", - "title": null, - "first_name": "Yoshie", - "last_name": "Tom", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 38, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.291", - "is_superuser": false, - "username": "markus.lachance.ext", - "email": "[email protected]", - "title": null, - "first_name": "Markus", - "last_name": "Lachance", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 39, @@ -99644,26 +99344,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 42, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-29T09:56:02.465", - "is_superuser": false, - "username": "cyndi.rosenbaum", - "email": "[email protected]", - "title": null, - "first_name": "Cyndi", - "last_name": "Rosenbaum", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 43, @@ -99704,46 +99384,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 45, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.329", - "is_superuser": false, - "username": "naomi.lind.ext", - "email": "[email protected]", - "title": null, - "first_name": "Naomi", - "last_name": "Lind", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 46, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.334", - "is_superuser": false, - "username": "lorilee.robson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lorilee", - "last_name": "Robson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 47, @@ -99764,26 +99404,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 48, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-05-07T18:43:09.433", - "is_superuser": false, - "username": "linette.palacios", - "email": "[email protected]", - "title": "", - "first_name": "Linette", - "last_name": "Palacios", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 49, @@ -99804,26 +99424,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 50, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.353", - "is_superuser": false, - "username": "scott.carvalho", - "email": "[email protected]", - "title": null, - "first_name": "Scott", - "last_name": "Carvalho", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 51, @@ -99884,26 +99484,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 54, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.372", - "is_superuser": false, - "username": "jayna.ramey.ext", - "email": "[email protected]", - "title": null, - "first_name": "Jayna", - "last_name": "Ramey", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 55, @@ -99944,46 +99524,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 57, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.387", - "is_superuser": false, - "username": "suzan.george.ext", - "email": "[email protected]", - "title": null, - "first_name": "Suzan", - "last_name": "George", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 58, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.391", - "is_superuser": false, - "username": "susan.lankford.ext", - "email": "[email protected]", - "title": null, - "first_name": "Susan", - "last_name": "Lankford", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 59, @@ -100044,26 +99584,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 62, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.411", - "is_superuser": false, - "username": "edelmira.gregory.ext", - "email": "[email protected]", - "title": null, - "first_name": "Edelmira", - "last_name": "Gregory", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 63, @@ -100126,16 +99646,16 @@ }, { "model": "evaluation.userprofile", - "pk": 66, + "pk": 69, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.430", + "last_login": "2014-04-23T16:15:33.557", "is_superuser": false, - "username": "minnie.seymore.ext", - "email": "[email protected]", + "username": "adriane.strain", + "email": "[email protected]", "title": null, - "first_name": "Minnie", - "last_name": "Seymore", + "first_name": "Adriane", + "last_name": "Strain", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100146,16 +99666,16 @@ }, { "model": "evaluation.userprofile", - "pk": 67, + "pk": 71, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.435", + "last_login": "2012-04-05T08:28:44.887", "is_superuser": false, - "username": "frankie.dick.ext", - "email": "[email protected]", + "username": "jeannie.guffey", + "email": "[email protected]", "title": null, - "first_name": "Frankie", - "last_name": "Dick", + "first_name": "Jeannie", + "last_name": "Guffey", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100166,16 +99686,16 @@ }, { "model": "evaluation.userprofile", - "pk": 68, + "pk": 74, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.439", + "last_login": "2013-02-01T11:36:03.558", "is_superuser": false, - "username": "debra.kuhn.ext", - "email": "[email protected]", + "username": "brian.david.ext", + "email": "[email protected]", "title": null, - "first_name": "Debra", - "last_name": "Kuhn", + "first_name": "Brian", + "last_name": "David", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100186,16 +99706,16 @@ }, { "model": "evaluation.userprofile", - "pk": 69, + "pk": 75, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:15:33.557", + "last_login": "2012-01-18T16:59:46.475", "is_superuser": false, - "username": "adriane.strain", - "email": "[email protected]", + "username": "sylvester.sell.ext", + "email": "[email protected]", "title": null, - "first_name": "Adriane", - "last_name": "Strain", + "first_name": "Sylvester", + "last_name": "Sell", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100206,16 +99726,16 @@ }, { "model": "evaluation.userprofile", - "pk": 70, + "pk": 77, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.451", + "last_login": "2012-01-18T16:59:46.485", "is_superuser": false, - "username": "jeanne.shearer.ext", - "email": "[email protected]", + "username": "ramona.horvath.ext", + "email": "[email protected]", "title": null, - "first_name": "Jeanne", - "last_name": "Shearer", + "first_name": "Ramona", + "last_name": "Horvath", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100226,16 +99746,16 @@ }, { "model": "evaluation.userprofile", - "pk": 71, + "pk": 79, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-05T08:28:44.887", + "last_login": "2013-03-03T12:00:50.914", "is_superuser": false, - "username": "jeannie.guffey", - "email": "[email protected]", + "username": "alexis.sandoval", + "email": "[email protected]", "title": null, - "first_name": "Jeannie", - "last_name": "Guffey", + "first_name": "Alexis", + "last_name": "Sandoval", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100246,16 +99766,16 @@ }, { "model": "evaluation.userprofile", - "pk": 72, + "pk": 80, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.461", + "last_login": "2013-12-18T21:29:51.683", "is_superuser": false, - "username": "stephanie.jerome.ext", - "email": "[email protected]", + "username": "shela.lowell", + "email": "[email protected]", "title": null, - "first_name": "Stephanie", - "last_name": "Jerome", + "first_name": "Shela", + "last_name": "Lowell", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100266,16 +99786,16 @@ }, { "model": "evaluation.userprofile", - "pk": 73, + "pk": 84, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.466", + "last_login": "2012-01-18T16:59:46.521", "is_superuser": false, - "username": "maryam.earley.ext", - "email": "[email protected]", + "username": "zandra.gerard.ext", + "email": "[email protected]", "title": null, - "first_name": "Maryam", - "last_name": "Earley", + "first_name": "Zandra", + "last_name": "Gerard", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100286,16 +99806,16 @@ }, { "model": "evaluation.userprofile", - "pk": 74, + "pk": 85, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-01T11:36:03.558", + "last_login": "2012-01-18T16:59:46.526", "is_superuser": false, - "username": "brian.david.ext", - "email": "[email protected]", + "username": "jodee.treadwell.ext", + "email": "[email protected]", "title": null, - "first_name": "Brian", - "last_name": "David", + "first_name": "Jodee", + "last_name": "Treadwell", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100306,16 +99826,16 @@ }, { "model": "evaluation.userprofile", - "pk": 75, + "pk": 88, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.475", + "last_login": "2012-01-18T16:59:46.540", "is_superuser": false, - "username": "sylvester.sell.ext", - "email": "[email protected]", + "username": "micheal.woodbury.ext", + "email": "[email protected]", "title": null, - "first_name": "Sylvester", - "last_name": "Sell", + "first_name": "Micheal", + "last_name": "Woodbury", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100326,16 +99846,16 @@ }, { "model": "evaluation.userprofile", - "pk": 76, + "pk": 89, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-23T11:12:44.643", + "last_login": "2012-02-02T15:42:43.850", "is_superuser": false, - "username": "cherie.pitre", - "email": "[email protected]", + "username": "evelin.reno.ext", + "email": "[email protected]", "title": null, - "first_name": "Cherie", - "last_name": "Pitre", + "first_name": "Evelin", + "last_name": "Reno", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100346,16 +99866,16 @@ }, { "model": "evaluation.userprofile", - "pk": 77, + "pk": 91, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.485", + "last_login": "2012-01-18T16:59:46.555", "is_superuser": false, - "username": "ramona.horvath.ext", - "email": "[email protected]", + "username": "nolan.pope.ext", + "email": "[email protected]", "title": null, - "first_name": "Ramona", - "last_name": "Horvath", + "first_name": "Nolan", + "last_name": "Pope", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100366,16 +99886,16 @@ }, { "model": "evaluation.userprofile", - "pk": 78, + "pk": 92, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-29T01:25:25.569", + "last_login": "2012-01-18T16:59:46.560", "is_superuser": false, - "username": "joselyn.barnhill", - "email": "[email protected]", + "username": "audry.craddock.ext", + "email": "[email protected]", "title": null, - "first_name": "Joselyn", - "last_name": "Barnhill", + "first_name": "Audry", + "last_name": "Craddock", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100386,16 +99906,16 @@ }, { "model": "evaluation.userprofile", - "pk": 79, + "pk": 93, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-03-03T12:00:50.914", + "last_login": "2012-11-26T11:55:18.316", "is_superuser": false, - "username": "alexis.sandoval", - "email": "[email protected]", - "title": null, - "first_name": "Alexis", - "last_name": "Sandoval", + "username": "viola.barringer", + "email": "[email protected]", + "title": "Dr.", + "first_name": "Viola", + "last_name": "Barringer", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100406,16 +99926,16 @@ }, { "model": "evaluation.userprofile", - "pk": 80, + "pk": 98, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T21:29:51.683", + "last_login": "2012-01-18T16:59:53.825", "is_superuser": false, - "username": "shela.lowell", - "email": "[email protected]", + "username": "roxy.sager.ext", + "email": "[email protected]", "title": null, - "first_name": "Shela", - "last_name": "Lowell", + "first_name": "Roxy", + "last_name": "Sager", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100426,16 +99946,16 @@ }, { "model": "evaluation.userprofile", - "pk": 81, + "pk": 99, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.506", + "last_login": "2014-04-24T00:08:14.535", "is_superuser": false, - "username": "shaniqua.jennings", - "email": "[email protected]", - "title": null, - "first_name": "Shaniqua", - "last_name": "Jennings", + "username": "sindy.boisvert", + "email": "[email protected]", + "title": "", + "first_name": "Sindy", + "last_name": "Boisvert", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100446,16 +99966,16 @@ }, { "model": "evaluation.userprofile", - "pk": 82, + "pk": 103, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.511", + "last_login": "2012-01-18T16:59:53.848", "is_superuser": false, - "username": "sharron.yoo.ext", - "email": "[email protected]", + "username": "dante.krug.ext", + "email": "[email protected]", "title": null, - "first_name": "Sharron", - "last_name": "Yoo", + "first_name": "Dante", + "last_name": "Krug", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100466,16 +99986,16 @@ }, { "model": "evaluation.userprofile", - "pk": 83, + "pk": 105, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-07T15:33:37.884", + "last_login": "2012-01-18T16:59:53.858", "is_superuser": false, - "username": "simone.mcgregor", - "email": "[email protected]", - "title": "", - "first_name": "Simone", - "last_name": "Mcgregor", + "username": "lourie.apodaca.ext", + "email": "[email protected]", + "title": null, + "first_name": "Lourie", + "last_name": "Apodaca", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100486,16 +100006,16 @@ }, { "model": "evaluation.userprofile", - "pk": 84, + "pk": 106, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.521", + "last_login": "2013-12-18T21:33:11.053", "is_superuser": false, - "username": "zandra.gerard.ext", - "email": "[email protected]", + "username": "christie.savage.ext", + "email": "[email protected]", "title": null, - "first_name": "Zandra", - "last_name": "Gerard", + "first_name": "Christie", + "last_name": "Savage", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100506,16 +100026,16 @@ }, { "model": "evaluation.userprofile", - "pk": 85, + "pk": 107, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.526", + "last_login": "2012-01-18T16:59:53.869", "is_superuser": false, - "username": "jodee.treadwell.ext", - "email": "[email protected]", + "username": "franchesca.russo.ext", + "email": "[email protected]", "title": null, - "first_name": "Jodee", - "last_name": "Treadwell", + "first_name": "Franchesca", + "last_name": "Russo", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100526,16 +100046,16 @@ }, { "model": "evaluation.userprofile", - "pk": 86, + "pk": 111, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.530", + "last_login": "2012-01-18T16:59:53.888", "is_superuser": false, - "username": "frederic.schubert.ext", - "email": "[email protected]", + "username": "catherina.andrade.ext", + "email": "[email protected]", "title": null, - "first_name": "Frederic", - "last_name": "Schubert", + "first_name": "Catherina", + "last_name": "Andrade", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100546,16 +100066,16 @@ }, { "model": "evaluation.userprofile", - "pk": 87, + "pk": 112, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.535", + "last_login": "2012-01-18T16:59:53.897", "is_superuser": false, - "username": "lahoma.avila.ext", - "email": "[email protected]", + "username": "twanna.kent.ext", + "email": "[email protected]", "title": null, - "first_name": "Lahoma", - "last_name": "Avila", + "first_name": "Twanna", + "last_name": "Kent", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100566,16 +100086,16 @@ }, { "model": "evaluation.userprofile", - "pk": 88, + "pk": 113, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.540", + "last_login": "2012-01-18T16:59:53.901", "is_superuser": false, - "username": "micheal.woodbury.ext", - "email": "[email protected]", + "username": "charity.trombley.ext", + "email": "[email protected]", "title": null, - "first_name": "Micheal", - "last_name": "Woodbury", + "first_name": "Charity", + "last_name": "Trombley", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100586,16 +100106,16 @@ }, { "model": "evaluation.userprofile", - "pk": 89, + "pk": 115, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-02T15:42:43.850", + "last_login": "2012-01-18T16:59:53.911", "is_superuser": false, - "username": "evelin.reno.ext", - "email": "[email protected]", + "username": "noble.hope.ext", + "email": "[email protected]", "title": null, - "first_name": "Evelin", - "last_name": "Reno", + "first_name": "Noble", + "last_name": "Hope", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100606,16 +100126,16 @@ }, { "model": "evaluation.userprofile", - "pk": 90, + "pk": 116, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.550", + "last_login": "2014-04-07T14:28:32.793", "is_superuser": false, - "username": "maryetta.wylie.ext", - "email": "[email protected]", - "title": null, - "first_name": "Maryetta", - "last_name": "Wylie", + "username": "hugh.runyon", + "email": "[email protected]", + "title": "Dr.-Ing.", + "first_name": "Hugh", + "last_name": "Runyon", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100626,16 +100146,16 @@ }, { "model": "evaluation.userprofile", - "pk": 91, + "pk": 120, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.555", + "last_login": "2013-07-08T12:55:29.453", "is_superuser": false, - "username": "nolan.pope.ext", - "email": "[email protected]", - "title": null, - "first_name": "Nolan", - "last_name": "Pope", + "username": "diane.carlton", + "email": "[email protected]", + "title": "", + "first_name": "Diane", + "last_name": "Carlton", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100646,16 +100166,16 @@ }, { "model": "evaluation.userprofile", - "pk": 92, + "pk": 122, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:46.560", + "last_login": "2012-01-18T17:00:02.340", "is_superuser": false, - "username": "audry.craddock.ext", - "email": "[email protected]", + "username": "octavio.weatherly.ext", + "email": "[email protected]", "title": null, - "first_name": "Audry", - "last_name": "Craddock", + "first_name": "Octavio", + "last_name": "Weatherly", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100666,16 +100186,16 @@ }, { "model": "evaluation.userprofile", - "pk": 93, + "pk": 125, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-26T11:55:18.316", + "last_login": "2012-01-18T17:00:02.933", "is_superuser": false, - "username": "viola.barringer", - "email": "[email protected]", - "title": "Dr.", - "first_name": "Viola", - "last_name": "Barringer", + "username": "christel.skinner.ext", + "email": "[email protected]", + "title": null, + "first_name": "Christel", + "last_name": "Skinner", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100686,36 +100206,41 @@ }, { "model": "evaluation.userprofile", - "pk": 94, + "pk": 127, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.805", + "last_login": "2013-07-02T13:51:03.991", "is_superuser": false, - "username": "diedre.kohler.ext", - "email": "[email protected]", - "title": null, - "first_name": "Diedre", - "last_name": "Kohler", + "username": "elena.kline", + "email": "[email protected]", + "title": "Prof. Dr.", + "first_name": "Elena", + "last_name": "Kline", "login_key": null, "login_key_valid_until": null, "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 2143, + 169, + 14, + 18 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 95, + "pk": 134, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.810", + "last_login": "2012-01-18T17:00:11.313", "is_superuser": false, - "username": "lia.mcnally.ext", - "email": "[email protected]", + "username": "farrah.rico.ext", + "email": "[email protected]", "title": null, - "first_name": "Lia", - "last_name": "Mcnally", + "first_name": "Farrah", + "last_name": "Rico", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100726,16 +100251,16 @@ }, { "model": "evaluation.userprofile", - "pk": 96, + "pk": 135, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-23T10:16:58.164", + "last_login": "2012-01-18T17:00:11.321", "is_superuser": false, - "username": "carmelita.schofield", - "email": "[email protected]", - "title": "", - "first_name": "Carmelita", - "last_name": "Schofield", + "username": "mercedes.berry.ext", + "email": "[email protected]", + "title": null, + "first_name": "Mercedes", + "last_name": "Berry", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100746,16 +100271,16 @@ }, { "model": "evaluation.userprofile", - "pk": 97, + "pk": 140, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.820", + "last_login": "2013-02-08T14:50:24.419", "is_superuser": false, - "username": "kristie.montalvo.ext", - "email": "[email protected]", + "username": "orval.cheung.ext", + "email": "[email protected]", "title": null, - "first_name": "Kristie", - "last_name": "Montalvo", + "first_name": "Orval", + "last_name": "Cheung", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100766,16 +100291,16 @@ }, { "model": "evaluation.userprofile", - "pk": 98, + "pk": 141, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.825", + "last_login": "2013-11-02T10:53:23.655", "is_superuser": false, - "username": "roxy.sager.ext", - "email": "[email protected]", + "username": "cherry.doughty", + "email": "[email protected]", "title": null, - "first_name": "Roxy", - "last_name": "Sager", + "first_name": "Cherry", + "last_name": "Doughty", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100786,16 +100311,16 @@ }, { "model": "evaluation.userprofile", - "pk": 99, + "pk": 145, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-24T00:08:14.535", + "last_login": "2014-02-10T13:03:18.412", "is_superuser": false, - "username": "sindy.boisvert", - "email": "[email protected]", + "username": "beth.carlton", + "email": "[email protected]", "title": "", - "first_name": "Sindy", - "last_name": "Boisvert", + "first_name": "Beth", + "last_name": "Carlton", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100806,16 +100331,16 @@ }, { "model": "evaluation.userprofile", - "pk": 100, + "pk": 146, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.834", + "last_login": "2012-01-18T17:00:11.372", "is_superuser": false, - "username": "anglea.carlin.ext", - "email": "[email protected]", + "username": "marge.gilson.ext", + "email": "[email protected]", "title": null, - "first_name": "Anglea", - "last_name": "Carlin", + "first_name": "Marge", + "last_name": "Gilson", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100826,16 +100351,16 @@ }, { "model": "evaluation.userprofile", - "pk": 101, + "pk": 149, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.839", + "last_login": "2012-01-18T17:00:11.386", "is_superuser": false, - "username": "patria.hiatt.ext", - "email": "[email protected]", + "username": "drucilla.tillery.ext", + "email": "[email protected]", "title": null, - "first_name": "Patria", - "last_name": "Hiatt", + "first_name": "Drucilla", + "last_name": "Tillery", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100846,16 +100371,16 @@ }, { "model": "evaluation.userprofile", - "pk": 102, + "pk": 151, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.844", + "last_login": "2012-01-18T17:00:11.396", "is_superuser": false, - "username": "tommye.david.ext", - "email": "[email protected]", + "username": "eliza.callahan.ext", + "email": "[email protected]", "title": null, - "first_name": "Tommye", - "last_name": "David", + "first_name": "Eliza", + "last_name": "Callahan", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100866,16 +100391,16 @@ }, { "model": "evaluation.userprofile", - "pk": 103, + "pk": 152, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.848", + "last_login": "2012-01-18T17:00:11.400", "is_superuser": false, - "username": "dante.krug.ext", - "email": "[email protected]", + "username": "clarita.healy.ext", + "email": "[email protected]", "title": null, - "first_name": "Dante", - "last_name": "Krug", + "first_name": "Clarita", + "last_name": "Healy", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100886,16 +100411,16 @@ }, { "model": "evaluation.userprofile", - "pk": 104, + "pk": 155, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.853", + "last_login": "2012-01-18T17:00:11.417", "is_superuser": false, - "username": "barrett.towle.ext", - "email": "[email protected]", + "username": "verla.krueger.ext", + "email": "[email protected]", "title": null, - "first_name": "Barrett", - "last_name": "Towle", + "first_name": "Verla", + "last_name": "Krueger", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100906,16 +100431,16 @@ }, { "model": "evaluation.userprofile", - "pk": 105, + "pk": 156, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.858", + "last_login": "2012-01-18T17:00:11.421", "is_superuser": false, - "username": "lourie.apodaca.ext", - "email": "[email protected]", + "username": "lakita.palumbo.ext", + "email": "[email protected]", "title": null, - "first_name": "Lourie", - "last_name": "Apodaca", + "first_name": "Lakita", + "last_name": "Palumbo", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100926,16 +100451,16 @@ }, { "model": "evaluation.userprofile", - "pk": 106, + "pk": 159, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T21:33:11.053", + "last_login": "2012-01-18T17:00:11.436", "is_superuser": false, - "username": "christie.savage.ext", - "email": "[email protected]", + "username": "elfrieda.brigham.ext", + "email": "[email protected]", "title": null, - "first_name": "Christie", - "last_name": "Savage", + "first_name": "Elfrieda", + "last_name": "Brigham", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100946,16 +100471,16 @@ }, { "model": "evaluation.userprofile", - "pk": 107, + "pk": 160, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.869", + "last_login": "2012-01-18T17:00:11.440", "is_superuser": false, - "username": "franchesca.russo.ext", - "email": "[email protected]", + "username": "roslyn.edwards.ext", + "email": "[email protected]", "title": null, - "first_name": "Franchesca", - "last_name": "Russo", + "first_name": "Roslyn", + "last_name": "Edwards", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100966,16 +100491,16 @@ }, { "model": "evaluation.userprofile", - "pk": 108, + "pk": 161, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.874", + "last_login": "2012-04-25T15:41:02.977", "is_superuser": false, - "username": "candida.wortham.ext", - "email": "[email protected]", + "username": "michell.dabbs", + "email": "[email protected]", "title": null, - "first_name": "Candida", - "last_name": "Wortham", + "first_name": "Michell", + "last_name": "Dabbs", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -100986,16 +100511,16 @@ }, { "model": "evaluation.userprofile", - "pk": 109, + "pk": 167, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.879", + "last_login": "2012-01-18T17:00:11.471", "is_superuser": false, - "username": "flavia.camp.ext", - "email": "[email protected]", + "username": "joaquina.shackelford.ext", + "email": "[email protected]", "title": null, - "first_name": "Flavia", - "last_name": "Camp", + "first_name": "Joaquina", + "last_name": "Shackelford", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101006,16 +100531,16 @@ }, { "model": "evaluation.userprofile", - "pk": 110, + "pk": 168, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.883", + "last_login": "2012-01-18T17:00:11.476", "is_superuser": false, - "username": "louann.razo.ext", - "email": "[email protected]", + "username": "arlena.bickford.ext", + "email": "[email protected]", "title": null, - "first_name": "Louann", - "last_name": "Razo", + "first_name": "Arlena", + "last_name": "Bickford", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101026,16 +100551,16 @@ }, { "model": "evaluation.userprofile", - "pk": 111, + "pk": 169, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.888", + "last_login": "2014-01-24T14:51:25.860", "is_superuser": false, - "username": "catherina.andrade.ext", - "email": "[email protected]", + "username": "hue.fontenot.ext", + "email": "[email protected]", "title": null, - "first_name": "Catherina", - "last_name": "Andrade", + "first_name": "Hue", + "last_name": "Fontenot", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101046,16 +100571,16 @@ }, { "model": "evaluation.userprofile", - "pk": 112, + "pk": 170, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.897", + "last_login": "2012-01-18T17:00:11.484", "is_superuser": false, - "username": "twanna.kent.ext", - "email": "[email protected]", + "username": "vennie.neil.ext", + "email": "[email protected]", "title": null, - "first_name": "Twanna", - "last_name": "Kent", + "first_name": "Vennie", + "last_name": "Neil", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101066,16 +100591,16 @@ }, { "model": "evaluation.userprofile", - "pk": 113, + "pk": 173, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.901", + "last_login": "2014-03-31T09:05:09.526", "is_superuser": false, - "username": "charity.trombley.ext", - "email": "[email protected]", - "title": null, - "first_name": "Charity", - "last_name": "Trombley", + "username": "chieko.lehman", + "email": "[email protected]", + "title": "Prof. Dr.", + "first_name": "Chieko", + "last_name": "Lehman", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101086,16 +100611,16 @@ }, { "model": "evaluation.userprofile", - "pk": 114, + "pk": 174, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.906", + "last_login": "2014-04-10T15:15:03.398", "is_superuser": false, - "username": "anitra.spence.ext", - "email": "[email protected]", - "title": null, - "first_name": "Anitra", - "last_name": "Spence", + "username": "lois.seibert", + "email": "[email protected]", + "title": "", + "first_name": "Lois", + "last_name": "Seibert", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101106,16 +100631,16 @@ }, { "model": "evaluation.userprofile", - "pk": 115, + "pk": 178, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T16:59:53.911", + "last_login": "2014-04-16T14:08:53.821", "is_superuser": false, - "username": "noble.hope.ext", - "email": "[email protected]", + "username": "lindsy.clement.ext", + "email": "[email protected]", "title": null, - "first_name": "Noble", - "last_name": "Hope", + "first_name": "Lindsy", + "last_name": "Clement", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101126,16 +100651,16 @@ }, { "model": "evaluation.userprofile", - "pk": 116, + "pk": 180, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-07T14:28:32.793", + "last_login": "2012-01-18T17:00:16.101", "is_superuser": false, - "username": "hugh.runyon", - "email": "[email protected]", - "title": "Dr.-Ing.", - "first_name": "Hugh", - "last_name": "Runyon", + "username": "dan.jack.ext", + "email": "[email protected]", + "title": null, + "first_name": "Dan", + "last_name": "Jack", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101146,16 +100671,16 @@ }, { "model": "evaluation.userprofile", - "pk": 117, + "pk": 181, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:02.312", + "last_login": "2013-10-08T08:44:34.568", "is_superuser": false, - "username": "dara.goforth.ext", - "email": "[email protected]", - "title": null, - "first_name": "Dara", - "last_name": "Goforth", + "username": "denisha.chance", + "email": "[email protected]", + "title": "", + "first_name": "Denisha", + "last_name": "Chance", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101166,16 +100691,16 @@ }, { "model": "evaluation.userprofile", - "pk": 118, + "pk": 182, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:02.319", + "last_login": "2012-01-18T17:00:16.110", "is_superuser": false, - "username": "tomiko.almanza.ext", - "email": "[email protected]", + "username": "kraig.mcfarlane.ext", + "email": "[email protected]", "title": null, - "first_name": "Tomiko", - "last_name": "Almanza", + "first_name": "Kraig", + "last_name": "Mcfarlane", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101186,16 +100711,16 @@ }, { "model": "evaluation.userprofile", - "pk": 119, + "pk": 184, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:02.324", + "last_login": "2013-01-18T16:39:13.623", "is_superuser": false, - "username": "sharlene.lindsay.ext", - "email": "[email protected]", - "title": null, - "first_name": "Sharlene", - "last_name": "Lindsay", + "username": "katherin.vandiver", + "email": "[email protected]", + "title": "", + "first_name": "Katherin", + "last_name": "Vandiver", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101206,16 +100731,16 @@ }, { "model": "evaluation.userprofile", - "pk": 120, + "pk": 186, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-08T12:55:29.453", + "last_login": "2012-01-18T17:00:16.229", "is_superuser": false, - "username": "diane.carlton", - "email": "[email protected]", + "username": "ranae.fry.ext", + "email": "[email protected]", "title": "", - "first_name": "Diane", - "last_name": "Carlton", + "first_name": "Ranae", + "last_name": "Fry", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101226,16 +100751,16 @@ }, { "model": "evaluation.userprofile", - "pk": 121, + "pk": 191, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:02.334", + "last_login": "2014-05-05T09:17:42.420", "is_superuser": false, - "username": "chau.lemaster.ext", - "email": "[email protected]", - "title": null, - "first_name": "Chau", - "last_name": "Lemaster", + "username": "errol.simon", + "email": "[email protected]", + "title": "", + "first_name": "Errol", + "last_name": "Simon", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101246,16 +100771,16 @@ }, { "model": "evaluation.userprofile", - "pk": 122, + "pk": 192, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:02.340", + "last_login": "2012-12-17T13:59:04.698", "is_superuser": false, - "username": "octavio.weatherly.ext", - "email": "[email protected]", + "username": "oren.hauser.ext", + "email": "[email protected]", "title": null, - "first_name": "Octavio", - "last_name": "Weatherly", + "first_name": "Oren", + "last_name": "Hauser", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101266,16 +100791,16 @@ }, { "model": "evaluation.userprofile", - "pk": 123, + "pk": 197, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:02.352", + "last_login": "2012-01-18T17:00:17.058", "is_superuser": false, - "username": "selma.dabney.ext", - "email": "[email protected]", + "username": "katelynn.bowers.ext", + "email": "[email protected]", "title": null, - "first_name": "Selma", - "last_name": "Dabney", + "first_name": "Katelynn", + "last_name": "Bowers", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101286,16 +100811,16 @@ }, { "model": "evaluation.userprofile", - "pk": 124, + "pk": 200, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:02.904", + "last_login": "2014-04-16T14:09:00.405", "is_superuser": false, - "username": "tyrone.wild.ext", - "email": "[email protected]", - "title": null, - "first_name": "Tyrone", - "last_name": "Wild", + "username": "randolph.patrick", + "email": "[email protected]", + "title": "", + "first_name": "Randolph", + "last_name": "Patrick", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101306,16 +100831,16 @@ }, { "model": "evaluation.userprofile", - "pk": 125, + "pk": 201, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:02.933", + "last_login": "2012-01-18T17:00:17.091", "is_superuser": false, - "username": "christel.skinner.ext", - "email": "[email protected]", + "username": "flora.ly.ext", + "email": "[email protected]", "title": null, - "first_name": "Christel", - "last_name": "Skinner", + "first_name": "Flora", + "last_name": "Ly", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101326,16 +100851,16 @@ }, { "model": "evaluation.userprofile", - "pk": 126, + "pk": 202, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:02.960", + "last_login": "2012-01-18T17:00:17.098", "is_superuser": false, - "username": "tilda.gallant.ext", - "email": "[email protected]", + "username": "genaro.durbin.ext", + "email": "[email protected]", "title": null, - "first_name": "Tilda", - "last_name": "Gallant", + "first_name": "Genaro", + "last_name": "Durbin", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101346,46 +100871,38 @@ }, { "model": "evaluation.userprofile", - "pk": 127, + "pk": 204, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-02T13:51:03.991", + "last_login": "2014-04-14T14:18:59.405", "is_superuser": false, - "username": "elena.kline", - "email": "[email protected]", + "username": "lizabeth.steward", + "email": "[email protected]", "title": "Prof. Dr.", - "first_name": "Elena", - "last_name": "Kline", + "first_name": "Lizabeth", + "last_name": "Steward", "login_key": null, "login_key_valid_until": null, "groups": [], "user_permissions": [], "delegates": [ - 2369, - 2136, - 2143, - 169, - 14, - 2347, - 18 + 181 ], - "cc_users": [ - 2360 - ] + "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 128, + "pk": 205, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.281", + "last_login": "2012-01-18T17:00:22.769", "is_superuser": false, - "username": "babette.noble.ext", - "email": "[email protected]", + "username": "jarvis.woodbury.ext", + "email": "[email protected]", "title": null, - "first_name": "Babette", - "last_name": "Noble", + "first_name": "Jarvis", + "last_name": "Woodbury", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101396,36 +100913,38 @@ }, { "model": "evaluation.userprofile", - "pk": 129, + "pk": 207, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.287", + "last_login": "2012-01-23T11:31:00.867", "is_superuser": false, - "username": "donita.desantis.ext", - "email": "[email protected]", - "title": null, - "first_name": "Donita", - "last_name": "Desantis", + "username": "ellsworth.thornburg", + "email": "[email protected]", + "title": "Dr.", + "first_name": "Ellsworth", + "last_name": "Thornburg", "login_key": null, "login_key_valid_until": null, "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 484 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 130, + "pk": 208, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.293", + "last_login": "2013-09-13T07:24:33.096", "is_superuser": false, - "username": "tameka.babcock.ext", - "email": "[email protected]", - "title": null, - "first_name": "Tameka", - "last_name": "Babcock", + "username": "gabriela.carlisle", + "email": "[email protected]", + "title": "", + "first_name": "Gabriela", + "last_name": "Carlisle", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101436,16 +100955,16 @@ }, { "model": "evaluation.userprofile", - "pk": 131, + "pk": 210, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.299", + "last_login": "2012-01-18T17:00:23.106", "is_superuser": false, - "username": "nidia.stuart.ext", - "email": "[email protected]", + "username": "fleta.hirsch.ext", + "email": "[email protected]", "title": null, - "first_name": "Nidia", - "last_name": "Stuart", + "first_name": "Fleta", + "last_name": "Hirsch", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101456,16 +100975,16 @@ }, { "model": "evaluation.userprofile", - "pk": 132, + "pk": 212, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.303", + "last_login": "2012-01-18T17:00:23.406", "is_superuser": false, - "username": "marina.welsh.ext", - "email": "[email protected]", - "title": null, - "first_name": "Marina", - "last_name": "Welsh", + "username": "ardath.estrella.ext", + "email": "[email protected]", + "title": "Dr.", + "first_name": "Ardath", + "last_name": "Estrella", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101476,16 +100995,16 @@ }, { "model": "evaluation.userprofile", - "pk": 133, + "pk": 214, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.309", + "last_login": "2012-01-18T17:00:27.512", "is_superuser": false, - "username": "benita.sage.ext", - "email": "[email protected]", + "username": "annice.villalobos.ext", + "email": "[email protected]", "title": null, - "first_name": "Benita", - "last_name": "Sage", + "first_name": "Annice", + "last_name": "Villalobos", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101496,16 +101015,16 @@ }, { "model": "evaluation.userprofile", - "pk": 134, + "pk": 217, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.313", + "last_login": "2013-05-31T09:41:52.662", "is_superuser": false, - "username": "farrah.rico.ext", - "email": "[email protected]", + "username": "tanna.worsham.ext", + "email": "[email protected]", "title": null, - "first_name": "Farrah", - "last_name": "Rico", + "first_name": "Tanna", + "last_name": "Worsham", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101516,16 +101035,16 @@ }, { "model": "evaluation.userprofile", - "pk": 135, + "pk": 219, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.321", + "last_login": "2012-01-18T17:00:27.558", "is_superuser": false, - "username": "mercedes.berry.ext", - "email": "[email protected]", + "username": "wilmer.mcmillian.ext", + "email": "[email protected]", "title": null, - "first_name": "Mercedes", - "last_name": "Berry", + "first_name": "Wilmer", + "last_name": "Mcmillian", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101536,16 +101055,16 @@ }, { "model": "evaluation.userprofile", - "pk": 136, + "pk": 221, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-23T10:38:17.604", + "last_login": "2012-01-18T17:00:27.674", "is_superuser": false, - "username": "vern.leal.ext", - "email": "[email protected]", + "username": "mitzi.sparkman.ext", + "email": "[email protected]", "title": null, - "first_name": "Vern", - "last_name": "Leal", + "first_name": "Mitzi", + "last_name": "Sparkman", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101556,36 +101075,39 @@ }, { "model": "evaluation.userprofile", - "pk": 137, + "pk": 222, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.331", + "last_login": "2014-03-31T09:25:26.263", "is_superuser": false, - "username": "selena.mattson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Selena", - "last_name": "Mattson", + "username": "evie.martz", + "email": "[email protected]", + "title": "Prof. Dr.", + "first_name": "Evie", + "last_name": "Martz", "login_key": null, "login_key_valid_until": null, "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 419, + 1125 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 138, + "pk": 228, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.335", + "last_login": "2012-01-18T17:00:29.850", "is_superuser": false, - "username": "nicolas.hamrick.ext", - "email": "[email protected]", + "username": "deborah.ives.ext", + "email": "[email protected]", "title": null, - "first_name": "Nicolas", - "last_name": "Hamrick", + "first_name": "Deborah", + "last_name": "Ives", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101596,16 +101118,16 @@ }, { "model": "evaluation.userprofile", - "pk": 139, + "pk": 229, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.340", + "last_login": "2012-01-18T17:00:29.856", "is_superuser": false, - "username": "cathrine.collette.ext", - "email": "[email protected]", + "username": "rea.parkinson.ext", + "email": "[email protected]", "title": null, - "first_name": "Cathrine", - "last_name": "Collette", + "first_name": "Rea", + "last_name": "Parkinson", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101616,16 +101138,16 @@ }, { "model": "evaluation.userprofile", - "pk": 140, + "pk": 232, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-08T14:50:24.419", + "last_login": "2012-05-03T18:45:59.229", "is_superuser": false, - "username": "orval.cheung.ext", - "email": "[email protected]", - "title": null, - "first_name": "Orval", - "last_name": "Cheung", + "username": "ebony.murray", + "email": "[email protected]", + "title": "", + "first_name": "Ebony", + "last_name": "Murray", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101636,56 +101158,62 @@ }, { "model": "evaluation.userprofile", - "pk": 141, + "pk": 234, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-11-02T10:53:23.655", + "last_login": "2014-01-23T09:38:18.308", "is_superuser": false, - "username": "cherry.doughty", - "email": "[email protected]", - "title": null, - "first_name": "Cherry", - "last_name": "Doughty", + "username": "lahoma.gage", + "email": "[email protected]", + "title": "Prof. Dr.", + "first_name": "Lahoma", + "last_name": "Gage", "login_key": null, "login_key_valid_until": null, "groups": [], "user_permissions": [], - "delegates": [], - "cc_users": [] + "delegates": [ + 318 + ], + "cc_users": [ + 2359 + ] } }, { "model": "evaluation.userprofile", - "pk": 142, + "pk": 236, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.355", + "last_login": "2014-04-05T20:53:56.568", "is_superuser": false, - "username": "apryl.torres.ext", - "email": "[email protected]", - "title": null, - "first_name": "Apryl", - "last_name": "Torres", + "username": "ingeborg.herring", + "email": "[email protected]", + "title": "Prof. Dr.", + "first_name": "Ingeborg", + "last_name": "Herring", "login_key": null, "login_key_valid_until": null, "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 408 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 143, + "pk": 237, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.359", + "last_login": "2012-01-18T17:00:35.883", "is_superuser": false, - "username": "shaunta.connell.ext", - "email": "[email protected]", - "title": null, - "first_name": "Shaunta", - "last_name": "Connell", + "username": "justina.huffman.ext", + "email": "[email protected]", + "title": "Dr.", + "first_name": "Justina", + "last_name": "Huffman", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101696,16 +101224,16 @@ }, { "model": "evaluation.userprofile", - "pk": 144, + "pk": 239, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.363", + "last_login": "2012-01-18T17:00:36.305", "is_superuser": false, - "username": "claris.popp.ext", - "email": "[email protected]", + "username": "penni.tremblay.ext", + "email": "[email protected]", "title": null, - "first_name": "Claris", - "last_name": "Popp", + "first_name": "Penni", + "last_name": "Tremblay", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101716,16 +101244,16 @@ }, { "model": "evaluation.userprofile", - "pk": 145, + "pk": 240, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T13:03:18.412", + "last_login": "2012-01-18T17:00:36.310", "is_superuser": false, - "username": "beth.carlton", - "email": "[email protected]", - "title": "", - "first_name": "Beth", - "last_name": "Carlton", + "username": "yen.booker.ext", + "email": "[email protected]", + "title": null, + "first_name": "Yen", + "last_name": "Booker", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101736,16 +101264,16 @@ }, { "model": "evaluation.userprofile", - "pk": 146, + "pk": 241, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.372", + "last_login": "2012-01-18T17:00:36.352", "is_superuser": false, - "username": "marge.gilson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Marge", - "last_name": "Gilson", + "username": "karl.tuttle.ext", + "email": "[email protected]", + "title": "Dr.", + "first_name": "Karl", + "last_name": "Tuttle", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101756,76 +101284,84 @@ }, { "model": "evaluation.userprofile", - "pk": 147, + "pk": 249, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.377", + "last_login": "2014-05-13T15:15:20.699", "is_superuser": false, - "username": "gia.fincher.ext", - "email": "[email protected]", - "title": null, - "first_name": "Gia", - "last_name": "Fincher", + "username": "sunni.hollingsworth", + "email": "[email protected]", + "title": "Dr.", + "first_name": "Sunni", + "last_name": "Hollingsworth", "login_key": null, "login_key_valid_until": null, "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 2217 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 148, + "pk": 251, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.381", + "last_login": "2013-07-02T10:30:52.845", "is_superuser": false, - "username": "lulu.irwin.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lulu", - "last_name": "Irwin", - "login_key": null, - "login_key_valid_until": null, + "username": "kindra.hancock.ext", + "email": "[email protected]", + "title": "Prof.-Dr.", + "first_name": "Kindra", + "last_name": "Hancock", + "login_key": 841793788, + "login_key_valid_until": "2013-09-30", "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 965, + 945 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 149, + "pk": 255, "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.386", + "password": "pbkdf2_sha256$20000$WYMx4NnprgNS$D7foSqb66b1TSi9a1CZRHA2MNXyeSRT/nmcDGXEGvkk=", + "last_login": "2015-11-08T12:21:35.100", "is_superuser": false, - "username": "drucilla.tillery.ext", - "email": "[email protected]", - "title": null, - "first_name": "Drucilla", - "last_name": "Tillery", + "username": "responsible", + "email": "[email protected]", + "title": "Prof. Dr.", + "first_name": "", + "last_name": "responsible", "login_key": null, "login_key_valid_until": null, "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 591, + 482 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 150, + "pk": 260, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.391", + "last_login": "2012-01-18T17:01:05.685", "is_superuser": false, - "username": "cassy.loera.ext", - "email": "[email protected]", + "username": "jana.faust.ext", + "email": "[email protected]", "title": null, - "first_name": "Cassy", - "last_name": "Loera", + "first_name": "Jana", + "last_name": "Faust", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101836,16 +101372,16 @@ }, { "model": "evaluation.userprofile", - "pk": 151, + "pk": 264, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.396", + "last_login": "2012-01-18T17:01:07.988", "is_superuser": false, - "username": "eliza.callahan.ext", - "email": "[email protected]", + "username": "virgil.flanagan.ext", + "email": "[email protected]", "title": null, - "first_name": "Eliza", - "last_name": "Callahan", + "first_name": "Virgil", + "last_name": "Flanagan", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101856,16 +101392,16 @@ }, { "model": "evaluation.userprofile", - "pk": 152, + "pk": 266, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.400", + "last_login": "2012-01-18T17:01:07.996", "is_superuser": false, - "username": "clarita.healy.ext", - "email": "[email protected]", + "username": "karan.desimone.ext", + "email": "[email protected]", "title": null, - "first_name": "Clarita", - "last_name": "Healy", + "first_name": "Karan", + "last_name": "Desimone", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101876,16 +101412,16 @@ }, { "model": "evaluation.userprofile", - "pk": 153, + "pk": 267, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.409", + "last_login": "2013-02-21T15:59:05.727", "is_superuser": false, - "username": "richard.nathan.ext", - "email": "[email protected]", - "title": null, - "first_name": "Richard", - "last_name": "Nathan", + "username": "karine.prater", + "email": "[email protected]", + "title": "", + "first_name": "Karine", + "last_name": "Prater", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101896,16 +101432,16 @@ }, { "model": "evaluation.userprofile", - "pk": 154, + "pk": 270, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.413", + "last_login": "2012-01-18T17:01:08.015", "is_superuser": false, - "username": "natasha.tavares.ext", - "email": "[email protected]", + "username": "daisey.isaacs.ext", + "email": "[email protected]", "title": null, - "first_name": "Natasha", - "last_name": "Tavares", + "first_name": "Daisey", + "last_name": "Isaacs", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101916,16 +101452,16 @@ }, { "model": "evaluation.userprofile", - "pk": 155, + "pk": 272, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.417", + "last_login": "2012-01-18T17:01:08.024", "is_superuser": false, - "username": "verla.krueger.ext", - "email": "[email protected]", + "username": "domonique.mayfield.ext", + "email": "[email protected]", "title": null, - "first_name": "Verla", - "last_name": "Krueger", + "first_name": "Domonique", + "last_name": "Mayfield", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101936,16 +101472,16 @@ }, { "model": "evaluation.userprofile", - "pk": 156, + "pk": 274, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.421", + "last_login": "2012-03-16T11:54:45.439", "is_superuser": false, - "username": "lakita.palumbo.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lakita", - "last_name": "Palumbo", + "username": "janna.langlois", + "email": "[email protected]", + "title": "", + "first_name": "Janna", + "last_name": "Langlois", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101956,16 +101492,16 @@ }, { "model": "evaluation.userprofile", - "pk": 157, + "pk": 275, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.426", + "last_login": "2012-01-18T17:01:08.037", "is_superuser": false, - "username": "tod.boucher.ext", - "email": "[email protected]", + "username": "jospeh.nagle.ext", + "email": "[email protected]", "title": null, - "first_name": "Tod", - "last_name": "Boucher", + "first_name": "Jospeh", + "last_name": "Nagle", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101976,16 +101512,16 @@ }, { "model": "evaluation.userprofile", - "pk": 158, + "pk": 276, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.432", + "last_login": "2012-01-18T17:01:08.042", "is_superuser": false, - "username": "eugene.upton.ext", - "email": "[email protected]", + "username": "corliss.isaacson.ext", + "email": "[email protected]", "title": null, - "first_name": "Eugene", - "last_name": "Upton", + "first_name": "Corliss", + "last_name": "Isaacson", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -101996,16 +101532,16 @@ }, { "model": "evaluation.userprofile", - "pk": 159, + "pk": 277, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.436", + "last_login": "2012-01-18T17:01:09.026", "is_superuser": false, - "username": "elfrieda.brigham.ext", - "email": "[email protected]", + "username": "sunny.manson.ext", + "email": "[email protected]", "title": null, - "first_name": "Elfrieda", - "last_name": "Brigham", + "first_name": "Sunny", + "last_name": "Manson", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102016,16 +101552,16 @@ }, { "model": "evaluation.userprofile", - "pk": 160, + "pk": 280, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.440", + "last_login": "2014-04-23T16:22:35.918", "is_superuser": false, - "username": "roslyn.edwards.ext", - "email": "[email protected]", - "title": null, - "first_name": "Roslyn", - "last_name": "Edwards", + "username": "portia.hoffman", + "email": "[email protected]", + "title": "Dr.-Ing.", + "first_name": "Portia", + "last_name": "Hoffman", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102036,16 +101572,16 @@ }, { "model": "evaluation.userprofile", - "pk": 161, + "pk": 281, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-25T15:41:02.977", + "last_login": "2012-01-18T17:01:09.052", "is_superuser": false, - "username": "michell.dabbs", - "email": "[email protected]", + "username": "ema.clevenger.ext", + "email": "[email protected]", "title": null, - "first_name": "Michell", - "last_name": "Dabbs", + "first_name": "Ema", + "last_name": "Clevenger", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102056,56 +101592,16 @@ }, { "model": "evaluation.userprofile", - "pk": 162, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.449", - "is_superuser": false, - "username": "billie.hicks.ext", - "email": "[email protected]", - "title": null, - "first_name": "Billie", - "last_name": "Hicks", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 163, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.453", - "is_superuser": false, - "username": "ruthie.starks.ext", - "email": "[email protected]", - "title": null, - "first_name": "Ruthie", - "last_name": "Starks", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 164, + "pk": 282, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.457", + "last_login": "2012-01-18T17:01:09.058", "is_superuser": false, - "username": "vanita.mickens.ext", - "email": "[email protected]", + "username": "erlene.pinkston.ext", + "email": "[email protected]", "title": null, - "first_name": "Vanita", - "last_name": "Mickens", + "first_name": "Erlene", + "last_name": "Pinkston", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102116,36 +101612,39 @@ }, { "model": "evaluation.userprofile", - "pk": 165, + "pk": 283, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.461", + "last_login": "2013-06-19T13:57:42.796", "is_superuser": false, - "username": "thomasine.heller.ext", - "email": "[email protected]", - "title": null, - "first_name": "Thomasine", - "last_name": "Heller", - "login_key": null, - "login_key_valid_until": null, + "username": "darlena.holliman.ext", + "email": "[email protected]", + "title": "Hr.", + "first_name": "Darlena", + "last_name": "Holliman", + "login_key": 1551612459, + "login_key_valid_until": "2013-09-17", "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 2217, + 249 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 166, + "pk": 284, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.467", + "last_login": "2012-01-18T17:01:09.147", "is_superuser": false, - "username": "shaquana.fenner.ext", - "email": "[email protected]", + "username": "lacy.rudd.ext", + "email": "[email protected]", "title": null, - "first_name": "Shaquana", - "last_name": "Fenner", + "first_name": "Lacy", + "last_name": "Rudd", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102156,16 +101655,16 @@ }, { "model": "evaluation.userprofile", - "pk": 167, + "pk": 286, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.471", + "last_login": "2013-12-18T19:17:21.456", "is_superuser": false, - "username": "joaquina.shackelford.ext", - "email": "[email protected]", - "title": null, - "first_name": "Joaquina", - "last_name": "Shackelford", + "username": "herb.wicks", + "email": "[email protected]", + "title": "", + "first_name": "Herb", + "last_name": "Wicks", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102176,16 +101675,16 @@ }, { "model": "evaluation.userprofile", - "pk": 168, + "pk": 289, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.476", + "last_login": "2012-01-18T17:01:09.673", "is_superuser": false, - "username": "arlena.bickford.ext", - "email": "[email protected]", + "username": "tarah.steed.ext", + "email": "[email protected]", "title": null, - "first_name": "Arlena", - "last_name": "Bickford", + "first_name": "Tarah", + "last_name": "Steed", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102196,16 +101695,16 @@ }, { "model": "evaluation.userprofile", - "pk": 169, + "pk": 292, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-24T14:51:25.860", + "last_login": "2012-01-18T17:01:11.045", "is_superuser": false, - "username": "hue.fontenot.ext", - "email": "[email protected]", + "username": "trudie.clawson.ext", + "email": "[email protected]", "title": null, - "first_name": "Hue", - "last_name": "Fontenot", + "first_name": "Trudie", + "last_name": "Clawson", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102216,16 +101715,16 @@ }, { "model": "evaluation.userprofile", - "pk": 170, + "pk": 293, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.484", + "last_login": "2012-01-18T17:01:11.292", "is_superuser": false, - "username": "vennie.neil.ext", - "email": "[email protected]", - "title": null, - "first_name": "Vennie", - "last_name": "Neil", + "username": "gavin.clemmons.ext", + "email": "[email protected]", + "title": "Prof. Dr.", + "first_name": "Gavin", + "last_name": "Clemmons", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102236,16 +101735,16 @@ }, { "model": "evaluation.userprofile", - "pk": 171, + "pk": 295, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.490", + "last_login": "2012-01-18T17:01:13.558", "is_superuser": false, - "username": "terrence.dunlap.ext", - "email": "[email protected]", + "username": "ruthie.hermann.ext", + "email": "[email protected]", "title": null, - "first_name": "Terrence", - "last_name": "Dunlap", + "first_name": "Ruthie", + "last_name": "Hermann", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102256,16 +101755,16 @@ }, { "model": "evaluation.userprofile", - "pk": 172, + "pk": 296, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.495", + "last_login": "2012-07-11T10:45:55.678", "is_superuser": false, - "username": "raylene.zavala.ext", - "email": "[email protected]", + "username": "royce.vann.ext", + "email": "[email protected]", "title": null, - "first_name": "Raylene", - "last_name": "Zavala", + "first_name": "Royce", + "last_name": "Vann", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102276,98 +101775,38 @@ }, { "model": "evaluation.userprofile", - "pk": 173, + "pk": 300, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T09:05:09.526", + "last_login": "2012-01-18T17:01:14.067", "is_superuser": false, - "username": "chieko.lehman", - "email": "[email protected]", + "username": "charity.leonard", + "email": "[email protected]", "title": "Prof. Dr.", - "first_name": "Chieko", - "last_name": "Lehman", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [ - 2364 - ] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 174, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-10T15:15:03.398", - "is_superuser": false, - "username": "lois.seibert", - "email": "[email protected]", - "title": "", - "first_name": "Lois", - "last_name": "Seibert", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 175, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:11.712", - "is_superuser": false, - "username": "minta.devlin.ext", - "email": "[email protected]", - "title": null, - "first_name": "Minta", - "last_name": "Devlin", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 176, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.075", - "is_superuser": false, - "username": "willie.armijo.ext", - "email": "[email protected]", - "title": null, - "first_name": "Willie", - "last_name": "Armijo", + "first_name": "Charity", + "last_name": "Leonard", "login_key": null, "login_key_valid_until": null, "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 484 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 177, + "pk": 304, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.082", + "last_login": "2012-01-18T17:01:14.714", "is_superuser": false, - "username": "merilyn.catlett.ext", - "email": "[email protected]", + "username": "nadia.robison.ext", + "email": "[email protected]", "title": null, - "first_name": "Merilyn", - "last_name": "Catlett", + "first_name": "Nadia", + "last_name": "Robison", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102378,36 +101817,39 @@ }, { "model": "evaluation.userprofile", - "pk": 178, + "pk": 310, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-16T14:08:53.821", + "last_login": "2014-04-05T16:59:12.204", "is_superuser": false, - "username": "lindsy.clement.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lindsy", - "last_name": "Clement", + "username": "amos.benoit", + "email": "[email protected]", + "title": "Prof. Dr.-Ing.", + "first_name": "Amos", + "last_name": "Benoit", "login_key": null, "login_key_valid_until": null, "groups": [], "user_permissions": [], - "delegates": [], + "delegates": [ + 2217, + 249 + ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 179, + "pk": 313, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.091", + "last_login": "2012-01-18T17:01:15.916", "is_superuser": false, - "username": "arlie.goebel.ext", - "email": "[email protected]", + "username": "michele.cano.ext", + "email": "[email protected]", "title": null, - "first_name": "Arlie", - "last_name": "Goebel", + "first_name": "Michele", + "last_name": "Cano", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102418,16 +101860,16 @@ }, { "model": "evaluation.userprofile", - "pk": 180, + "pk": 317, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.101", + "last_login": "2012-01-18T17:01:17.316", "is_superuser": false, - "username": "dan.jack.ext", - "email": "[email protected]", + "username": "oscar.erickson.ext", + "email": "[email protected]", "title": null, - "first_name": "Dan", - "last_name": "Jack", + "first_name": "Oscar", + "last_name": "Erickson", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102438,36 +101880,16 @@ }, { "model": "evaluation.userprofile", - "pk": 181, + "pk": 318, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-08T08:44:34.568", + "last_login": "2014-04-24T12:36:26.705", "is_superuser": false, - "username": "denisha.chance", - "email": "[email protected]", + "username": "laurence.tipton", + "email": "[email protected]", "title": "", - "first_name": "Denisha", - "last_name": "Chance", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 182, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.110", - "is_superuser": false, - "username": "kraig.mcfarlane.ext", - "email": "[email protected]", - "title": null, - "first_name": "Kraig", - "last_name": "Mcfarlane", + "first_name": "Laurence", + "last_name": "Tipton", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102478,36 +101900,16 @@ }, { "model": "evaluation.userprofile", - "pk": 183, + "pk": 321, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.115", + "last_login": "2012-01-18T17:01:46.857", "is_superuser": false, - "username": "helene.pogue.ext", - "email": "[email protected]", + "username": "devorah.biddle.ext", + "email": "[email protected]", "title": null, - "first_name": "Helene", - "last_name": "Pogue", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 184, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-18T16:39:13.623", - "is_superuser": false, - "username": "katherin.vandiver", - "email": "[email protected]", - "title": "", - "first_name": "Katherin", - "last_name": "Vandiver", + "first_name": "Devorah", + "last_name": "Biddle", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102518,16 +101920,16 @@ }, { "model": "evaluation.userprofile", - "pk": 185, + "pk": 322, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.126", + "last_login": "2012-01-18T17:01:46.864", "is_superuser": false, - "username": "cherrie.apple.ext", - "email": "[email protected]", + "username": "li.hargrove.ext", + "email": "[email protected]", "title": null, - "first_name": "Cherrie", - "last_name": "Apple", + "first_name": "Li", + "last_name": "Hargrove", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102538,56 +101940,16 @@ }, { "model": "evaluation.userprofile", - "pk": 186, + "pk": 323, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.229", + "last_login": "2012-05-07T18:42:15.184", "is_superuser": false, - "username": "ranae.fry.ext", - "email": "[email protected]", + "username": "jolene.squires", + "email": "[email protected]", "title": "", - "first_name": "Ranae", - "last_name": "Fry", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 187, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.945", - "is_superuser": false, - "username": "larita.rivard.ext", - "email": "[email protected]", - "title": null, - "first_name": "Larita", - "last_name": "Rivard", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 188, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.950", - "is_superuser": false, - "username": "thalia.kimble.ext", - "email": "[email protected]", - "title": null, - "first_name": "Thalia", - "last_name": "Kimble", + "first_name": "Jolene", + "last_name": "Squires", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102598,16 +101960,16 @@ }, { "model": "evaluation.userprofile", - "pk": 189, + "pk": 324, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.955", + "last_login": "2012-01-18T17:01:46.874", "is_superuser": false, - "username": "florence.horne.ext", - "email": "[email protected]", + "username": "cori.luttrell.ext", + "email": "[email protected]", "title": null, - "first_name": "Florence", - "last_name": "Horne", + "first_name": "Cori", + "last_name": "Luttrell", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102618,16 +101980,16 @@ }, { "model": "evaluation.userprofile", - "pk": 190, + "pk": 325, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:16.964", + "last_login": "2012-01-18T17:01:46.950", "is_superuser": false, - "username": "michel.durant.ext", - "email": "[email protected]", + "username": "siu.rhoads.ext", + "email": "[email protected]", "title": null, - "first_name": "Michel", - "last_name": "Durant", + "first_name": "Siu", + "last_name": "Rhoads", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102638,156 +102000,16 @@ }, { "model": "evaluation.userprofile", - "pk": 191, + "pk": 326, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-05T09:17:42.420", + "last_login": "2012-04-02T17:52:02.729", "is_superuser": false, - "username": "errol.simon", - "email": "[email protected]", + "username": "junie.hicks", + "email": "[email protected]", "title": "", - "first_name": "Errol", - "last_name": "Simon", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 192, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-12-17T13:59:04.698", - "is_superuser": false, - "username": "oren.hauser.ext", - "email": "[email protected]", - "title": null, - "first_name": "Oren", - "last_name": "Hauser", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 193, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:17.014", - "is_superuser": false, - "username": "tyree.calderon.ext", - "email": "[email protected]", - "title": null, - "first_name": "Tyree", - "last_name": "Calderon", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 194, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:17.031", - "is_superuser": false, - "username": "dallas.tong.ext", - "email": "[email protected]", - "title": null, - "first_name": "Dallas", - "last_name": "Tong", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 195, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:17.038", - "is_superuser": false, - "username": "maryln.lemay.ext", - "email": "[email protected]", - "title": null, - "first_name": "Maryln", - "last_name": "Lemay", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 196, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:17.043", - "is_superuser": false, - "username": "margie.delong.ext", - "email": "[email protected]", - "title": null, - "first_name": "Margie", - "last_name": "Delong", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 197, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:17.058", - "is_superuser": false, - "username": "katelynn.bowers.ext", - "email": "[email protected]", - "title": null, - "first_name": "Katelynn", - "last_name": "Bowers", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 198, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:17.063", - "is_superuser": false, - "username": "aleisha.gerard.ext", - "email": "[email protected]", - "title": null, - "first_name": "Aleisha", - "last_name": "Gerard", + "first_name": "Junie", + "last_name": "Hicks", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -102798,4657 +102020,16 @@ }, { "model": "evaluation.userprofile", - "pk": 199, + "pk": 329, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:17.070", - "is_superuser": false, - "username": "melodee.hales.ext", - "email": "[email protected]", - "title": null, - "first_name": "Melodee", - "last_name": "Hales", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 200, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-16T14:09:00.405", - "is_superuser": false, - "username": "randolph.patrick", - "email": "[email protected]", - "title": "", - "first_name": "Randolph", - "last_name": "Patrick", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 201, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:17.091", - "is_superuser": false, - "username": "flora.ly.ext", - "email": "[email protected]", - "title": null, - "first_name": "Flora", - "last_name": "Ly", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 202, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:17.098", - "is_superuser": false, - "username": "genaro.durbin.ext", - "email": "[email protected]", - "title": null, - "first_name": "Genaro", - "last_name": "Durbin", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 203, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:17.107", - "is_superuser": false, - "username": "hoa.markham.ext", - "email": "[email protected]", - "title": null, - "first_name": "Hoa", - "last_name": "Markham", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 204, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-14T14:18:59.405", - "is_superuser": false, - "username": "lizabeth.steward", - "email": "[email protected]", - "title": "Prof. Dr.", - "first_name": "Lizabeth", - "last_name": "Steward", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [ - 181 - ], - "cc_users": [ - 2363 - ] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 205, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:22.769", - "is_superuser": false, - "username": "jarvis.woodbury.ext", - "email": "[email protected]", - "title": null, - "first_name": "Jarvis", - "last_name": "Woodbury", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 206, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:22.780", - "is_superuser": false, - "username": "mika.gunther.ext", - "email": "[email protected]", - "title": null, - "first_name": "Mika", - "last_name": "Gunther", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 207, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-23T11:31:00.867", - "is_superuser": false, - "username": "ellsworth.thornburg", - "email": "[email protected]", - "title": "Dr.", - "first_name": "Ellsworth", - "last_name": "Thornburg", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [ - 484 - ], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 208, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-09-13T07:24:33.096", - "is_superuser": false, - "username": "gabriela.carlisle", - "email": "[email protected]", - "title": "", - "first_name": "Gabriela", - "last_name": "Carlisle", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 209, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:22.870", - "is_superuser": false, - "username": "floyd.brice.ext", - "email": "[email protected]", - "title": null, - "first_name": "Floyd", - "last_name": "Brice", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 210, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:23.106", - "is_superuser": false, - "username": "fleta.hirsch.ext", - "email": "[email protected]", - "title": null, - "first_name": "Fleta", - "last_name": "Hirsch", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 211, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:23.114", - "is_superuser": false, - "username": "tory.dodd.ext", - "email": "[email protected]", - "title": null, - "first_name": "Tory", - "last_name": "Dodd", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 212, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:23.406", - "is_superuser": false, - "username": "ardath.estrella.ext", - "email": "[email protected]", - "title": "Dr.", - "first_name": "Ardath", - "last_name": "Estrella", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 213, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:27.506", - "is_superuser": false, - "username": "lauralee.labelle.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lauralee", - "last_name": "Labelle", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 214, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:27.512", - "is_superuser": false, - "username": "annice.villalobos.ext", - "email": "[email protected]", - "title": null, - "first_name": "Annice", - "last_name": "Villalobos", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 215, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:27.520", - "is_superuser": false, - "username": "magaly.worthington.ext", - "email": "[email protected]", - "title": null, - "first_name": "Magaly", - "last_name": "Worthington", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 216, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:27.525", - "is_superuser": false, - "username": "mae.ferguson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Mae", - "last_name": "Ferguson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 217, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-31T09:41:52.662", - "is_superuser": false, - "username": "tanna.worsham.ext", - "email": "[email protected]", - "title": null, - "first_name": "Tanna", - "last_name": "Worsham", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 218, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:27.539", - "is_superuser": false, - "username": "adria.hinojosa.ext", - "email": "[email protected]", - "title": null, - "first_name": "Adria", - "last_name": "Hinojosa", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 219, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:27.558", - "is_superuser": false, - "username": "wilmer.mcmillian.ext", - "email": "[email protected]", - "title": null, - "first_name": "Wilmer", - "last_name": "Mcmillian", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 220, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:27.570", - "is_superuser": false, - "username": "min.moody.ext", - "email": "[email protected]", - "title": null, - "first_name": "Min", - "last_name": "Moody", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 221, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:27.674", - "is_superuser": false, - "username": "mitzi.sparkman.ext", - "email": "[email protected]", - "title": null, - "first_name": "Mitzi", - "last_name": "Sparkman", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 222, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-31T09:25:26.263", - "is_superuser": false, - "username": "evie.martz", - "email": "[email protected]", - "title": "Prof. Dr.", - "first_name": "Evie", - "last_name": "Martz", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [ - 967, - 419, - 1125 - ], - "cc_users": [ - 2365 - ] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 223, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:29.806", - "is_superuser": false, - "username": "shyla.schott.ext", - "email": "[email protected]", - "title": null, - "first_name": "Shyla", - "last_name": "Schott", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 224, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:29.811", - "is_superuser": false, - "username": "deloise.fisk.ext", - "email": "[email protected]", - "title": null, - "first_name": "Deloise", - "last_name": "Fisk", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 225, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:29.823", - "is_superuser": false, - "username": "maggie.slade.ext", - "email": "[email protected]", - "title": null, - "first_name": "Maggie", - "last_name": "Slade", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 226, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:29.839", - "is_superuser": false, - "username": "ursula.bucher.ext", - "email": "[email protected]", - "title": null, - "first_name": "Ursula", - "last_name": "Bucher", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 227, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-29T10:35:21.810", - "is_superuser": false, - "username": "nolan.lamb", - "email": "[email protected]", - "title": "", - "first_name": "Nolan", - "last_name": "Lamb", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 228, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:29.850", - "is_superuser": false, - "username": "deborah.ives.ext", - "email": "[email protected]", - "title": null, - "first_name": "Deborah", - "last_name": "Ives", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 229, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:29.856", - "is_superuser": false, - "username": "rea.parkinson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Rea", - "last_name": "Parkinson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 230, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:29.865", - "is_superuser": false, - "username": "paula.vanmeter.ext", - "email": "[email protected]", - "title": null, - "first_name": "Paula", - "last_name": "Vanmeter", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 231, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:29.873", - "is_superuser": false, - "username": "gus.mcewen.ext", - "email": "[email protected]", - "title": null, - "first_name": "Gus", - "last_name": "Mcewen", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 232, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-05-03T18:45:59.229", - "is_superuser": false, - "username": "ebony.murray", - "email": "[email protected]", - "title": "", - "first_name": "Ebony", - "last_name": "Murray", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 233, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:30.224", - "is_superuser": false, - "username": "shaun.beeler.ext", - "email": "[email protected]", - "title": null, - "first_name": "Shaun", - "last_name": "Beeler", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 234, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-23T09:38:18.308", - "is_superuser": false, - "username": "lahoma.gage", - "email": "[email protected]", - "title": "Prof. Dr.", - "first_name": "Lahoma", - "last_name": "Gage", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [ - 318 - ], - "cc_users": [ - 2359 - ] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 235, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:35.807", - "is_superuser": false, - "username": "cami.lockett.ext", - "email": "[email protected]", - "title": null, - "first_name": "Cami", - "last_name": "Lockett", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 236, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T20:53:56.568", - "is_superuser": false, - "username": "ingeborg.herring", - "email": "[email protected]", - "title": "Prof. Dr.", - "first_name": "Ingeborg", - "last_name": "Herring", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [ - 408 - ], - "cc_users": [ - 2361 - ] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 237, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:35.883", - "is_superuser": false, - "username": "justina.huffman.ext", - "email": "[email protected]", - "title": "Dr.", - "first_name": "Justina", - "last_name": "Huffman", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 238, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:35.901", - "is_superuser": false, - "username": "jessica.timmons.ext", - "email": "[email protected]", - "title": null, - "first_name": "Jessica", - "last_name": "Timmons", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 239, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:36.305", - "is_superuser": false, - "username": "penni.tremblay.ext", - "email": "[email protected]", - "title": null, - "first_name": "Penni", - "last_name": "Tremblay", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 240, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:36.310", - "is_superuser": false, - "username": "yen.booker.ext", - "email": "[email protected]", - "title": null, - "first_name": "Yen", - "last_name": "Booker", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 241, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:36.352", - "is_superuser": false, - "username": "karl.tuttle.ext", - "email": "[email protected]", - "title": "Dr.", - "first_name": "Karl", - "last_name": "Tuttle", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 242, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:36.496", - "is_superuser": false, - "username": "porsha.mcgovern.ext", - "email": "[email protected]", - "title": null, - "first_name": "Porsha", - "last_name": "Mcgovern", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 243, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:36.500", - "is_superuser": false, - "username": "tameka.shay.ext", - "email": "[email protected]", - "title": null, - "first_name": "Tameka", - "last_name": "Shay", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 244, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:36.506", - "is_superuser": false, - "username": "lucio.stover.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lucio", - "last_name": "Stover", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 245, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:36.556", - "is_superuser": false, - "username": "lucrecia.bedard.ext", - "email": "[email protected]", - "title": "Dr.-Ing.", - "first_name": "Lucrecia", - "last_name": "Bedard", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 246, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:37.069", - "is_superuser": false, - "username": "maurine.crowell.ext", - "email": "[email protected]", - "title": null, - "first_name": "Maurine", - "last_name": "Crowell", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 247, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:37.202", - "is_superuser": false, - "username": "kenda.thomson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Kenda", - "last_name": "Thomson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 248, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:37.613", - "is_superuser": false, - "username": "so.hardee.ext", - "email": "[email protected]", - "title": "Prof. Dr.", - "first_name": "So", - "last_name": "Hardee", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 249, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-13T15:15:20.699", - "is_superuser": false, - "username": "sunni.hollingsworth", - "email": "[email protected]", - "title": "Dr.", - "first_name": "Sunni", - "last_name": "Hollingsworth", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [ - 2217, - 1112 - ], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 250, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:43.575", - "is_superuser": false, - "username": "nohemi.searcy.ext", - "email": "[email protected]", - "title": null, - "first_name": "Nohemi", - "last_name": "Searcy", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 251, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-02T10:30:52.845", - "is_superuser": false, - "username": "kindra.hancock.ext", - "email": "[email protected]", - "title": "Prof.-Dr.", - "first_name": "Kindra", - "last_name": "Hancock", - "login_key": 841793788, - "login_key_valid_until": "2013-09-30", - "groups": [], - "user_permissions": [], - "delegates": [ - 965, - 945 - ], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 252, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:54.689", - "is_superuser": false, - "username": "bronwyn.couch.ext", - "email": "[email protected]", - "title": null, - "first_name": "Bronwyn", - "last_name": "Couch", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 253, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:54.710", - "is_superuser": false, - "username": "andree.jacob.ext", - "email": "[email protected]", - "title": null, - "first_name": "Andree", - "last_name": "Jacob", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 254, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:55.845", - "is_superuser": false, - "username": "renea.wallis.ext", - "email": "[email protected]", - "title": null, - "first_name": "Renea", - "last_name": "Wallis", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 255, - "fields": { - "password": "pbkdf2_sha256$20000$WYMx4NnprgNS$D7foSqb66b1TSi9a1CZRHA2MNXyeSRT/nmcDGXEGvkk=", - "last_login": "2015-11-08T12:21:35.100", - "is_superuser": false, - "username": "responsible", - "email": "[email protected]", - "title": "Prof. Dr.", - "first_name": "", - "last_name": "responsible", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [ - 591, - 482 - ], - "cc_users": [ - 2362 - ] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 256, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:00:56.694", - "is_superuser": false, - "username": "refugia.munn.ext", - "email": "[email protected]", - "title": "Dr.-Ing.", - "first_name": "Refugia", - "last_name": "Munn", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 257, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-20T19:27:31.852", - "is_superuser": false, - "username": "shari.locklear", - "email": "[email protected]", - "title": "", - "first_name": "Shari", - "last_name": "Locklear", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 258, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:05.648", - "is_superuser": false, - "username": "anton.hayden", - "email": "[email protected]", - "title": "", - "first_name": "Anton", - "last_name": "Hayden", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 259, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:05.667", - "is_superuser": false, - "username": "dalila.brownell.ext", - "email": "[email protected]", - "title": null, - "first_name": "Dalila", - "last_name": "Brownell", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 260, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:05.685", - "is_superuser": false, - "username": "jana.faust.ext", - "email": "[email protected]", - "title": null, - "first_name": "Jana", - "last_name": "Faust", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 261, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:07.972", - "is_superuser": false, - "username": "harrison.conrad.ext", - "email": "[email protected]", - "title": null, - "first_name": "Harrison", - "last_name": "Conrad", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 262, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:07.977", - "is_superuser": false, - "username": "bula.archer.ext", - "email": "[email protected]", - "title": null, - "first_name": "Bula", - "last_name": "Archer", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 263, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:07.982", - "is_superuser": false, - "username": "cornelia.paquette.ext", - "email": "[email protected]", - "title": null, - "first_name": "Cornelia", - "last_name": "Paquette", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 264, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:07.988", - "is_superuser": false, - "username": "virgil.flanagan.ext", - "email": "[email protected]", - "title": null, - "first_name": "Virgil", - "last_name": "Flanagan", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 265, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:07.992", - "is_superuser": false, - "username": "salina.velasco.ext", - "email": "[email protected]", - "title": null, - "first_name": "Salina", - "last_name": "Velasco", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 266, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:07.996", - "is_superuser": false, - "username": "karan.desimone.ext", - "email": "[email protected]", - "title": null, - "first_name": "Karan", - "last_name": "Desimone", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 267, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-21T15:59:05.727", - "is_superuser": false, - "username": "karine.prater", - "email": "[email protected]", - "title": "", - "first_name": "Karine", - "last_name": "Prater", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 268, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:08.007", - "is_superuser": false, - "username": "stepanie.wallace.ext", - "email": "[email protected]", - "title": null, - "first_name": "Stepanie", - "last_name": "Wallace", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 269, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:08.011", - "is_superuser": false, - "username": "katelynn.prieto.ext", - "email": "[email protected]", - "title": null, - "first_name": "Katelynn", - "last_name": "Prieto", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 270, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:08.015", - "is_superuser": false, - "username": "daisey.isaacs.ext", - "email": "[email protected]", - "title": null, - "first_name": "Daisey", - "last_name": "Isaacs", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 271, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:08.020", - "is_superuser": false, - "username": "kathleen.weathers.ext", - "email": "[email protected]", - "title": null, - "first_name": "Kathleen", - "last_name": "Weathers", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 272, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:08.024", - "is_superuser": false, - "username": "domonique.mayfield.ext", - "email": "[email protected]", - "title": null, - "first_name": "Domonique", - "last_name": "Mayfield", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 273, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:08.029", - "is_superuser": false, - "username": "sasha.rice.ext", - "email": "[email protected]", - "title": null, - "first_name": "Sasha", - "last_name": "Rice", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 274, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-16T11:54:45.439", - "is_superuser": false, - "username": "janna.langlois", - "email": "[email protected]", - "title": "", - "first_name": "Janna", - "last_name": "Langlois", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 275, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:08.037", - "is_superuser": false, - "username": "jospeh.nagle.ext", - "email": "[email protected]", - "title": null, - "first_name": "Jospeh", - "last_name": "Nagle", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 276, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:08.042", - "is_superuser": false, - "username": "corliss.isaacson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Corliss", - "last_name": "Isaacson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 277, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.026", - "is_superuser": false, - "username": "sunny.manson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Sunny", - "last_name": "Manson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 278, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.034", - "is_superuser": false, - "username": "dusty.figueroa.ext", - "email": "[email protected]", - "title": null, - "first_name": "Dusty", - "last_name": "Figueroa", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 279, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.039", - "is_superuser": false, - "username": "chantelle.loya.ext", - "email": "[email protected]", - "title": null, - "first_name": "Chantelle", - "last_name": "Loya", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 280, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:22:35.918", - "is_superuser": false, - "username": "portia.hoffman", - "email": "[email protected]", - "title": "Dr.-Ing.", - "first_name": "Portia", - "last_name": "Hoffman", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 281, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.052", - "is_superuser": false, - "username": "ema.clevenger.ext", - "email": "[email protected]", - "title": null, - "first_name": "Ema", - "last_name": "Clevenger", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 282, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.058", - "is_superuser": false, - "username": "erlene.pinkston.ext", - "email": "[email protected]", - "title": null, - "first_name": "Erlene", - "last_name": "Pinkston", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 283, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-19T13:57:42.796", - "is_superuser": false, - "username": "darlena.holliman.ext", - "email": "[email protected]", - "title": "Hr.", - "first_name": "Darlena", - "last_name": "Holliman", - "login_key": 1551612459, - "login_key_valid_until": "2013-09-17", - "groups": [], - "user_permissions": [], - "delegates": [ - 2217, - 1112, - 249 - ], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 284, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.147", - "is_superuser": false, - "username": "lacy.rudd.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lacy", - "last_name": "Rudd", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 285, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.637", - "is_superuser": false, - "username": "ha.sumner.ext", - "email": "[email protected]", - "title": null, - "first_name": "Ha", - "last_name": "Sumner", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 286, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-18T19:17:21.456", - "is_superuser": false, - "username": "herb.wicks", - "email": "[email protected]", - "title": "", - "first_name": "Herb", - "last_name": "Wicks", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 287, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.651", - "is_superuser": false, - "username": "berna.freitas.ext", - "email": "[email protected]", - "title": null, - "first_name": "Berna", - "last_name": "Freitas", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 288, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.656", - "is_superuser": false, - "username": "emory.pereira.ext", - "email": "[email protected]", - "title": null, - "first_name": "Emory", - "last_name": "Pereira", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 289, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:09.673", - "is_superuser": false, - "username": "tarah.steed.ext", - "email": "[email protected]", - "title": null, - "first_name": "Tarah", - "last_name": "Steed", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 291, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:10.303", - "is_superuser": false, - "username": "bradley.peltier.ext", - "email": "[email protected]", - "title": null, - "first_name": "Bradley", - "last_name": "Peltier", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 292, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:11.045", - "is_superuser": false, - "username": "trudie.clawson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Trudie", - "last_name": "Clawson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 293, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:11.292", - "is_superuser": false, - "username": "gavin.clemmons.ext", - "email": "[email protected]", - "title": "Prof. Dr.", - "first_name": "Gavin", - "last_name": "Clemmons", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 294, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:12.023", - "is_superuser": false, - "username": "alise.lock.ext", - "email": "[email protected]", - "title": null, - "first_name": "Alise", - "last_name": "Lock", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 295, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:13.558", - "is_superuser": false, - "username": "ruthie.hermann.ext", - "email": "[email protected]", - "title": null, - "first_name": "Ruthie", - "last_name": "Hermann", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 296, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-11T10:45:55.678", - "is_superuser": false, - "username": "royce.vann.ext", - "email": "[email protected]", - "title": null, - "first_name": "Royce", - "last_name": "Vann", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 297, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:13.990", - "is_superuser": false, - "username": "gianna.havens.ext", - "email": "[email protected]", - "title": null, - "first_name": "Gianna", - "last_name": "Havens", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 298, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:13.999", - "is_superuser": false, - "username": "roscoe.sam.ext", - "email": "[email protected]", - "title": null, - "first_name": "Roscoe", - "last_name": "Sam", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 299, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:14.010", - "is_superuser": false, - "username": "seema.dobbins.ext", - "email": "[email protected]", - "title": null, - "first_name": "Seema", - "last_name": "Dobbins", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 300, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:14.067", - "is_superuser": false, - "username": "charity.leonard", - "email": "[email protected]", - "title": "Prof. Dr.", - "first_name": "Charity", - "last_name": "Leonard", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [ - 484 - ], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 301, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:14.198", - "is_superuser": false, - "username": "shanice.moser.ext", - "email": "[email protected]", - "title": null, - "first_name": "Shanice", - "last_name": "Moser", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 302, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:14.238", - "is_superuser": false, - "username": "ike.eubanks.ext", - "email": "[email protected]", - "title": "Prof. Dr.", - "first_name": "Ike", - "last_name": "Eubanks", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 304, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:14.714", - "is_superuser": false, - "username": "nadia.robison.ext", - "email": "[email protected]", - "title": null, - "first_name": "Nadia", - "last_name": "Robison", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 305, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:14.727", - "is_superuser": false, - "username": "mariella.rush.ext", - "email": "[email protected]", - "title": null, - "first_name": "Mariella", - "last_name": "Rush", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 306, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:15.169", - "is_superuser": false, - "username": "mitch.weir.ext", - "email": "[email protected]", - "title": null, - "first_name": "Mitch", - "last_name": "Weir", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 307, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:15.397", - "is_superuser": false, - "username": "alan.zimmer.ext", - "email": "[email protected]", - "title": null, - "first_name": "Alan", - "last_name": "Zimmer", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 308, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:15.502", - "is_superuser": false, - "username": "vicky.randle.ext", - "email": "[email protected]", - "title": null, - "first_name": "Vicky", - "last_name": "Randle", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 310, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-05T16:59:12.204", - "is_superuser": false, - "username": "amos.benoit", - "email": "[email protected]", - "title": "Prof. Dr.-Ing.", - "first_name": "Amos", - "last_name": "Benoit", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [ - 2217, - 1112, - 249 - ], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 311, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:15.719", - "is_superuser": false, - "username": "yoko.mahon.ext", - "email": "[email protected]", - "title": null, - "first_name": "Yoko", - "last_name": "Mahon", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 312, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:15.895", - "is_superuser": false, - "username": "jerrod.sabo.ext", - "email": "[email protected]", - "title": null, - "first_name": "Jerrod", - "last_name": "Sabo", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 313, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:15.916", - "is_superuser": false, - "username": "michele.cano.ext", - "email": "[email protected]", - "title": null, - "first_name": "Michele", - "last_name": "Cano", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 314, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:16.403", - "is_superuser": false, - "username": "genesis.cortez.ext", - "email": "[email protected]", - "title": null, - "first_name": "Genesis", - "last_name": "Cortez", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 316, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:17.295", - "is_superuser": false, - "username": "desire.linn.ext", - "email": "[email protected]", - "title": null, - "first_name": "Desire", - "last_name": "Linn", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 317, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:17.316", - "is_superuser": false, - "username": "oscar.erickson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Oscar", - "last_name": "Erickson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 318, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-24T12:36:26.705", - "is_superuser": false, - "username": "laurence.tipton", - "email": "[email protected]", - "title": "", - "first_name": "Laurence", - "last_name": "Tipton", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 319, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:17.436", - "is_superuser": false, - "username": "jeannie.chu.ext", - "email": "[email protected]", - "title": null, - "first_name": "Jeannie", - "last_name": "Chu", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 320, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:46.849", - "is_superuser": false, - "username": "delois.terrell.ext", - "email": "[email protected]", - "title": null, - "first_name": "Delois", - "last_name": "Terrell", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 321, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:46.857", - "is_superuser": false, - "username": "devorah.biddle.ext", - "email": "[email protected]", - "title": null, - "first_name": "Devorah", - "last_name": "Biddle", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 322, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:46.864", - "is_superuser": false, - "username": "li.hargrove.ext", - "email": "[email protected]", - "title": null, - "first_name": "Li", - "last_name": "Hargrove", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 323, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-05-07T18:42:15.184", - "is_superuser": false, - "username": "jolene.squires", - "email": "[email protected]", - "title": "", - "first_name": "Jolene", - "last_name": "Squires", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 324, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:46.874", - "is_superuser": false, - "username": "cori.luttrell.ext", - "email": "[email protected]", - "title": null, - "first_name": "Cori", - "last_name": "Luttrell", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 325, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:46.950", - "is_superuser": false, - "username": "siu.rhoads.ext", - "email": "[email protected]", - "title": null, - "first_name": "Siu", - "last_name": "Rhoads", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 326, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-02T17:52:02.729", - "is_superuser": false, - "username": "junie.hicks", - "email": "[email protected]", - "title": "", - "first_name": "Junie", - "last_name": "Hicks", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 327, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.715", - "is_superuser": false, - "username": "beulah.pfeifer.ext", - "email": "[email protected]", - "title": null, - "first_name": "Beulah", - "last_name": "Pfeifer", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 328, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.749", - "is_superuser": false, - "username": "orpha.mccutcheon.ext", - "email": "[email protected]", - "title": "Prof. Dr.", - "first_name": "Orpha", - "last_name": "Mccutcheon", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 329, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.847", - "is_superuser": false, - "username": "clara.taber.ext", - "email": "[email protected]", - "title": null, - "first_name": "Clara", - "last_name": "Taber", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 330, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-06T18:29:04.997", - "is_superuser": false, - "username": "joette.lindley", - "email": "[email protected]", - "title": null, - "first_name": "Joette", - "last_name": "Lindley", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 331, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.859", - "is_superuser": false, - "username": "jennette.gracia.ext", - "email": "[email protected]", - "title": null, - "first_name": "Jennette", - "last_name": "Gracia", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 332, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.864", - "is_superuser": false, - "username": "karlene.jude.ext", - "email": "[email protected]", - "title": null, - "first_name": "Karlene", - "last_name": "Jude", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 333, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.869", - "is_superuser": false, - "username": "rosamaria.billups.ext", - "email": "[email protected]", - "title": null, - "first_name": "Rosamaria", - "last_name": "Billups", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 334, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.874", - "is_superuser": false, - "username": "emma.key.ext", - "email": "[email protected]", - "title": null, - "first_name": "Emma", - "last_name": "Key", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 335, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.885", - "is_superuser": false, - "username": "isaac.crain.ext", - "email": "[email protected]", - "title": null, - "first_name": "Isaac", - "last_name": "Crain", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 336, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.892", - "is_superuser": false, - "username": "elton.collado.ext", - "email": "[email protected]", - "title": null, - "first_name": "Elton", - "last_name": "Collado", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 337, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.897", - "is_superuser": false, - "username": "tonja.workman.ext", - "email": "[email protected]", - "title": null, - "first_name": "Tonja", - "last_name": "Workman", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 338, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.971", - "is_superuser": false, - "username": "kathy.paris.ext", - "email": "[email protected]", - "title": null, - "first_name": "Kathy", - "last_name": "Paris", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 339, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:47.993", - "is_superuser": false, - "username": "verona.charlton.ext", - "email": "[email protected]", - "title": null, - "first_name": "Verona", - "last_name": "Charlton", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 340, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:48.836", - "is_superuser": false, - "username": "serina.zapata.ext", - "email": "[email protected]", - "title": null, - "first_name": "Serina", - "last_name": "Zapata", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 341, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:48.847", - "is_superuser": false, - "username": "brandee.dial.ext", - "email": "[email protected]", - "title": null, - "first_name": "Brandee", - "last_name": "Dial", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 342, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:48.856", - "is_superuser": false, - "username": "hugh.mccurry.ext", - "email": "[email protected]", - "title": null, - "first_name": "Hugh", - "last_name": "Mccurry", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 343, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:48.861", - "is_superuser": false, - "username": "dona.shaffer.ext", - "email": "[email protected]", - "title": null, - "first_name": "Dona", - "last_name": "Shaffer", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 344, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:48.936", - "is_superuser": false, - "username": "steffanie.barnette.ext", - "email": "[email protected]", - "title": "Dr.", - "first_name": "Steffanie", - "last_name": "Barnette", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 345, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:48.957", - "is_superuser": false, - "username": "kallie.conners.ext", - "email": "[email protected]", - "title": "Dr.", - "first_name": "Kallie", - "last_name": "Conners", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 346, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:49.845", - "is_superuser": false, - "username": "keiko.hadden.ext", - "email": "[email protected]", - "title": null, - "first_name": "Keiko", - "last_name": "Hadden", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 347, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:49.852", - "is_superuser": false, - "username": "georgiana.thornton.ext", - "email": "[email protected]", - "title": null, - "first_name": "Georgiana", - "last_name": "Thornton", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 348, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:49.857", - "is_superuser": false, - "username": "cyrus.windsor.ext", - "email": "[email protected]", - "title": null, - "first_name": "Cyrus", - "last_name": "Windsor", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 349, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:50.699", - "is_superuser": false, - "username": "theresia.luong.ext", - "email": "[email protected]", - "title": null, - "first_name": "Theresia", - "last_name": "Luong", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 350, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:50.704", - "is_superuser": false, - "username": "deb.lance.ext", - "email": "[email protected]", - "title": null, - "first_name": "Deb", - "last_name": "Lance", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 351, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:50.708", - "is_superuser": false, - "username": "alline.morley.ext", - "email": "[email protected]", - "title": null, - "first_name": "Alline", - "last_name": "Morley", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 352, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:50.742", - "is_superuser": false, - "username": "jovan.himes.ext", - "email": "[email protected]", - "title": null, - "first_name": "Jovan", - "last_name": "Himes", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 353, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:50.746", - "is_superuser": false, - "username": "jerald.brenner.ext", - "email": "[email protected]", - "title": null, - "first_name": "Jerald", - "last_name": "Brenner", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 354, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:50.871", - "is_superuser": false, - "username": "charlotte.greenlee.ext", - "email": "[email protected]", - "title": "Dr.", - "first_name": "Charlotte", - "last_name": "Greenlee", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 355, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:50.889", - "is_superuser": false, - "username": "randy.schulze.ext", - "email": "[email protected]", - "title": null, - "first_name": "Randy", - "last_name": "Schulze", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 356, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:52.128", - "is_superuser": false, - "username": "cristobal.stoker.ext", - "email": "[email protected]", - "title": null, - "first_name": "Cristobal", - "last_name": "Stoker", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 357, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:52.146", - "is_superuser": false, - "username": "amada.crutcher.ext", - "email": "[email protected]", - "title": null, - "first_name": "Amada", - "last_name": "Crutcher", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 358, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:52.181", - "is_superuser": false, - "username": "rosy.mcgee.ext", - "email": "[email protected]", - "title": null, - "first_name": "Rosy", - "last_name": "Mcgee", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 359, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:54.213", - "is_superuser": false, - "username": "rosamaria.bagwell.ext", - "email": "[email protected]", - "title": null, - "first_name": "Rosamaria", - "last_name": "Bagwell", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 360, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:54.220", - "is_superuser": false, - "username": "renato.davenport.ext", - "email": "[email protected]", - "title": null, - "first_name": "Renato", - "last_name": "Davenport", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 361, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:54.227", - "is_superuser": false, - "username": "juanita.simonson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Juanita", - "last_name": "Simonson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 362, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:54.308", - "is_superuser": false, - "username": "ernest.faulkner.ext", - "email": "[email protected]", - "title": null, - "first_name": "Ernest", - "last_name": "Faulkner", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 363, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:54.326", - "is_superuser": false, - "username": "aileen.gonsalves.ext", - "email": "[email protected]", - "title": null, - "first_name": "Aileen", - "last_name": "Gonsalves", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 364, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:55.180", - "is_superuser": false, - "username": "shanika.walls.ext", - "email": "[email protected]", - "title": "Dr.-Ing.", - "first_name": "Shanika", - "last_name": "Walls", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 365, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:55.833", - "is_superuser": false, - "username": "kiyoko.hoffmann.ext", - "email": "[email protected]", - "title": null, - "first_name": "Kiyoko", - "last_name": "Hoffmann", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 366, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:55.890", - "is_superuser": false, - "username": "neville.saddler.ext", - "email": "[email protected]", - "title": "Prof. Dr.", - "first_name": "Neville", - "last_name": "Saddler", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 367, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:56.443", - "is_superuser": false, - "username": "damaris.lemke.ext", - "email": "[email protected]", - "title": null, - "first_name": "Damaris", - "last_name": "Lemke", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 368, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:56.449", - "is_superuser": false, - "username": "kassandra.tice.ext", - "email": "[email protected]", - "title": null, - "first_name": "Kassandra", - "last_name": "Tice", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 369, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:57.238", - "is_superuser": false, - "username": "maximo.falcon.ext", - "email": "[email protected]", - "title": null, - "first_name": "Maximo", - "last_name": "Falcon", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 370, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:57.253", - "is_superuser": false, - "username": "donella.bernal.ext", - "email": "[email protected]", - "title": null, - "first_name": "Donella", - "last_name": "Bernal", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 371, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:57.342", - "is_superuser": false, - "username": "hulda.denny.ext", - "email": "[email protected]", - "title": null, - "first_name": "Hulda", - "last_name": "Denny", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 372, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:58.064", - "is_superuser": false, - "username": "sherley.ly.ext", - "email": "[email protected]", - "title": null, - "first_name": "Sherley", - "last_name": "Ly", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 373, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:58.070", - "is_superuser": false, - "username": "betty.hickman.ext", - "email": "[email protected]", - "title": null, - "first_name": "Betty", - "last_name": "Hickman", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 374, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:58.969", - "is_superuser": false, - "username": "lyndsey.crockett.ext", - "email": "[email protected]", - "title": "Dr.", - "first_name": "Lyndsey", - "last_name": "Crockett", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 375, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:01:59.806", - "is_superuser": false, - "username": "esta.gabbard.ext", - "email": "[email protected]", - "title": null, - "first_name": "Esta", - "last_name": "Gabbard", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 376, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:00.087", - "is_superuser": false, - "username": "sol.curtis.ext", - "email": "[email protected]", - "title": "Dr.", - "first_name": "Sol", - "last_name": "Curtis", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 377, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:00.383", - "is_superuser": false, - "username": "edith.cuevas.ext", - "email": "[email protected]", - "title": null, - "first_name": "Edith", - "last_name": "Cuevas", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 378, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:00.392", - "is_superuser": false, - "username": "yetta.crumpton.ext", - "email": "[email protected]", - "title": null, - "first_name": "Yetta", - "last_name": "Crumpton", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 379, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:00.433", - "is_superuser": false, - "username": "pam.dallas.ext", - "email": "[email protected]", - "title": null, - "first_name": "Pam", - "last_name": "Dallas", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 380, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:00.438", - "is_superuser": false, - "username": "dominga.leblanc.ext", - "email": "[email protected]", - "title": null, - "first_name": "Dominga", - "last_name": "Leblanc", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 381, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:00.442", - "is_superuser": false, - "username": "walter.asher.ext", - "email": "[email protected]", - "title": null, - "first_name": "Walter", - "last_name": "Asher", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 382, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:00.447", - "is_superuser": false, - "username": "susan.barrientos.ext", - "email": "[email protected]", - "title": null, - "first_name": "Susan", - "last_name": "Barrientos", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 383, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:00.691", - "is_superuser": false, - "username": "cherish.henke.ext", - "email": "[email protected]", - "title": null, - "first_name": "Cherish", - "last_name": "Henke", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 384, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:00.712", - "is_superuser": false, - "username": "inge.layman.ext", - "email": "[email protected]", - "title": null, - "first_name": "Inge", - "last_name": "Layman", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 385, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:03.282", - "is_superuser": false, - "username": "willa.keene.ext", - "email": "[email protected]", - "title": null, - "first_name": "Willa", - "last_name": "Keene", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 386, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:03.297", - "is_superuser": false, - "username": "carmelita.dangelo.ext", - "email": "[email protected]", - "title": null, - "first_name": "Carmelita", - "last_name": "Dangelo", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 387, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-10-01T09:33:06.080", - "is_superuser": false, - "username": "jina.cushman", - "email": "[email protected]", - "title": null, - "first_name": "Jina", - "last_name": "Cushman", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 388, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:03.311", - "is_superuser": false, - "username": "cody.boisvert.ext", - "email": "[email protected]", - "title": null, - "first_name": "Cody", - "last_name": "Boisvert", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 389, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:07.646", - "is_superuser": false, - "username": "karole.mata.ext", - "email": "[email protected]", - "title": null, - "first_name": "Karole", - "last_name": "Mata", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 390, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:07.686", - "is_superuser": false, - "username": "brittney.matheny.ext", - "email": "[email protected]", - "title": null, - "first_name": "Brittney", - "last_name": "Matheny", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 391, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:13.108", - "is_superuser": false, - "username": "maida.hutchison.ext", - "email": "[email protected]", - "title": null, - "first_name": "Maida", - "last_name": "Hutchison", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 392, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-23T10:52:15.011", - "is_superuser": false, - "username": "hipolito.morse", - "email": "[email protected]", - "title": "", - "first_name": "Hipolito", - "last_name": "Morse", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 393, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:13.142", - "is_superuser": false, - "username": "dorothy.bush.ext", - "email": "[email protected]", - "title": null, - "first_name": "Dorothy", - "last_name": "Bush", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 394, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-30T14:48:07.682", - "is_superuser": false, - "username": "chang.hillman.ext", - "email": "[email protected]", - "title": null, - "first_name": "Chang", - "last_name": "Hillman", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 395, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-02T13:45:22.575", - "is_superuser": false, - "username": "al.jean", - "email": "[email protected]", - "title": "", - "first_name": "Al", - "last_name": "Jean", - "login_key": null, - "login_key_valid_until": "2012-10-01", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 396, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:19.923", - "is_superuser": false, - "username": "oleta.gould.ext", - "email": "[email protected]", - "title": "Dr.-Ing.", - "first_name": "Oleta", - "last_name": "Gould", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 397, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:19.943", - "is_superuser": false, - "username": "janene.nielsen.ext", - "email": "[email protected]", - "title": null, - "first_name": "Janene", - "last_name": "Nielsen", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 398, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:26.165", - "is_superuser": false, - "username": "rosette.judkins.ext", - "email": "[email protected]", - "title": null, - "first_name": "Rosette", - "last_name": "Judkins", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 399, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:26.174", - "is_superuser": false, - "username": "shandra.mohr.ext", - "email": "[email protected]", - "title": null, - "first_name": "Shandra", - "last_name": "Mohr", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 400, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:26.194", - "is_superuser": false, - "username": "brendon.cary.ext", - "email": "[email protected]", - "title": null, - "first_name": "Brendon", - "last_name": "Cary", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 401, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:26.201", - "is_superuser": false, - "username": "rubie.armstrong.ext", - "email": "[email protected]", - "title": null, - "first_name": "Rubie", - "last_name": "Armstrong", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 402, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:26.672", - "is_superuser": false, - "username": "buddy.abel.ext", - "email": "[email protected]", - "title": null, - "first_name": "Buddy", - "last_name": "Abel", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 403, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:32.900", - "is_superuser": false, - "username": "lucie.danner", - "email": "[email protected]", - "title": "", - "first_name": "Lucie", - "last_name": "Danner", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 404, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:32.921", - "is_superuser": false, - "username": "chad.carbajal.ext", - "email": "[email protected]", - "title": null, - "first_name": "Chad", - "last_name": "Carbajal", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 405, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:32.926", - "is_superuser": false, - "username": "shirl.winters.ext", - "email": "[email protected]", - "title": null, - "first_name": "Shirl", - "last_name": "Winters", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 406, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:32.931", - "is_superuser": false, - "username": "emerita.forrester.ext", - "email": "[email protected]", - "title": null, - "first_name": "Emerita", - "last_name": "Forrester", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 407, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-04T07:57:31.817", - "is_superuser": false, - "username": "tyree.hansen.ext", - "email": "[email protected]", - "title": null, - "first_name": "Tyree", - "last_name": "Hansen", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 408, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:57:03.709", - "is_superuser": false, - "username": "britteny.easley", - "email": "[email protected]", - "title": "", - "first_name": "Britteny", - "last_name": "Easley", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 409, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-12T12:16:07.304", - "is_superuser": false, - "username": "pamula.sims", - "email": "[email protected]", - "title": "", - "first_name": "Pamula", - "last_name": "Sims", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 410, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:32.959", - "is_superuser": false, - "username": "donnetta.felts.ext", - "email": "[email protected]", - "title": null, - "first_name": "Donnetta", - "last_name": "Felts", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 411, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:32.969", - "is_superuser": false, - "username": "magnolia.acuna.ext", - "email": "[email protected]", - "title": null, - "first_name": "Magnolia", - "last_name": "Acuna", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 412, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:32.976", - "is_superuser": false, - "username": "camie.boehm", - "email": "[email protected]", - "title": "", - "first_name": "Camie", - "last_name": "Boehm", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 413, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:32.985", - "is_superuser": false, - "username": "sirena.withrow.ext", - "email": "[email protected]", - "title": null, - "first_name": "Sirena", - "last_name": "Withrow", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 414, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:32.995", - "is_superuser": false, - "username": "lizbeth.israel.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lizbeth", - "last_name": "Israel", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 415, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:33.013", - "is_superuser": false, - "username": "jaimie.haas.ext", - "email": "[email protected]", - "title": null, - "first_name": "Jaimie", - "last_name": "Haas", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 416, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:33.018", - "is_superuser": false, - "username": "kirk.penrod.ext", - "email": "[email protected]", - "title": null, - "first_name": "Kirk", - "last_name": "Penrod", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 417, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:33.025", - "is_superuser": false, - "username": "shasta.eaves.ext", - "email": "[email protected]", - "title": null, - "first_name": "Shasta", - "last_name": "Eaves", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 418, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:33.032", - "is_superuser": false, - "username": "kathyrn.crowley.ext", - "email": "[email protected]", - "title": null, - "first_name": "Kathyrn", - "last_name": "Crowley", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 419, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-30T21:50:22.128", - "is_superuser": false, - "username": "tonita.gallardo", - "email": "[email protected]", - "title": "", - "first_name": "Tonita", - "last_name": "Gallardo", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 420, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:33.054", - "is_superuser": false, - "username": "margeret.roberson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Margeret", - "last_name": "Roberson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 421, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:33.063", - "is_superuser": false, - "username": "lenore.kohler.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lenore", - "last_name": "Kohler", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 422, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:33.072", - "is_superuser": false, - "username": "marlana.olds.ext", - "email": "[email protected]", - "title": null, - "first_name": "Marlana", - "last_name": "Olds", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 423, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:33.077", - "is_superuser": false, - "username": "sharon.cress", - "email": "[email protected]", - "title": "", - "first_name": "Sharon", - "last_name": "Cress", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 424, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:42.566", - "is_superuser": false, - "username": "avelina.stubbs.ext", - "email": "[email protected]", - "title": null, - "first_name": "Avelina", - "last_name": "Stubbs", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 425, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:42.609", - "is_superuser": false, - "username": "latrice.terry.ext", - "email": "[email protected]", - "title": null, - "first_name": "Latrice", - "last_name": "Terry", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 426, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:42.619", - "is_superuser": false, - "username": "anisa.pearsall.ext", - "email": "[email protected]", - "title": null, - "first_name": "Anisa", - "last_name": "Pearsall", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 427, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:42.647", - "is_superuser": false, - "username": "isaiah.hutcherson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Isaiah", - "last_name": "Hutcherson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 428, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:54.601", - "is_superuser": false, - "username": "jarrett.alfonso.ext", - "email": "[email protected]", - "title": null, - "first_name": "Jarrett", - "last_name": "Alfonso", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 429, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:54.634", - "is_superuser": false, - "username": "shanta.pilcher.ext", - "email": "[email protected]", - "title": null, - "first_name": "Shanta", - "last_name": "Pilcher", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 430, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:54.649", - "is_superuser": false, - "username": "bob.jeter.ext", - "email": "[email protected]", - "title": null, - "first_name": "Bob", - "last_name": "Jeter", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 431, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:54.668", - "is_superuser": false, - "username": "daisy.ledford.ext", - "email": "[email protected]", - "title": null, - "first_name": "Daisy", - "last_name": "Ledford", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 432, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:02:54.709", - "is_superuser": false, - "username": "elvina.dill.ext", - "email": "[email protected]", - "title": null, - "first_name": "Elvina", - "last_name": "Dill", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 433, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:02.417", + "last_login": "2012-01-18T17:01:47.847", "is_superuser": false, - "username": "kiana.fontenot.ext", - "email": "[email protected]", + "username": "clara.taber.ext", + "email": "[email protected]", "title": null, - "first_name": "Kiana", - "last_name": "Fontenot", + "first_name": "Clara", + "last_name": "Taber", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107459,16 +102040,16 @@ }, { "model": "evaluation.userprofile", - "pk": 434, + "pk": 330, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:02.700", + "last_login": "2014-04-06T18:29:04.997", "is_superuser": false, - "username": "dacia.gault.ext", - "email": "[email protected]", + "username": "joette.lindley", + "email": "[email protected]", "title": null, - "first_name": "Dacia", - "last_name": "Gault", + "first_name": "Joette", + "last_name": "Lindley", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107479,16 +102060,16 @@ }, { "model": "evaluation.userprofile", - "pk": 435, + "pk": 331, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:12.614", + "last_login": "2012-01-18T17:01:47.859", "is_superuser": false, - "username": "lorna.shultz.ext", - "email": "[email protected]", + "username": "jennette.gracia.ext", + "email": "[email protected]", "title": null, - "first_name": "Lorna", - "last_name": "Shultz", + "first_name": "Jennette", + "last_name": "Gracia", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107499,16 +102080,16 @@ }, { "model": "evaluation.userprofile", - "pk": 436, + "pk": 333, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:12.626", + "last_login": "2012-01-18T17:01:47.869", "is_superuser": false, - "username": "sumiko.eng.ext", - "email": "[email protected]", + "username": "rosamaria.billups.ext", + "email": "[email protected]", "title": null, - "first_name": "Sumiko", - "last_name": "Eng", + "first_name": "Rosamaria", + "last_name": "Billups", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107519,16 +102100,16 @@ }, { "model": "evaluation.userprofile", - "pk": 437, + "pk": 341, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:12.899", + "last_login": "2012-01-18T17:01:48.847", "is_superuser": false, - "username": "genie.hembree.ext", - "email": "[email protected]", - "title": "Dr.", - "first_name": "Genie", - "last_name": "Hembree", + "username": "brandee.dial.ext", + "email": "[email protected]", + "title": null, + "first_name": "Brandee", + "last_name": "Dial", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107539,16 +102120,16 @@ }, { "model": "evaluation.userprofile", - "pk": 438, + "pk": 344, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:17.355", + "last_login": "2012-01-18T17:01:48.936", "is_superuser": false, - "username": "lanelle.quintanilla.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lanelle", - "last_name": "Quintanilla", + "username": "steffanie.barnette.ext", + "email": "[email protected]", + "title": "Dr.", + "first_name": "Steffanie", + "last_name": "Barnette", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107559,16 +102140,16 @@ }, { "model": "evaluation.userprofile", - "pk": 439, + "pk": 346, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:17.391", + "last_login": "2012-01-18T17:01:49.845", "is_superuser": false, - "username": "milagro.bethel.ext", - "email": "[email protected]", + "username": "keiko.hadden.ext", + "email": "[email protected]", "title": null, - "first_name": "Milagro", - "last_name": "Bethel", + "first_name": "Keiko", + "last_name": "Hadden", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107579,16 +102160,16 @@ }, { "model": "evaluation.userprofile", - "pk": 440, + "pk": 350, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:17.566", + "last_login": "2012-01-18T17:01:50.704", "is_superuser": false, - "username": "leonia.burnham.ext", - "email": "[email protected]", + "username": "deb.lance.ext", + "email": "[email protected]", "title": null, - "first_name": "Leonia", - "last_name": "Burnham", + "first_name": "Deb", + "last_name": "Lance", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107599,16 +102180,16 @@ }, { "model": "evaluation.userprofile", - "pk": 441, + "pk": 358, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:24.559", + "last_login": "2012-01-18T17:01:52.181", "is_superuser": false, - "username": "gillian.murillo.ext", - "email": "[email protected]", + "username": "rosy.mcgee.ext", + "email": "[email protected]", "title": null, - "first_name": "Gillian", - "last_name": "Murillo", + "first_name": "Rosy", + "last_name": "Mcgee", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107619,16 +102200,16 @@ }, { "model": "evaluation.userprofile", - "pk": 442, + "pk": 363, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.533", + "last_login": "2012-01-18T17:01:54.326", "is_superuser": false, - "username": "blondell.peeler.ext", - "email": "[email protected]", + "username": "aileen.gonsalves.ext", + "email": "[email protected]", "title": null, - "first_name": "Blondell", - "last_name": "Peeler", + "first_name": "Aileen", + "last_name": "Gonsalves", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107639,16 +102220,16 @@ }, { "model": "evaluation.userprofile", - "pk": 443, + "pk": 366, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.890", + "last_login": "2012-01-18T17:01:55.890", "is_superuser": false, - "username": "donetta.bolduc.ext", - "email": "[email protected]", - "title": null, - "first_name": "Donetta", - "last_name": "Bolduc", + "username": "neville.saddler.ext", + "email": "[email protected]", + "title": "Prof. Dr.", + "first_name": "Neville", + "last_name": "Saddler", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107659,16 +102240,16 @@ }, { "model": "evaluation.userprofile", - "pk": 444, + "pk": 367, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.896", + "last_login": "2012-01-18T17:01:56.443", "is_superuser": false, - "username": "azalee.guzman.ext", - "email": "[email protected]", + "username": "damaris.lemke.ext", + "email": "[email protected]", "title": null, - "first_name": "Azalee", - "last_name": "Guzman", + "first_name": "Damaris", + "last_name": "Lemke", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107679,16 +102260,16 @@ }, { "model": "evaluation.userprofile", - "pk": 445, + "pk": 378, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.901", + "last_login": "2012-01-18T17:02:00.392", "is_superuser": false, - "username": "cythia.montanez.ext", - "email": "[email protected]", + "username": "yetta.crumpton.ext", + "email": "[email protected]", "title": null, - "first_name": "Cythia", - "last_name": "Montanez", + "first_name": "Yetta", + "last_name": "Crumpton", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107699,16 +102280,16 @@ }, { "model": "evaluation.userprofile", - "pk": 446, + "pk": 380, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.913", + "last_login": "2012-01-18T17:02:00.438", "is_superuser": false, - "username": "kyong.lomax.ext", - "email": "[email protected]", + "username": "dominga.leblanc.ext", + "email": "[email protected]", "title": null, - "first_name": "Kyong", - "last_name": "Lomax", + "first_name": "Dominga", + "last_name": "Leblanc", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107719,16 +102300,16 @@ }, { "model": "evaluation.userprofile", - "pk": 447, + "pk": 383, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.918", + "last_login": "2012-01-18T17:02:00.691", "is_superuser": false, - "username": "dusty.kaplan.ext", - "email": "[email protected]", + "username": "cherish.henke.ext", + "email": "[email protected]", "title": null, - "first_name": "Dusty", - "last_name": "Kaplan", + "first_name": "Cherish", + "last_name": "Henke", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107739,16 +102320,16 @@ }, { "model": "evaluation.userprofile", - "pk": 448, + "pk": 387, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.924", + "last_login": "2012-10-01T09:33:06.080", "is_superuser": false, - "username": "tanesha.sharkey.ext", - "email": "[email protected]", + "username": "jina.cushman", + "email": "[email protected]", "title": null, - "first_name": "Tanesha", - "last_name": "Sharkey", + "first_name": "Jina", + "last_name": "Cushman", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107759,16 +102340,16 @@ }, { "model": "evaluation.userprofile", - "pk": 449, + "pk": 388, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.929", + "last_login": "2012-01-18T17:02:03.311", "is_superuser": false, - "username": "catalina.marino.ext", - "email": "[email protected]", + "username": "cody.boisvert.ext", + "email": "[email protected]", "title": null, - "first_name": "Catalina", - "last_name": "Marino", + "first_name": "Cody", + "last_name": "Boisvert", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107779,16 +102360,16 @@ }, { "model": "evaluation.userprofile", - "pk": 450, + "pk": 389, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.936", + "last_login": "2012-01-18T17:02:07.646", "is_superuser": false, - "username": "melany.houser.ext", - "email": "[email protected]", + "username": "karole.mata.ext", + "email": "[email protected]", "title": null, - "first_name": "Melany", - "last_name": "Houser", + "first_name": "Karole", + "last_name": "Mata", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107799,16 +102380,16 @@ }, { "model": "evaluation.userprofile", - "pk": 451, + "pk": 392, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.943", + "last_login": "2013-10-23T10:52:15.011", "is_superuser": false, - "username": "evan.buckingham.ext", - "email": "[email protected]", - "title": null, - "first_name": "Evan", - "last_name": "Buckingham", + "username": "hipolito.morse", + "email": "[email protected]", + "title": "", + "first_name": "Hipolito", + "last_name": "Morse", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107819,18 +102400,18 @@ }, { "model": "evaluation.userprofile", - "pk": 452, + "pk": 395, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.949", + "last_login": "2014-05-02T13:45:22.575", "is_superuser": false, - "username": "rossie.casanova.ext", - "email": "[email protected]", - "title": null, - "first_name": "Rossie", - "last_name": "Casanova", + "username": "al.jean", + "email": "[email protected]", + "title": "", + "first_name": "Al", + "last_name": "Jean", "login_key": null, - "login_key_valid_until": null, + "login_key_valid_until": "2012-10-01", "groups": [], "user_permissions": [], "delegates": [], @@ -107839,16 +102420,16 @@ }, { "model": "evaluation.userprofile", - "pk": 453, + "pk": 398, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.956", + "last_login": "2012-01-18T17:02:26.165", "is_superuser": false, - "username": "ronna.whipple.ext", - "email": "[email protected]", + "username": "rosette.judkins.ext", + "email": "[email protected]", "title": null, - "first_name": "Ronna", - "last_name": "Whipple", + "first_name": "Rosette", + "last_name": "Judkins", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107859,16 +102440,16 @@ }, { "model": "evaluation.userprofile", - "pk": 454, + "pk": 405, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.961", + "last_login": "2012-01-18T17:02:32.926", "is_superuser": false, - "username": "lea.olivarez.ext", - "email": "[email protected]", + "username": "shirl.winters.ext", + "email": "[email protected]", "title": null, - "first_name": "Lea", - "last_name": "Olivarez", + "first_name": "Shirl", + "last_name": "Winters", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107879,16 +102460,16 @@ }, { "model": "evaluation.userprofile", - "pk": 455, + "pk": 408, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.966", + "last_login": "2014-04-23T16:57:03.709", "is_superuser": false, - "username": "denyse.murillo.ext", - "email": "[email protected]", - "title": null, - "first_name": "Denyse", - "last_name": "Murillo", + "username": "britteny.easley", + "email": "[email protected]", + "title": "", + "first_name": "Britteny", + "last_name": "Easley", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107899,16 +102480,16 @@ }, { "model": "evaluation.userprofile", - "pk": 456, + "pk": 409, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.973", + "last_login": "2012-04-12T12:16:07.304", "is_superuser": false, - "username": "stormy.lam.ext", - "email": "[email protected]", - "title": null, - "first_name": "Stormy", - "last_name": "Lam", + "username": "pamula.sims", + "email": "[email protected]", + "title": "", + "first_name": "Pamula", + "last_name": "Sims", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107919,16 +102500,16 @@ }, { "model": "evaluation.userprofile", - "pk": 457, + "pk": 410, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.977", + "last_login": "2012-01-18T17:02:32.959", "is_superuser": false, - "username": "julieta.mullins.ext", - "email": "[email protected]", + "username": "donnetta.felts.ext", + "email": "[email protected]", "title": null, - "first_name": "Julieta", - "last_name": "Mullins", + "first_name": "Donnetta", + "last_name": "Felts", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107939,16 +102520,16 @@ }, { "model": "evaluation.userprofile", - "pk": 458, + "pk": 414, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-05-31T14:02:26.872", + "last_login": "2012-01-18T17:02:32.995", "is_superuser": false, - "username": "madaline.gross", - "email": "[email protected]", - "title": "", - "first_name": "Madaline", - "last_name": "Gross", + "username": "lizbeth.israel.ext", + "email": "[email protected]", + "title": null, + "first_name": "Lizbeth", + "last_name": "Israel", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107959,16 +102540,16 @@ }, { "model": "evaluation.userprofile", - "pk": 459, + "pk": 417, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.989", + "last_login": "2012-01-18T17:02:33.025", "is_superuser": false, - "username": "elmira.vest.ext", - "email": "[email protected]", + "username": "shasta.eaves.ext", + "email": "[email protected]", "title": null, - "first_name": "Elmira", - "last_name": "Vest", + "first_name": "Shasta", + "last_name": "Eaves", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107979,16 +102560,16 @@ }, { "model": "evaluation.userprofile", - "pk": 460, + "pk": 418, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:25.999", + "last_login": "2012-01-18T17:02:33.032", "is_superuser": false, - "username": "janita.coble.ext", - "email": "[email protected]", + "username": "kathyrn.crowley.ext", + "email": "[email protected]", "title": null, - "first_name": "Janita", - "last_name": "Coble", + "first_name": "Kathyrn", + "last_name": "Crowley", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -107999,16 +102580,16 @@ }, { "model": "evaluation.userprofile", - "pk": 461, + "pk": 419, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:26.004", + "last_login": "2014-03-30T21:50:22.128", "is_superuser": false, - "username": "antoine.chadwick.ext", - "email": "[email protected]", - "title": null, - "first_name": "Antoine", - "last_name": "Chadwick", + "username": "tonita.gallardo", + "email": "[email protected]", + "title": "", + "first_name": "Tonita", + "last_name": "Gallardo", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108019,16 +102600,16 @@ }, { "model": "evaluation.userprofile", - "pk": 462, + "pk": 421, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:26.012", + "last_login": "2012-01-18T17:02:33.063", "is_superuser": false, - "username": "celena.myers.ext", - "email": "[email protected]", + "username": "lenore.kohler.ext", + "email": "[email protected]", "title": null, - "first_name": "Celena", - "last_name": "Myers", + "first_name": "Lenore", + "last_name": "Kohler", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108039,16 +102620,16 @@ }, { "model": "evaluation.userprofile", - "pk": 463, + "pk": 422, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:26.237", + "last_login": "2012-01-18T17:02:33.072", "is_superuser": false, - "username": "shanika.hogue.ext", - "email": "[email protected]", + "username": "marlana.olds.ext", + "email": "[email protected]", "title": null, - "first_name": "Shanika", - "last_name": "Hogue", + "first_name": "Marlana", + "last_name": "Olds", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108059,16 +102640,16 @@ }, { "model": "evaluation.userprofile", - "pk": 464, + "pk": 423, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-12-04T14:22:09.856", + "last_login": "2012-01-18T17:02:33.077", "is_superuser": false, - "username": "tabitha.sutter", - "email": "[email protected]", + "username": "sharon.cress", + "email": "[email protected]", "title": "", - "first_name": "Tabitha", - "last_name": "Sutter", + "first_name": "Sharon", + "last_name": "Cress", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108079,16 +102660,16 @@ }, { "model": "evaluation.userprofile", - "pk": 465, + "pk": 425, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:42.769", + "last_login": "2012-01-18T17:02:42.609", "is_superuser": false, - "username": "lynnette.uribe.ext", - "email": "[email protected]", + "username": "latrice.terry.ext", + "email": "[email protected]", "title": null, - "first_name": "Lynnette", - "last_name": "Uribe", + "first_name": "Latrice", + "last_name": "Terry", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108099,16 +102680,16 @@ }, { "model": "evaluation.userprofile", - "pk": 466, + "pk": 432, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:03:49.646", + "last_login": "2012-01-18T17:02:54.709", "is_superuser": false, - "username": "esta.wright.ext", - "email": "[email protected]", - "title": "Dr.", - "first_name": "Esta", - "last_name": "Wright", + "username": "elvina.dill.ext", + "email": "[email protected]", + "title": null, + "first_name": "Elvina", + "last_name": "Dill", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108119,16 +102700,16 @@ }, { "model": "evaluation.userprofile", - "pk": 467, + "pk": 433, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-31T11:38:07.677", + "last_login": "2012-01-18T17:03:02.417", "is_superuser": false, - "username": "kimberley.roldan.ext", - "email": "[email protected]", + "username": "kiana.fontenot.ext", + "email": "[email protected]", "title": null, - "first_name": "Kimberley", - "last_name": "Roldan", + "first_name": "Kiana", + "last_name": "Fontenot", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108139,16 +102720,16 @@ }, { "model": "evaluation.userprofile", - "pk": 468, + "pk": 438, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:04:02.375", + "last_login": "2012-01-18T17:03:17.355", "is_superuser": false, - "username": "eusebia.hagen.ext", - "email": "[email protected]", + "username": "lanelle.quintanilla.ext", + "email": "[email protected]", "title": null, - "first_name": "Eusebia", - "last_name": "Hagen", + "first_name": "Lanelle", + "last_name": "Quintanilla", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108159,16 +102740,16 @@ }, { "model": "evaluation.userprofile", - "pk": 469, + "pk": 440, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:04:07.340", + "last_login": "2012-01-18T17:03:17.566", "is_superuser": false, - "username": "traci.crews.ext", - "email": "[email protected]", + "username": "leonia.burnham.ext", + "email": "[email protected]", "title": null, - "first_name": "Traci", - "last_name": "Crews", + "first_name": "Leonia", + "last_name": "Burnham", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108179,16 +102760,16 @@ }, { "model": "evaluation.userprofile", - "pk": 470, + "pk": 445, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:04:07.345", + "last_login": "2012-01-18T17:03:25.901", "is_superuser": false, - "username": "sana.cupp.ext", - "email": "[email protected]", + "username": "cythia.montanez.ext", + "email": "[email protected]", "title": null, - "first_name": "Sana", - "last_name": "Cupp", + "first_name": "Cythia", + "last_name": "Montanez", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108199,16 +102780,16 @@ }, { "model": "evaluation.userprofile", - "pk": 471, + "pk": 447, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-10-03T23:21:57.054", + "last_login": "2012-01-18T17:03:25.918", "is_superuser": false, - "username": "mica.boatright", - "email": "[email protected]", - "title": "Dr.", - "first_name": "Mica", - "last_name": "Boatright", + "username": "dusty.kaplan.ext", + "email": "[email protected]", + "title": null, + "first_name": "Dusty", + "last_name": "Kaplan", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108219,16 +102800,16 @@ }, { "model": "evaluation.userprofile", - "pk": 472, + "pk": 448, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:04:24.997", + "last_login": "2012-01-18T17:03:25.924", "is_superuser": false, - "username": "britta.horne.ext", - "email": "[email protected]", + "username": "tanesha.sharkey.ext", + "email": "[email protected]", "title": null, - "first_name": "Britta", - "last_name": "Horne", + "first_name": "Tanesha", + "last_name": "Sharkey", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108239,16 +102820,16 @@ }, { "model": "evaluation.userprofile", - "pk": 473, + "pk": 451, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:04:25.482", + "last_login": "2012-01-18T17:03:25.943", "is_superuser": false, - "username": "pansy.spradlin.ext", - "email": "[email protected]", + "username": "evan.buckingham.ext", + "email": "[email protected]", "title": null, - "first_name": "Pansy", - "last_name": "Spradlin", + "first_name": "Evan", + "last_name": "Buckingham", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108259,16 +102840,16 @@ }, { "model": "evaluation.userprofile", - "pk": 474, + "pk": 452, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:04:26.799", + "last_login": "2012-01-18T17:03:25.949", "is_superuser": false, - "username": "leslie.blanchette.ext", - "email": "[email protected]", - "title": "Prof. Dr.-Ing.", - "first_name": "Leslie", - "last_name": "Blanchette", + "username": "rossie.casanova.ext", + "email": "[email protected]", + "title": null, + "first_name": "Rossie", + "last_name": "Casanova", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108279,16 +102860,16 @@ }, { "model": "evaluation.userprofile", - "pk": 475, + "pk": 455, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:04:27.433", + "last_login": "2012-01-18T17:03:25.966", "is_superuser": false, - "username": "amber.dunlap.ext", - "email": "[email protected]", - "title": "Prof. Dr.", - "first_name": "Amber", - "last_name": "Dunlap", + "username": "denyse.murillo.ext", + "email": "[email protected]", + "title": null, + "first_name": "Denyse", + "last_name": "Murillo", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108299,16 +102880,16 @@ }, { "model": "evaluation.userprofile", - "pk": 476, + "pk": 459, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:04:27.918", + "last_login": "2012-01-18T17:03:25.989", "is_superuser": false, - "username": "forrest.stitt.ext", - "email": "[email protected]", + "username": "elmira.vest.ext", + "email": "[email protected]", "title": null, - "first_name": "Forrest", - "last_name": "Stitt", + "first_name": "Elmira", + "last_name": "Vest", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108319,16 +102900,16 @@ }, { "model": "evaluation.userprofile", - "pk": 477, + "pk": 464, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:04:29.615", + "last_login": "2012-12-04T14:22:09.856", "is_superuser": false, - "username": "abbey.davison.ext", - "email": "[email protected]", - "title": "Prof. Dr.", - "first_name": "Abbey", - "last_name": "Davison", + "username": "tabitha.sutter", + "email": "[email protected]", + "title": "", + "first_name": "Tabitha", + "last_name": "Sutter", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108339,16 +102920,16 @@ }, { "model": "evaluation.userprofile", - "pk": 478, + "pk": 468, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:07:16.963", + "last_login": "2012-01-18T17:04:02.375", "is_superuser": false, - "username": "adrianne.dunn.ext", - "email": "[email protected]", + "username": "eusebia.hagen.ext", + "email": "[email protected]", "title": null, - "first_name": "Adrianne", - "last_name": "Dunn", + "first_name": "Eusebia", + "last_name": "Hagen", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108359,16 +102940,16 @@ }, { "model": "evaluation.userprofile", - "pk": 479, + "pk": 471, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-10T15:57:32.052", + "last_login": "2013-10-03T23:21:57.054", "is_superuser": false, - "username": "lisbeth.beasley.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lisbeth", - "last_name": "Beasley", + "username": "mica.boatright", + "email": "[email protected]", + "title": "Dr.", + "first_name": "Mica", + "last_name": "Boatright", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108379,16 +102960,16 @@ }, { "model": "evaluation.userprofile", - "pk": 480, + "pk": 475, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:07:22.986", + "last_login": "2012-01-18T17:04:27.433", "is_superuser": false, - "username": "cassandra.lively.ext", - "email": "[email protected]", - "title": null, - "first_name": "Cassandra", - "last_name": "Lively", + "username": "amber.dunlap.ext", + "email": "[email protected]", + "title": "Prof. Dr.", + "first_name": "Amber", + "last_name": "Dunlap", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108399,16 +102980,16 @@ }, { "model": "evaluation.userprofile", - "pk": 481, + "pk": 477, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-13T20:38:34.540", + "last_login": "2012-01-18T17:04:29.615", "is_superuser": false, - "username": "lenard.jordan", - "email": "[email protected]", - "title": "", - "first_name": "Lenard", - "last_name": "Jordan", + "username": "abbey.davison.ext", + "email": "[email protected]", + "title": "Prof. Dr.", + "first_name": "Abbey", + "last_name": "Davison", "login_key": null, "login_key_valid_until": null, "groups": [], @@ -108509,66 +103090,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 486, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:08:16.557", - "is_superuser": false, - "username": "anisa.vickers.ext", - "email": "[email protected]", - "title": null, - "first_name": "Anisa", - "last_name": "Vickers", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 487, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:08:19.806", - "is_superuser": false, - "username": "martin.moya.ext", - "email": "[email protected]", - "title": null, - "first_name": "Martin", - "last_name": "Moya", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 488, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:08:20.066", - "is_superuser": false, - "username": "hellen.abraham.ext", - "email": "[email protected]", - "title": null, - "first_name": "Hellen", - "last_name": "Abraham", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 489, @@ -108609,66 +103130,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 491, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:08:27.089", - "is_superuser": false, - "username": "clara.beavers.ext", - "email": "[email protected]", - "title": null, - "first_name": "Clara", - "last_name": "Beavers", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 492, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-23T11:29:30.456", - "is_superuser": false, - "username": "marry.bain.ext", - "email": "[email protected]", - "title": null, - "first_name": "Marry", - "last_name": "Bain", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 493, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:08:30.173", - "is_superuser": false, - "username": "dayle.mackey.ext", - "email": "[email protected]", - "title": null, - "first_name": "Dayle", - "last_name": "Mackey", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 494, @@ -108749,26 +103210,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 498, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:10:30.916", - "is_superuser": false, - "username": "farrah.knox.ext", - "email": "[email protected]", - "title": null, - "first_name": "Farrah", - "last_name": "Knox", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 539, @@ -108809,26 +103250,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 541, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:02.040", - "is_superuser": false, - "username": "misha.starnes.ext", - "email": "[email protected]", - "title": null, - "first_name": "Misha", - "last_name": "Starnes", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 542, @@ -108869,46 +103290,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 544, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:03.933", - "is_superuser": false, - "username": "darren.belt.ext", - "email": "[email protected]", - "title": null, - "first_name": "Darren", - "last_name": "Belt", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 545, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:03.938", - "is_superuser": false, - "username": "davis.kelso.ext", - "email": "[email protected]", - "title": null, - "first_name": "Davis", - "last_name": "Kelso", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 546, @@ -108989,26 +103370,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 550, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:03.962", - "is_superuser": false, - "username": "bud.richard.ext", - "email": "[email protected]", - "title": null, - "first_name": "Bud", - "last_name": "Richard", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 551, @@ -109069,26 +103430,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 554, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:03.981", - "is_superuser": false, - "username": "shira.rose.ext", - "email": "[email protected]", - "title": null, - "first_name": "Shira", - "last_name": "Rose", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 555, @@ -109149,26 +103490,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 558, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04", - "is_superuser": false, - "username": "kenton.stiltner.ext", - "email": "[email protected]", - "title": null, - "first_name": "Kenton", - "last_name": "Stiltner", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 559, @@ -109329,26 +103650,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 567, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.044", - "is_superuser": false, - "username": "betsy.gage.ext", - "email": "[email protected]", - "title": null, - "first_name": "Betsy", - "last_name": "Gage", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 568, @@ -109429,46 +103730,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 572, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.068", - "is_superuser": false, - "username": "abigail.cormier.ext", - "email": "[email protected]", - "title": null, - "first_name": "Abigail", - "last_name": "Cormier", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 573, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.073", - "is_superuser": false, - "username": "librada.flanagan.ext", - "email": "[email protected]", - "title": null, - "first_name": "Librada", - "last_name": "Flanagan", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 574, @@ -109489,26 +103750,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 575, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.083", - "is_superuser": false, - "username": "agueda.cummins.ext", - "email": "[email protected]", - "title": null, - "first_name": "Agueda", - "last_name": "Cummins", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 576, @@ -109649,26 +103890,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 583, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.122", - "is_superuser": false, - "username": "gabrielle.vickery.ext", - "email": "[email protected]", - "title": null, - "first_name": "Gabrielle", - "last_name": "Vickery", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 584, @@ -109689,26 +103910,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 585, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.131", - "is_superuser": false, - "username": "abram.robinson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Abram", - "last_name": "Robinson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 586, @@ -109729,26 +103930,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 587, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.141", - "is_superuser": false, - "username": "quyen.walter.ext", - "email": "[email protected]", - "title": null, - "first_name": "Quyen", - "last_name": "Walter", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 588, @@ -109769,26 +103950,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 589, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.150", - "is_superuser": false, - "username": "mellie.odom.ext", - "email": "[email protected]", - "title": null, - "first_name": "Mellie", - "last_name": "Odom", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 590, @@ -109949,46 +104110,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 598, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-30T19:35:51.200", - "is_superuser": false, - "username": "theola.worley", - "email": "[email protected]", - "title": null, - "first_name": "Theola", - "last_name": "Worley", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 599, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.198", - "is_superuser": false, - "username": "charolette.mixon", - "email": "[email protected]", - "title": null, - "first_name": "Charolette", - "last_name": "Mixon", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 600, @@ -110129,26 +104250,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 607, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.237", - "is_superuser": false, - "username": "tonette.samuels.ext", - "email": "[email protected]", - "title": null, - "first_name": "Tonette", - "last_name": "Samuels", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 608, @@ -110189,26 +104290,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 610, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.252", - "is_superuser": false, - "username": "theron.tejeda.ext", - "email": "[email protected]", - "title": null, - "first_name": "Theron", - "last_name": "Tejeda", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 611, @@ -110329,46 +104410,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 617, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.285", - "is_superuser": false, - "username": "vito.gatlin.ext", - "email": "[email protected]", - "title": null, - "first_name": "Vito", - "last_name": "Gatlin", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 618, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.290", - "is_superuser": false, - "username": "millard.yang.ext", - "email": "[email protected]", - "title": null, - "first_name": "Millard", - "last_name": "Yang", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 619, @@ -110389,26 +104430,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 620, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.300", - "is_superuser": false, - "username": "christa.delagarza.ext", - "email": "[email protected]", - "title": null, - "first_name": "Christa", - "last_name": "Delagarza", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 621, @@ -110429,26 +104450,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 622, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.309", - "is_superuser": false, - "username": "joyce.bryson.ext", - "email": "[email protected]", - "title": null, - "first_name": "Joyce", - "last_name": "Bryson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 623, @@ -110509,26 +104510,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 626, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:04.329", - "is_superuser": false, - "username": "jeramy.ortega.ext", - "email": "[email protected]", - "title": null, - "first_name": "Jeramy", - "last_name": "Ortega", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 627, @@ -110569,66 +104550,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 629, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-04-18T14:35:38.160", - "is_superuser": false, - "username": "ezra.mendes", - "email": "[email protected]", - "title": "", - "first_name": "Ezra", - "last_name": "Mendes", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 630, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:45.109", - "is_superuser": false, - "username": "hermila.lundgren.ext", - "email": "[email protected]", - "title": null, - "first_name": "Hermila", - "last_name": "Lundgren", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 631, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:55.384", - "is_superuser": false, - "username": "maud.haag.ext", - "email": "[email protected]", - "title": null, - "first_name": "Maud", - "last_name": "Haag", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 632, @@ -110709,33 +104630,12 @@ 2217, 964, 2139, - 1112, 249, 60 ], "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 636, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:11:57.996", - "is_superuser": false, - "username": "simone.dibble.ext", - "email": "[email protected]", - "title": null, - "first_name": "Simone", - "last_name": "Dibble", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 637, @@ -110756,26 +104656,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 638, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T17:12:19.049", - "is_superuser": false, - "username": "kristin.vanwinkle.ext", - "email": "[email protected]", - "title": null, - "first_name": "Kristin", - "last_name": "Vanwinkle", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 639, @@ -110918,9 +104798,7 @@ 690, 815 ], - "cc_users": [ - 2358 - ] + "cc_users": [] } }, { @@ -110961,8 +104839,6 @@ "user_permissions": [], "delegates": [ 2217, - 2128, - 1112, 249 ], "cc_users": [] @@ -112712,26 +106588,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 745, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-09T17:32:37.885", - "is_superuser": false, - "username": "kali.nesmith", - "email": "[email protected]", - "title": null, - "first_name": "Kali", - "last_name": "Nesmith", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 747, @@ -114657,26 +108513,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 846, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-10T12:52:29.782", - "is_superuser": false, - "username": "julianna.chestnut", - "email": "[email protected]", - "title": null, - "first_name": "Julianna", - "last_name": "Chestnut", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 847, @@ -115537,26 +109373,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 890, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-04T11:41:51.318", - "is_superuser": false, - "username": "nigel.shade", - "email": "[email protected]", - "title": null, - "first_name": "Nigel", - "last_name": "Shade", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 891, @@ -115897,46 +109713,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 909, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-31T10:59:42.453", - "is_superuser": false, - "username": "amiee.vaughan", - "email": "[email protected]", - "title": "", - "first_name": "Amiee", - "last_name": "Vaughan", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 910, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-18T18:15:45.159", - "is_superuser": false, - "username": "lavelle.wilkerson", - "email": "[email protected]", - "title": null, - "first_name": "Lavelle", - "last_name": "Wilkerson", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 911, @@ -116455,7 +110231,6 @@ "user_permissions": [], "delegates": [ 2217, - 1112, 249 ], "cc_users": [] @@ -116479,7 +110254,6 @@ "user_permissions": [], "delegates": [ 2217, - 1112, 249 ], "cc_users": [] @@ -116545,26 +110319,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 943, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:10:32.534", - "is_superuser": false, - "username": "celestine.pelletier.ext", - "email": "[email protected]", - "title": null, - "first_name": "Celestine", - "last_name": "Pelletier", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 944, @@ -116645,26 +110399,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 948, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:11:26.648", - "is_superuser": false, - "username": "krista.stack.ext", - "email": "[email protected]", - "title": null, - "first_name": "Krista", - "last_name": "Stack", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 949, @@ -116705,106 +110439,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 951, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:11:26.714", - "is_superuser": false, - "username": "leonila.sturgeon.ext", - "email": "[email protected]", - "title": null, - "first_name": "Leonila", - "last_name": "Sturgeon", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 953, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:11:27.448", - "is_superuser": false, - "username": "sherilyn.neff.ext", - "email": "[email protected]", - "title": null, - "first_name": "Sherilyn", - "last_name": "Neff", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 954, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:11:27.466", - "is_superuser": false, - "username": "phyliss.lahr.ext", - "email": "[email protected]", - "title": null, - "first_name": "Phyliss", - "last_name": "Lahr", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 955, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:11:27.484", - "is_superuser": false, - "username": "bret.niles.ext", - "email": "[email protected]", - "title": null, - "first_name": "Bret", - "last_name": "Niles", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 956, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:11:27.502", - "is_superuser": false, - "username": "elvina.bivins.ext", - "email": "[email protected]", - "title": null, - "first_name": "Elvina", - "last_name": "Bivins", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 957, @@ -116865,46 +110499,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 960, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:11:58.797", - "is_superuser": false, - "username": "stepanie.pace.ext", - "email": "[email protected]", - "title": null, - "first_name": "Stepanie", - "last_name": "Pace", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 961, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-19T00:12:03.864", - "is_superuser": false, - "username": "fletcher.logan.ext", - "email": "[email protected]", - "title": null, - "first_name": "Fletcher", - "last_name": "Logan", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 963, @@ -116965,66 +110559,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 967, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-27T09:38:23.077", - "is_superuser": false, - "username": "lady.close", - "email": "[email protected]", - "title": "", - "first_name": "Lady", - "last_name": "Close", - "login_key": null, - "login_key_valid_until": "2012-01-27", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 968, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-24T23:19:28.993", - "is_superuser": false, - "username": "rosia.hudspeth.ext", - "email": "[email protected]", - "title": null, - "first_name": "Rosia", - "last_name": "Hudspeth", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 969, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-24T23:20:11.418", - "is_superuser": false, - "username": "shante.craven.ext", - "email": "[email protected]", - "title": null, - "first_name": "Shante", - "last_name": "Craven", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 970, @@ -117045,26 +110579,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 971, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-24T23:22:05.112", - "is_superuser": false, - "username": "kali.brock.ext", - "email": "[email protected]", - "title": null, - "first_name": "Kali", - "last_name": "Brock", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 972, @@ -117185,26 +110699,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 981, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-03T09:44:08.195", - "is_superuser": false, - "username": "ying.monaghan", - "email": "[email protected]", - "title": null, - "first_name": "Ying", - "last_name": "Monaghan", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 982, @@ -117225,26 +110719,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 983, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-30T13:28:34.398", - "is_superuser": false, - "username": "catrina.bettis", - "email": "[email protected]", - "title": null, - "first_name": "Catrina", - "last_name": "Bettis", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 984, @@ -117325,26 +110799,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 988, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-30T19:54:21.983", - "is_superuser": false, - "username": "gabriella.hidalgo", - "email": "[email protected]", - "title": null, - "first_name": "Gabriella", - "last_name": "Hidalgo", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 989, @@ -117405,26 +110859,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 992, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-01-30T17:31:29.779", - "is_superuser": false, - "username": "sudie.mahoney", - "email": "[email protected]", - "title": null, - "first_name": "Sudie", - "last_name": "Mahoney", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 993, @@ -117443,7 +110877,6 @@ "user_permissions": [], "delegates": [ 2217, - 1112, 249 ], "cc_users": [] @@ -117467,7 +110900,6 @@ "user_permissions": [], "delegates": [ 2217, - 1112, 249 ], "cc_users": [] @@ -117489,11 +110921,7 @@ "login_key_valid_until": null, "groups": [], "user_permissions": [], - "delegates": [ - 2339, - 2338, - 2340 - ], + "delegates": [], "cc_users": [] } }, @@ -117557,46 +110985,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 999, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-01T18:14:55.002", - "is_superuser": false, - "username": "prudence.valentine", - "email": "[email protected]", - "title": null, - "first_name": "Prudence", - "last_name": "Valentine", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 1000, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-01T18:18:19.544", - "is_superuser": false, - "username": "georgianne.caraballo", - "email": "[email protected]", - "title": null, - "first_name": "Georgianne", - "last_name": "Caraballo", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1001, @@ -117699,26 +111087,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 1006, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-02-02T20:54:02.094", - "is_superuser": false, - "username": "christian.tobias.ext", - "email": "[email protected]", - "title": null, - "first_name": "Christian", - "last_name": "Tobias", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1008, @@ -117807,26 +111175,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 1012, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-03-06T11:33:19.053", - "is_superuser": false, - "username": "shila.slaughter.ext", - "email": "[email protected]", - "title": null, - "first_name": "Shila", - "last_name": "Slaughter", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1013, @@ -117847,26 +111195,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 1014, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-17T09:17:06.488", - "is_superuser": false, - "username": "roy.koonce", - "email": "[email protected]", - "title": null, - "first_name": "Roy", - "last_name": "Koonce", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1015, @@ -118247,26 +111575,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 1093, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-12-02T21:45:11.356", - "is_superuser": false, - "username": "emma.reagan", - "email": "[email protected]", - "title": null, - "first_name": "Emma", - "last_name": "Reagan", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1094, @@ -118307,26 +111615,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 1096, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-06-14T15:20:53.826", - "is_superuser": false, - "username": "catheryn.mangum", - "email": "[email protected]", - "title": null, - "first_name": "Catheryn", - "last_name": "Mangum", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1098, @@ -118485,7 +111773,6 @@ "user_permissions": [], "delegates": [ 2217, - 1112, 249 ], "cc_users": [] @@ -118571,26 +111858,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 1112, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-03T15:49:56.105", - "is_superuser": false, - "username": "marvella.goode", - "email": "[email protected]", - "title": "", - "first_name": "Marvella", - "last_name": "Goode", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1113, @@ -118611,29 +111878,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 1114, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-27T09:52:03.725", - "is_superuser": false, - "username": "darrel.roche.ext", - "email": "[email protected]", - "title": "", - "first_name": "Darrel", - "last_name": "Roche", - "login_key": 1377346477, - "login_key_valid_until": "2013-02-25", - "groups": [], - "user_permissions": [], - "delegates": [ - 2217, - 1112 - ], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1115, @@ -118654,26 +111898,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 1116, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-30T20:46:31.472", - "is_superuser": false, - "username": "hyacinth.barnard.ext", - "email": "[email protected]", - "title": null, - "first_name": "Hyacinth", - "last_name": "Barnard", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1117, @@ -118694,26 +111918,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 1118, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-06T11:36:20.675", - "is_superuser": false, - "username": "lala.ma", - "email": "[email protected]", - "title": null, - "first_name": "Lala", - "last_name": "Ma", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1119, @@ -118754,26 +111958,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 1123, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-23T11:58:45.323", - "is_superuser": false, - "username": "sherrell.griggs", - "email": "[email protected]", - "title": null, - "first_name": "Sherrell", - "last_name": "Griggs", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1124, @@ -118814,26 +111998,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 1126, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-30T19:43:50.033", - "is_superuser": false, - "username": "buster.cheng", - "email": "[email protected]", - "title": null, - "first_name": "Buster", - "last_name": "Cheng", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1127, @@ -118874,26 +112038,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 1133, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-07-07T12:24:56.984", - "is_superuser": false, - "username": "vonda.franz.ext", - "email": "[email protected]", - "title": null, - "first_name": "Vonda", - "last_name": "Franz", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1134, @@ -119094,26 +112238,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 1145, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-11-23T13:43:22.693", - "is_superuser": false, - "username": "lawanna.farris.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lawanna", - "last_name": "Farris", - "login_key": 875368336, - "login_key_valid_until": "2013-02-21", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1146, @@ -119194,26 +112318,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 1150, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2012-12-13T10:21:31.040", - "is_superuser": false, - "username": "seth.callahan.ext", - "email": "[email protected]", - "title": null, - "first_name": "Seth", - "last_name": "Callahan", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 1151, @@ -120736,26 +113840,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2077, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-24T16:51:02.178", - "is_superuser": false, - "username": "carita.wilke", - "email": "[email protected]", - "title": null, - "first_name": "Carita", - "last_name": "Wilke", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2078, @@ -120815,7 +113899,6 @@ "delegates": [], "cc_users": [ 2217, - 1112, 249 ] } @@ -121040,26 +114123,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2104, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-05T08:51:26.688", - "is_superuser": false, - "username": "olin.hawes", - "email": "[email protected]", - "title": null, - "first_name": "Olin", - "last_name": "Hawes", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2105, @@ -121100,46 +114163,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2107, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-24T16:51:46.937", - "is_superuser": false, - "username": "nadene.bradford", - "email": "[email protected]", - "title": null, - "first_name": "Nadene", - "last_name": "Bradford", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2108, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-24T16:51:48.463", - "is_superuser": false, - "username": "kelle.knotts", - "email": "[email protected]", - "title": null, - "first_name": "Kelle", - "last_name": "Knotts", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2110, @@ -121180,26 +114203,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2112, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-04T14:55:35.967", - "is_superuser": false, - "username": "berniece.picard.ext", - "email": "[email protected]", - "title": null, - "first_name": "Berniece", - "last_name": "Picard", - "login_key": 963866449, - "login_key_valid_until": "2013-05-05", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2118, @@ -121240,66 +114243,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2120, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-06T11:45:06.688", - "is_superuser": false, - "username": "cesar.mcqueen.ext", - "email": "[email protected]", - "title": null, - "first_name": "Cesar", - "last_name": "Mcqueen", - "login_key": 1275213133, - "login_key_valid_until": "2013-05-07", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2121, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-30T10:01:43.864", - "is_superuser": false, - "username": "donetta.boone.ext", - "email": "[email protected]", - "title": null, - "first_name": "Donetta", - "last_name": "Boone", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2122, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-30T10:03:00.296", - "is_superuser": false, - "username": "roseline.passmore.ext", - "email": "[email protected]", - "title": null, - "first_name": "Roseline", - "last_name": "Passmore", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2123, @@ -121320,26 +114263,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2124, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-01-30T10:04:50.384", - "is_superuser": false, - "username": "lakia.jeter.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lakia", - "last_name": "Jeter", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2125, @@ -121400,46 +114323,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2128, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-02-01T18:02:34.635", - "is_superuser": false, - "username": "charita.fenwick.ext", - "email": "[email protected]", - "title": null, - "first_name": "Charita", - "last_name": "Fenwick", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2129, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-04-10T12:25:44.086", - "is_superuser": false, - "username": "lawanda.greene.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lawanda", - "last_name": "Greene", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2130, @@ -121520,26 +114403,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2136, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-01T13:56:06.714", - "is_superuser": false, - "username": "shauna.chow.ext", - "email": "[email protected]", - "title": null, - "first_name": "Shauna", - "last_name": "Chow", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2137, @@ -121640,26 +114503,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2142, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-05-31T10:19:28.765", - "is_superuser": false, - "username": "dorine.vidal.ext", - "email": "[email protected]", - "title": null, - "first_name": "Dorine", - "last_name": "Vidal", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2143, @@ -121718,7 +114561,6 @@ "user_permissions": [], "delegates": [ 2217, - 1112, 249 ], "cc_users": [] @@ -122284,26 +115126,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2175, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T12:36:23.385", - "is_superuser": false, - "username": "chantel.hedgepeth", - "email": "[email protected]", - "title": null, - "first_name": "Chantel", - "last_name": "Hedgepeth", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2176, @@ -122444,46 +115266,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2187, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:44:05.275", - "is_superuser": false, - "username": "danial.weller.ext", - "email": "[email protected]", - "title": null, - "first_name": "Danial", - "last_name": "Weller", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2188, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:44:05.596", - "is_superuser": false, - "username": "shiloh.christiansen.ext", - "email": "[email protected]", - "title": null, - "first_name": "Shiloh", - "last_name": "Christiansen", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2189, @@ -122524,26 +115306,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2191, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-13T23:44:20.280", - "is_superuser": false, - "username": "lanora.mcclellan.ext", - "email": "[email protected]", - "title": null, - "first_name": "Lanora", - "last_name": "Mcclellan", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2192, @@ -122564,26 +115326,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2193, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-06-19T08:50:12.151", - "is_superuser": false, - "username": "krishna.ingram", - "email": "[email protected]", - "title": null, - "first_name": "Krishna", - "last_name": "Ingram", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2194, @@ -122744,46 +115486,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2203, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-02T14:00:04.633", - "is_superuser": false, - "username": "wilbert.mears.ext", - "email": "[email protected]", - "title": null, - "first_name": "Wilbert", - "last_name": "Mears", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2204, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-04T10:40:03.876", - "is_superuser": false, - "username": "deja.brewster.ext", - "email": "[email protected]", - "title": null, - "first_name": "Deja", - "last_name": "Brewster", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2205, @@ -122804,86 +115506,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2206, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-08T10:20:20.852", - "is_superuser": false, - "username": "tia.thacker", - "email": "[email protected]", - "title": null, - "first_name": "Tia", - "last_name": "Thacker", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2207, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-08T10:58:08.846", - "is_superuser": false, - "username": "loyce.alaniz.ext", - "email": "[email protected]", - "title": null, - "first_name": "Loyce", - "last_name": "Alaniz", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2208, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-12T09:49:08.087", - "is_superuser": false, - "username": "ming.short.ext", - "email": "[email protected]", - "title": null, - "first_name": "Ming", - "last_name": "Short", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2209, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2013-07-12T11:56:03.407", - "is_superuser": false, - "username": "abraham.gamble.ext", - "email": "[email protected]", - "title": null, - "first_name": "Abraham", - "last_name": "Gamble", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2210, @@ -123444,26 +116066,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2239, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-10T16:50:57.853", - "is_superuser": false, - "username": "veta.herman.ext", - "email": "[email protected]", - "title": null, - "first_name": "Veta", - "last_name": "Herman", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2240, @@ -123564,26 +116166,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2246, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:54:33.282", - "is_superuser": false, - "username": "lino.moniz", - "email": "[email protected]", - "title": null, - "first_name": "Lino", - "last_name": "Moniz", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2247, @@ -123624,26 +116206,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2249, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:16:58.260", - "is_superuser": false, - "username": "shawnee.rivas.ext", - "email": "[email protected]", - "title": "", - "first_name": "Shawnee", - "last_name": "Rivas", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2251, @@ -124806,26 +117368,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2309, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:17:00.850", - "is_superuser": false, - "username": "nilsa.pulliam.ext", - "email": "[email protected]", - "title": "", - "first_name": "Nilsa", - "last_name": "Pulliam", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2310, @@ -124886,26 +117428,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2313, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-22T15:00:10.279", - "is_superuser": false, - "username": "lai.david", - "email": "[email protected]", - "title": null, - "first_name": "Lai", - "last_name": "David", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2314, @@ -124946,26 +117468,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2316, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-08T23:17:02.952", - "is_superuser": false, - "username": "elicia.aquino.ext", - "email": "[email protected]", - "title": "", - "first_name": "Elicia", - "last_name": "Aquino", - "login_key": null, - "login_key_valid_until": "2014-08-06", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2317, @@ -125086,7 +117588,6 @@ "user_permissions": [], "delegates": [ 2217, - 1112, 249 ], "cc_users": [] @@ -125111,7 +117612,6 @@ "delegates": [], "cc_users": [ 2217, - 1112, 249 ] } @@ -125134,112 +117634,11 @@ "user_permissions": [], "delegates": [ 2217, - 1112, 249 ], "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2331, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-10T14:38:26.926", - "is_superuser": false, - "username": "brigitte.leeper.ext", - "email": "[email protected]", - "title": "", - "first_name": "Brigitte", - "last_name": "Leeper", - "login_key": 1269105913, - "login_key_valid_until": "2014-08-15", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2332, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-10T15:20:44.411", - "is_superuser": false, - "username": "kyle.fredericks", - "email": "[email protected]", - "title": "", - "first_name": "Kyle", - "last_name": "Fredericks", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2333, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-24T09:34:16.016", - "is_superuser": false, - "username": "francoise.lawrence", - "email": "[email protected]", - "title": "", - "first_name": "Francoise", - "last_name": "Lawrence", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2334, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-10T15:42:22.491", - "is_superuser": false, - "username": "carylon.gordon", - "email": "[email protected]", - "title": "", - "first_name": "Carylon", - "last_name": "Gordon", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2335, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-01-15T22:01:49.301", - "is_superuser": false, - "username": "kathlyn.hedgepeth.ext", - "email": "[email protected]", - "title": "", - "first_name": "Kathlyn", - "last_name": "Hedgepeth", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2336, @@ -125280,66 +117679,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2338, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:16:59.611", - "is_superuser": false, - "username": "ryann.fortin", - "email": "[email protected]", - "title": "", - "first_name": "Ryann", - "last_name": "Fortin", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2339, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-02-27T16:23:33.471", - "is_superuser": false, - "username": "stepanie.elliott", - "email": "[email protected]", - "title": "", - "first_name": "Stepanie", - "last_name": "Elliott", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2340, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-23T16:31:07.005", - "is_superuser": false, - "username": "tu.laplante", - "email": "[email protected]", - "title": "", - "first_name": "Tu", - "last_name": "Laplante", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2341, @@ -125358,72 +117697,11 @@ "user_permissions": [], "delegates": [ 2217, - 1112, 249 ], "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2342, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-20T17:28:43.410", - "is_superuser": false, - "username": "lien.dykes.ext", - "email": "[email protected]", - "title": "", - "first_name": "Lien", - "last_name": "Dykes", - "login_key": 2037696738, - "login_key_valid_until": "2014-12-16", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2343, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-23T22:40:03.310", - "is_superuser": false, - "username": "kandra.hanna.ext", - "email": "[email protected]", - "title": "", - "first_name": "Kandra", - "last_name": "Hanna", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2344, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-30T10:25:18.077", - "is_superuser": false, - "username": "sung.holden", - "email": "[email protected]", - "title": "", - "first_name": "Sung", - "last_name": "Holden", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2345, @@ -125444,66 +117722,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2346, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-23T22:43:58.559", - "is_superuser": false, - "username": "alfred.fagan.ext", - "email": "[email protected]", - "title": "", - "first_name": "Alfred", - "last_name": "Fagan", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2347, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-23T23:01:46.291", - "is_superuser": false, - "username": "donovan.lilly.ext", - "email": "[email protected]", - "title": "", - "first_name": "Donovan", - "last_name": "Lilly", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2348, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-24T10:56:38.860", - "is_superuser": false, - "username": "ivonne.montalvo.ext", - "email": "[email protected]", - "title": "", - "first_name": "Ivonne", - "last_name": "Montalvo", - "login_key": 1811492288, - "login_key_valid_until": "2014-10-20", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2349, @@ -125544,46 +117762,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2351, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-24T10:09:51.801", - "is_superuser": false, - "username": "elly.morse.ext", - "email": "[email protected]", - "title": "", - "first_name": "Elly", - "last_name": "Morse", - "login_key": 63285277, - "login_key_valid_until": "2014-10-20", - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2352, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-03-23T23:05:21.822", - "is_superuser": false, - "username": "burton.garnett.ext", - "email": "[email protected]", - "title": "", - "first_name": "Burton", - "last_name": "Garnett", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2353, @@ -125604,26 +117782,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2354, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-18T15:44:06.482", - "is_superuser": false, - "username": "jaye.zielinski", - "email": "[email protected]", - "title": "", - "first_name": "Jaye", - "last_name": "Zielinski", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2355, @@ -125664,26 +117822,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2358, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-15T14:36:38.096", - "is_superuser": false, - "username": "vaughn.devlin", - "email": "[email protected]", - "title": "", - "first_name": "Vaughn", - "last_name": "Devlin", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2359, @@ -125704,186 +117842,6 @@ "cc_users": [] } }, -{ - "model": "evaluation.userprofile", - "pk": 2360, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-15T14:38:41.622", - "is_superuser": false, - "username": "terina.walsh", - "email": "[email protected]", - "title": "", - "first_name": "Terina", - "last_name": "Walsh", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2361, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-15T14:39:21.567", - "is_superuser": false, - "username": "melissa.billings", - "email": "[email protected]", - "title": "", - "first_name": "Melissa", - "last_name": "Billings", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2362, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-15T14:39:53.481", - "is_superuser": false, - "username": "loan.breen", - "email": "[email protected]", - "title": "", - "first_name": "Loan", - "last_name": "Breen", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2363, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-15T14:40:56.862", - "is_superuser": false, - "username": "selina.willard", - "email": "[email protected]", - "title": "", - "first_name": "Selina", - "last_name": "Willard", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2364, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-15T14:41:23.601", - "is_superuser": false, - "username": "nick.crisp", - "email": "[email protected]", - "title": "", - "first_name": "Nick", - "last_name": "Crisp", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2365, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-15T14:41:52.640", - "is_superuser": false, - "username": "vallie.mendenhall", - "email": "[email protected]", - "title": "", - "first_name": "Vallie", - "last_name": "Mendenhall", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2367, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-04-24T10:29:17.413", - "is_superuser": false, - "username": "hannah.barksdale.ext", - "email": "[email protected]", - "title": null, - "first_name": "Hannah", - "last_name": "Barksdale", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2368, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-05T10:07:46.603", - "is_superuser": false, - "username": "yolanda.gamble.ext", - "email": "[email protected]", - "title": null, - "first_name": "Yolanda", - "last_name": "Gamble", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, -{ - "model": "evaluation.userprofile", - "pk": 2369, - "fields": { - "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", - "last_login": "2014-05-21T23:25:18.929", - "is_superuser": false, - "username": "venita.arriaga", - "email": "[email protected]", - "title": "", - "first_name": "Venita", - "last_name": "Arriaga", - "login_key": null, - "login_key_valid_until": null, - "groups": [], - "user_permissions": [], - "delegates": [], - "cc_users": [] - } -}, { "model": "evaluation.userprofile", "pk": 2370, @@ -137459,7 +129417,6 @@ 862, 838, 844, - 910, 810 ], "voters": [ @@ -139339,7 +131296,6 @@ 1102, 559, 1086, - 22, 612, 616, 2190 @@ -139347,7 +131303,6 @@ "voters": [ 559, 1086, - 22, 612, 616 ] @@ -139441,8 +131396,7 @@ 660, 79, 686, - 596, - 37 + 596 ], "voters": [ 1099, @@ -140503,7 +132457,6 @@ 2053, 2019, 2052, - 2077, 2031 ], "voters": [ @@ -140810,7 +132763,6 @@ 826, 584, 2089, - 1093, 2101, 660, 653 @@ -140924,7 +132876,6 @@ 900, 2099, 741, - 20, 2091, 663, 930, @@ -141104,7 +133055,6 @@ 684, 2, 674, - 1014, 41, 80, 1086, @@ -141136,7 +133086,6 @@ 682, 1084, 687, - 598, 721 ], "voters": [ @@ -141149,7 +133098,6 @@ 1100, 883, 684, - 1014, 2101, 2097, 930, @@ -141413,7 +133361,6 @@ "participants": [ 642, 600, - 492, 561, 691, 557, @@ -141442,7 +133389,6 @@ 1091, 1089, 2093, - 1093, 2101, 2091, 930, @@ -141458,7 +133404,6 @@ 593, 1079, 2106, - 1093, 2101, 79, 624 @@ -141897,7 +133842,6 @@ ], "participants": [ 903, - 2175, 660 ], "voters": [ @@ -142683,11 +134627,7 @@ 2 ], "participants": [ - 401, - 479, - 2107, 695, - 1000, 680, 1100, 682 @@ -142954,8 +134894,7 @@ 2098, 757, 845, - 669, - 598 + 669 ], "voters": [] } @@ -143714,7 +135653,6 @@ 873, 584, 2089, - 2246, 2310, 2091, 897, @@ -144248,7 +136186,6 @@ "participants": [ 767, 2134, - 2175, 933, 2039, 2138, @@ -145089,16 +137026,11 @@ "participants": [ 2059, 815, - 126, 2039, - 328, 689, 932, - 397, 597, - 247, - 55, - 340 + 55 ], "voters": [] } diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -26,7 +26,8 @@ def test_num_queries_is_constant(self): and not linear to the number of users """ num_users = 50 - mommy.make(UserProfile, _quantity=num_users) + course = mommy.make(Course, state="published") # this triggers more checks in UserProfile.can_staff_delete + mommy.make(UserProfile, _quantity=num_users, courses_participating_in=[course]) with self.assertNumQueries(FuzzyInt(0, num_users-1)): self.app.get(self.url, user="staff")
Pagination for User view The view takes several seconds to load. We might need a pagination for the future feedback view as well.
We decided against pagination in the past. I think it was mainly because searching then gets more complicated than with the current sorttable. On the other hand a faster loading user page is not too bad :) besides the performance problem, whats the use case for pages? i.e. when would a staff user want to go to the next, previous, or a specific page in the user list? regarding the performance problem, i had another look at it and the page needed a linear number of db queries again which slipped through the tests. having fixed that, the loading time went down from 5s to 3.6s with the test data (1350 users) on my machine (sandy brigde i3). which is better but still slow of course. before paginating the table i'd rather just defer loading it, possibly decreasing overall loading time (because the request for the table data would be sent after the initial page is loaded) but at least the page loads fast intitially, or loading it in chunks. just having a search field that's processed on the server would have the disadvantage that you cannot search e.g. for the labels without lots of additional code (same goes for pagination btw) so i'd 1. first look whether we can speed up rendering the template further 2. if that's really not enough, do deferred loading or some other idea if you have one 3. not do pagination unless you give me examples how the pagination ui widget might actually be used random thought: we could send the data as json and render it client-side, but we would need to somehow (possibly inside the view or a django template) create a html template for a line of the table for that where the js code can insert the data. so. for future reference, here's a breakdown what happens on the user page. 1350 users. the view needs 2s to return (ivy bridge desktop i5). the query-count fix is already included. - 0.3s for the contributions prefetch, needed for is_contributor and is_responsible labels. - 0.6s for the courses_participating_in prefetch, needed for delete button. - 0.25s for rendering the delete button. - 0.3s for rendering the edit button, most of it is generating the url. - 0.25s for rendering all the labels (7 total). i see the following options: - i could replace the contributions prefetch (0.3s) by four annotations. - i could replace the courses_participating_in prefetch (0.6s) by two annotations which would replicate parts of can_staff_delete. - we could defer disabling the delete button (in total 0.85s), that would require some ajax work. don't know how ugly the interactions with the modal would look like in the code. - defer loading the table to make the page appear quicker - load the table in chunks. - do nothing. i'd say we do nothing but it's up to @janno42 to decide whether it's too annoying right now or not.
2016-04-01T17:58:30
e-valuation/EvaP
770
e-valuation__EvaP-770
[ "766" ]
3f51c9ba063925e34ba07bfe47caa96c76a87389
diff --git a/evap/contributor/views.py b/evap/contributor/views.py --- a/evap/contributor/views.py +++ b/evap/contributor/views.py @@ -66,7 +66,7 @@ def course_view(request, course_id): for name, field in cform.fields.items(): field.disabled = True - template_data = dict(form=form, formset=formset, course=course, edit=False, responsible=course.responsible_contributor.username) + template_data = dict(form=form, formset=formset, course=course, editable=False, responsible=course.responsible_contributor.username) return render(request, "contributor_course_form.html", template_data) @@ -104,7 +104,7 @@ def course_edit(request, course_id): return redirect('contributor:index') else: sort_formset(request, formset) - template_data = dict(form=course_form, formset=formset, course=course, edit=True, responsible=course.responsible_contributor.username) + template_data = dict(form=course_form, formset=formset, course=course, editable=True, responsible=course.responsible_contributor.username) return render(request, "contributor_course_form.html", template_data) diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -440,7 +440,7 @@ def course_create(request, semester_id): messages.success(request, _("Successfully created course.")) return redirect('staff:semester_view', semester_id) else: - return render(request, "staff_course_form.html", dict(semester=semester, form=form, formset=formset, staff=True)) + return render(request, "staff_course_form.html", dict(semester=semester, form=form, formset=formset, staff=True, editable=True, state="")) @staff_required @@ -478,6 +478,7 @@ def helper_course_edit(request, semester, course): form = CourseForm(request.POST or None, instance=course) formset = InlineContributionFormset(request.POST or None, instance=course, form_kwargs={'course': course}) + editable = course.can_staff_edit operation = request.POST.get('operation') @@ -504,7 +505,7 @@ def helper_course_edit(request, semester, course): return custom_redirect('staff:semester_view', semester.id) else: sort_formset(request, formset) - template_data = dict(semester=semester, course=course, form=form, formset=formset, staff=True, state=course.state) + template_data = dict(semester=semester, form=form, formset=formset, staff=True, state=course.state, editable=editable) return render(request, "staff_course_form.html", template_data)
Fix create course form When creating a new course the form is not rendered correctly because `course.can_staff_edit` is not defined in this situation.
2016-04-02T15:48:01
e-valuation/EvaP
772
e-valuation__EvaP-772
[ "768" ]
b0ad5b76cee98bb1b09d816581a9841db8249c93
diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -40,7 +40,7 @@ class UserBulkDeleteForm(forms.Form, BootstrapMixin): class SemesterForm(forms.ModelForm, BootstrapMixin): class Meta: model = Semester - fields = "__all__" + fields = ("name_de", "name_en") class DegreeForm(forms.ModelForm, BootstrapMixin):
Create semester form The form for creating a semester should not have an `is archived` checkbox.
2016-04-02T18:03:13
e-valuation/EvaP
774
e-valuation__EvaP-774
[ "754" ]
4af95ef9e780ac182b0bec797cb45dae4f46e816
diff --git a/evap/staff/urls.py b/evap/staff/urls.py --- a/evap/staff/urls.py +++ b/evap/staff/urls.py @@ -15,14 +15,14 @@ url(r"^semester/(\d+)/edit$", semester_edit, name="semester_edit"), url(r"^semester/(\d+)/import$", semester_import, name="semester_import"), url(r"^semester/(\d+)/export$", semester_export, name="semester_export"), - url(r"^semester/(\d+)/assign$", semester_assign_questionnaires, name="semester_assign_questionnaires"), + url(r"^semester/(\d+)/assign$", semester_questionnaire_assign, name="semester_questionnaire_assign"), url(r"^semester/(\d+)/todo", semester_todo, name="semester_todo"), url(r"^semester/(\d+)/lottery$", semester_lottery, name="semester_lottery"), url(r"^semester/(\d+)/course/create$", course_create, name="course_create"), url(r"^semester/(\d+)/course/(\d+)/edit$", course_edit, name="course_edit"), url(r"^semester/(\d+)/course/(\d+)/email$", course_email, name="course_email"), url(r"^semester/(\d+)/course/(\d+)/preview$", course_preview, name="course_preview"), - url(r"^semester/(\d+)/course/(\d+)/importparticipants", course_import_participants, name="course_import_participants"), + url(r"^semester/(\d+)/course/(\d+)/participant_import", course_participant_import, name="course_participant_import"), url(r"^semester/(\d+)/course/(\d+)/comments$", course_comments, name="course_comments"), url(r"^semester/(\d+)/course/(\d+)/comment/(\d+)/edit$", course_comment_edit, name="course_comment_edit"), url(r"^semester/(\d+)/courseoperation$", semester_course_operation, name="semester_course_operation"), diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -324,10 +324,10 @@ def semester_import(request, semester_id): # parse table EnrollmentImporter.process(request, excel_file, semester, vote_start_date, vote_end_date, test_run) if test_run: - return render(request, "staff_import.html", dict(semester=semester, form=form)) + return render(request, "staff_semester_import.html", dict(semester=semester, form=form)) return redirect('staff:semester_view', semester_id) else: - return render(request, "staff_import.html", dict(semester=semester, form=form)) + return render(request, "staff_semester_import.html", dict(semester=semester, form=form)) @staff_required @@ -355,7 +355,7 @@ def semester_export(request, semester_id): @staff_required -def semester_assign_questionnaires(request, semester_id): +def semester_questionnaire_assign(request, semester_id): semester = get_object_or_404(Semester, id=semester_id) raise_permission_denied_if_archived(semester) courses = semester.course_set.filter(state='new') @@ -373,7 +373,7 @@ def semester_assign_questionnaires(request, semester_id): messages.success(request, _("Successfully assigned questionnaires.")) return redirect('staff:semester_view', semester_id) else: - return render(request, "staff_semester_assign_questionnaires.html", dict(semester=semester, form=form)) + return render(request, "staff_semester_questionnaire_assign_form.html", dict(semester=semester, form=form)) @staff_required @@ -571,7 +571,7 @@ def course_email(request, semester_id, course_id): @staff_required -def course_import_participants(request, semester_id, course_id): +def course_participant_import(request, semester_id, course_id): course = get_object_or_404(Course, id=course_id) semester = get_object_or_404(Semester, id=semester_id) raise_permission_denied_if_archived(course) @@ -593,14 +593,14 @@ def course_import_participants(request, semester_id, course_id): # Test run, or an error occurred while parsing -> stay and display error. if test_run or not imported_users: - return render(request, "staff_import_participants.html", dict(course=course, form=form)) + return render(request, "staff_course_participant_import.html", dict(course=course, form=form)) else: # Add users to course participants. * converts list into parameters. course.participants.add(*imported_users) messages.success(request, "%d Participants added to course %s" % (len(imported_users), course.name)) return redirect('staff:semester_view', semester_id) else: - return render(request, "staff_import_participants.html", dict(course=course, form=form, semester=semester)) + return render(request, "staff_course_participant_import.html", dict(course=course, form=form, semester=semester)) @staff_required
diff --git a/evap/contributor/tests/test_views.py b/evap/contributor/tests/test_views.py --- a/evap/contributor/tests/test_views.py +++ b/evap/contributor/tests/test_views.py @@ -1,7 +1,7 @@ from webtest.app import AppError from evap.evaluation.models import Course, Questionnaire -from evap.evaluation.tests.test_utils import ViewTest, course_with_responsible_and_editor, lastform +from evap.evaluation.tests.test_utils import ViewTest, course_with_responsible_and_editor TESTING_COURSE_ID = 2 @@ -84,7 +84,7 @@ def test_contributor_course_edit(self): course = Course.objects.get(pk=TESTING_COURSE_ID) page = self.get_assert_200("/contributor/course/{}/edit".format(TESTING_COURSE_ID), user="responsible") - form = lastform(page) + form = page.forms["course-form"] form["vote_start_date"] = "02/1/2098" form["vote_end_date"] = "02/1/2099" diff --git a/evap/evaluation/tests/test_coverage.py b/evap/evaluation/tests/test_coverage.py --- a/evap/evaluation/tests/test_coverage.py +++ b/evap/evaluation/tests/test_coverage.py @@ -4,7 +4,7 @@ from evap.evaluation.models import Semester, Questionnaire, UserProfile, Course, \ EmailTemplate, Degree, CourseType, Contribution -from evap.evaluation.tests.test_utils import WebTest, lastform +from evap.evaluation.tests.test_utils import WebTest from evap.staff.forms import ContributionFormSet, ContributionForm from model_mommy import mommy @@ -231,7 +231,7 @@ def helper_semester_state_views(self, course_ids, old_state, new_state, operatio form['course'] = course_ids response = form.submit('operation', value=operation) - form = lastform(response) + form = response.forms["course-operation-form"] response = form.submit() self.assertIn("Successfully", str(response)) for course_id in course_ids: @@ -271,7 +271,7 @@ def test_course_create(self): data = dict(name_de="asdf", name_en="asdf", type=1, degrees=["1"], vote_start_date="02/1/2014", vote_end_date="02/1/2099", general_questions=["2"]) response = self.get_assert_200("/staff/semester/1/course/create", "evap") - form = lastform(response) + form = response.forms["course-form"] form["name_de"] = "lfo9e7bmxp1xi" form["name_en"] = "asdf" form["type"] = 1 @@ -304,7 +304,7 @@ def test_single_result_create(self): Tests the single result creation view with one valid and one invalid input dataset. """ response = self.get_assert_200("/staff/semester/1/singleresult/create", "evap") - form = lastform(response) + form = response.forms["single-result-form"] form["name_de"] = "qwertz" form["name_en"] = "qwertz" form["type"] = 1 @@ -327,7 +327,7 @@ def test_course_email(self): Tests whether the course email view actually sends emails. """ page = self.get_assert_200("/staff/semester/1/course/5/email", user="evap") - form = lastform(page) + form = page.forms["course-email-form"] form.get("recipients", index=0).checked = True # send to all participants form["subject"] = "asdf" form["body"] = "asdf" @@ -355,7 +355,7 @@ def test_create_user(self): Tests whether the user creation view actually creates a user. """ page = self.get_assert_200("/staff/user/create", "evap") - form = lastform(page) + form = page.forms["user-form"] form["username"] = "mflkd862xmnbo5" form["first_name"] = "asd" form["last_name"] = "asd" @@ -370,7 +370,7 @@ def test_emailtemplate(self): Tests the emailtemplate view with one valid and one invalid input datasets. """ page = self.get_assert_200("/staff/template/1", "evap") - form = lastform(page) + form = page.forms["template-form"] form["subject"] = "subject: mflkd862xmnbo5" form["body"] = "body: mflkd862xmnbo5" form.submit() @@ -389,7 +389,7 @@ def test_student_vote(self): the course a second time. """ page = self.get_assert_200("/student/vote/5", user="lazy.student") - form = lastform(page) + form = page.forms["student-vote-form"] form["question_17_2_3"] = "some text" form["question_17_2_4"] = 1 form["question_17_2_5"] = 6 @@ -401,7 +401,7 @@ def test_student_vote(self): response = form.submit() self.assertIn("vote for all rating questions", response) - form = lastform(page) + form = page.forms["student-vote-form"] self.assertEqual(form["question_17_2_3"].value, "some text") self.assertEqual(form["question_17_2_4"].value, "1") self.assertEqual(form["question_17_2_5"].value, "6") @@ -420,7 +420,7 @@ def test_course_type_form(self): Adds a course type via the staff form and verifies that the type was created in the db. """ page = self.get_assert_200("/staff/course_types/", user="evap") - form = lastform(page) + form = page.forms["course-type-form"] last_form_id = int(form["form-TOTAL_FORMS"].value) - 1 form["form-" + str(last_form_id) + "-name_de"].value = "Test" form["form-" + str(last_form_id) + "-name_en"].value = "Test" @@ -434,7 +434,7 @@ def test_degree_form(self): Adds a degree via the staff form and verifies that the degree was created in the db. """ page = self.get_assert_200("/staff/degrees/", user="evap") - form = lastform(page) + form = page.forms["degree-form"] last_form_id = int(form["form-TOTAL_FORMS"].value) - 1 form["form-" + str(last_form_id) + "-name_de"].value = "Test" form["form-" + str(last_form_id) + "-name_en"].value = "Test" @@ -454,7 +454,7 @@ def test_course_type_merge(self): self.assertGreater(courses_with_other_type.count(), 0) page = self.get_assert_200("/staff/course_types/" + str(main_type.pk) + "/merge/" + str(other_type.pk), user="evap") - form = lastform(page) + form = page.forms["course-type-merge-form"] response = form.submit() self.assertIn("Successfully", str(response)) diff --git a/evap/evaluation/tests/test_misc.py b/evap/evaluation/tests/test_misc.py --- a/evap/evaluation/tests/test_misc.py +++ b/evap/evaluation/tests/test_misc.py @@ -9,7 +9,7 @@ from model_mommy import mommy from evap.evaluation.models import Semester, UserProfile, CourseType -from evap.evaluation.tests.test_utils import WebTest, lastform +from evap.evaluation.tests.test_utils import WebTest @override_settings(INSTITUTION_EMAIL_DOMAINS=["institution.com", "student.institution.com"]) @@ -27,7 +27,7 @@ def test_sample_xls(self): original_user_count = UserProfile.objects.count() - form = lastform(page) + form = page.forms["semester-import-form"] form["vote_start_date"] = "2015-01-01" form["vote_end_date"] = "2099-01-01" form["excel_file"] = (os.path.join(settings.BASE_DIR, "static", "sample.xls"),) @@ -40,7 +40,7 @@ def test_sample_user_xls(self): original_user_count = UserProfile.objects.count() - form = lastform(page) + form = page.forms["user-import-form"] form["excel_file"] = (os.path.join(settings.BASE_DIR, "static", "sample_user.xls"),) form.submit(name="operation", value="import") diff --git a/evap/evaluation/tests/test_utils.py b/evap/evaluation/tests/test_utils.py --- a/evap/evaluation/tests/test_utils.py +++ b/evap/evaluation/tests/test_utils.py @@ -58,10 +58,6 @@ def test_check_response_code_200(self): self.get_assert_200(self.url, user) -def lastform(page): - return page.forms[max(key for key in page.forms.keys() if isinstance(key, int))] - - def get_form_data_from_instance(FormClass, instance): assert FormClass._meta.model == type(instance) form = FormClass(instance=instance) diff --git a/evap/rewards/tests.py b/evap/rewards/tests.py --- a/evap/rewards/tests.py +++ b/evap/rewards/tests.py @@ -5,7 +5,7 @@ from evap.evaluation.models import Course from evap.evaluation.models import UserProfile -from evap.evaluation.tests.test_utils import WebTest, lastform +from evap.evaluation.tests.test_utils import WebTest from evap.rewards.models import SemesterActivation from evap.rewards.models import RewardPointRedemptionEvent from evap.rewards.tools import reward_points_of_user @@ -39,7 +39,7 @@ def test_redeem_reward_points(self): self.assertEqual(response.status_code, 200) user = UserProfile.objects.get(pk=5) - form = lastform(response) + form = response.forms["reward-redemption-form"] form.set("points-1", reward_points_of_user(user)) response = form.submit() self.assertEqual(response.status_code, 200) @@ -57,7 +57,7 @@ def test_create_redemption_event(self): """ response = self.app.get(reverse("rewards:reward_point_redemption_event_create"), user="evap") - form = lastform(response) + form = response.forms["reward-point-redemption-event-form"] form.set('name', 'Test3Event') form.set('date', '2014-12-10') form.set('redeem_end_date', '2014-11-20') @@ -72,7 +72,7 @@ def test_edit_redemption_event(self): """ response = self.app.get(reverse("rewards:reward_point_redemption_event_edit", args=[2]), user="evap") - form = lastform(response) + form = response.forms["reward-point-redemption-event-form"] name = form.get('name').value form.set('name', 'new name') @@ -89,7 +89,7 @@ def test_grant_reward_points(self): reward_points_before_end = reward_points_of_user(user) response = self.app.get(reverse("student:vote", args=[9]), user="student") - form = lastform(response) + form = response.forms["student-vote-form"] for key, value in form.fields.items(): if key is not None and "question" in key: form.set(key, 6) diff --git a/evap/staff/tests/test_usecases.py b/evap/staff/tests/test_usecases.py --- a/evap/staff/tests/test_usecases.py +++ b/evap/staff/tests/test_usecases.py @@ -8,7 +8,7 @@ from evap.evaluation.models import Semester, Questionnaire, Question, UserProfile, Course, \ CourseType, Contribution -from evap.evaluation.tests.test_utils import WebTest, lastform +from evap.evaluation.tests.test_utils import WebTest class UsecaseTests(WebTest): @@ -24,7 +24,7 @@ def test_import(self): # create a new semester page = page.click("[Cc]reate [Nn]ew [Ss]emester") - semester_form = lastform(page) + semester_form = page.forms["semester-form"] semester_form['name_de'] = "Testsemester" semester_form['name_en'] = "test semester" page = semester_form.submit().follow() @@ -40,7 +40,7 @@ def test_import(self): # import excel file page = page.click("[Ii]mport") - upload_form = lastform(page) + upload_form = page.forms["semester-import-form"] upload_form['vote_start_date'] = "02/29/2000" upload_form['vote_end_date'] = "02/29/2012" upload_form['excel_file'] = (os.path.join(settings.BASE_DIR, "staff/fixtures/test_enrolment_data.xls"),) @@ -78,7 +78,7 @@ def test_create_questionnaire(self): # create a new questionnaire page = page.click("[Cc]reate [Nn]ew [Qq]uestionnaire") - questionnaire_form = lastform(page) + questionnaire_form = page.forms["questionnaire-form"] questionnaire_form['name_de'] = "Test Fragebogen" questionnaire_form['name_en'] = "test questionnaire" questionnaire_form['public_name_de'] = "Oeffentlicher Test Fragebogen" @@ -98,7 +98,7 @@ def test_create_empty_questionnaire(self): # create a new questionnaire page = page.click("[Cc]reate [Nn]ew [Qq]uestionnaire") - questionnaire_form = lastform(page) + questionnaire_form = page.forms["questionnaire-form"] questionnaire_form['name_de'] = "Test Fragebogen" questionnaire_form['name_en'] = "test questionnaire" questionnaire_form['public_name_de'] = "Oeffentlicher Test Fragebogen" @@ -120,7 +120,7 @@ def test_copy_questionnaire(self): # create a new questionnaire page = page.click("All questionnaires") page = page.click("Copy", index=1) - questionnaire_form = lastform(page) + questionnaire_form = page.forms["questionnaire-form"] questionnaire_form['name_de'] = "Test Fragebogen (kopiert)" questionnaire_form['name_en'] = "test questionnaire (copied)" questionnaire_form['public_name_de'] = "Oeffentlicher Test Fragebogen (kopiert)" @@ -145,7 +145,7 @@ def test_assign_questionnaires(self): # assign questionnaire to courses page = page.click("Semester 1", index=0) page = page.click("Assign Questionnaires") - assign_form = lastform(page) + assign_form = page.forms["questionnaire-assign-form"] assign_form['Seminar'] = [questionnaire.pk] assign_form['Vorlesung'] = [questionnaire.pk] page = assign_form.submit().follow() @@ -163,7 +163,7 @@ def test_remove_responsibility(self): page = page.click(contribution.course.name_en) # remove responsibility - form = lastform(page) + form = page.forms["course-form"] form['contributions-0-responsibility'] = "CONTRIBUTOR" page = form.submit() diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -9,7 +9,7 @@ from evap.evaluation.models import Semester, UserProfile, Course, CourseType, \ TextAnswer, Contribution -from evap.evaluation.tests.test_utils import FuzzyInt, lastform, WebTest, ViewTest +from evap.evaluation.tests.test_utils import FuzzyInt, WebTest, ViewTest class TestUserIndexView(ViewTest): @@ -43,7 +43,7 @@ def setUpTestData(cls): def test_testrun_deletes_no_users(self): page = self.app.get(self.url, user='staff') - form = lastform(page) + form = page.forms["user-bulk-delete-form"] form["username_file"] = (self.filename,) @@ -62,7 +62,7 @@ def test_deletes_users(self): contribution = mommy.make(Contribution) mommy.make(UserProfile, username='contributor', contributions=[contribution]) page = self.app.get(self.url, user='staff') - form = lastform(page) + form = page.forms["user-bulk-delete-form"] form["username_file"] = (self.filename,) @@ -93,7 +93,7 @@ def setUpTestData(cls): def test_view_downloads_excel_file(self): page = self.app.get(self.url, user='staff') - form = lastform(page) + form = page.forms["semester-export-form"] # Check one course type. form.set('form-0-selected_course_types', 'id_form-0-selected_course_types_0') @@ -108,7 +108,7 @@ def test_view_downloads_excel_file(self): @override_settings(INSTITUTION_EMAIL_DOMAINS=["institution.com", "student.institution.com"]) class TestSemesterCourseImportParticipantsView(ViewTest): - url = "/staff/semester/1/course/1/importparticipants" + url = "/staff/semester/1/course/1/participant_import" test_users = ["staff"] filename_valid = os.path.join(settings.BASE_DIR, "staff/fixtures/valid_user_import.xls") filename_invalid = os.path.join(settings.BASE_DIR, "staff/fixtures/invalid_user_import.xls") @@ -124,7 +124,7 @@ def test_import_valid_file(self): original_participant_count = self.course.participants.count() - form = lastform(page) + form = page.forms["participant-import-form"] form["excel_file"] = (self.filename_valid,) form.submit(name="operation", value="import") @@ -135,7 +135,7 @@ def test_import_invalid_file(self): original_user_count = UserProfile.objects.count() - form = lastform(page) + form = page.forms["participant-import-form"] form["excel_file"] = (self.filename_invalid,) reply = form.submit(name="operation", value="import") @@ -150,7 +150,7 @@ def test_test_run(self): original_participant_count = self.course.participants.count() - form = lastform(page) + form = page.forms["participant-import-form"] form["excel_file"] = (self.filename_valid,) form.submit(name="operation", value="test") @@ -159,7 +159,7 @@ def test_test_run(self): def test_suspicious_operation(self): page = self.app.get(self.url, user='staff') - form = lastform(page) + form = page.forms["participant-import-form"] form["excel_file"] = (self.filename_valid,) # Should throw SuspiciousOperation Exception.
Find alternative to lastform() method used in many tests. While trying to implement a feedback form in the base.html file I broke about 1/3 of all tests: Some 35 test rely on using lastform() to identify the last form in the page. This breaks when any forms are added at the bottom of the page. If I add a form to the top, about 15 other tests break. They rely on the form to be tested to be at a certain index. A fix would be to name all forms and call them by their identifiers instead of relying on their location.
I would very much appreciate naming all forms.
2016-04-04T17:55:17
e-valuation/EvaP
779
e-valuation__EvaP-779
[ "775", "775" ]
4022ebb4c1df626d3cc1e6f99f31aa7a3f732bc3
diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -4,6 +4,7 @@ from django.forms.models import BaseInlineFormSet from django.utils.translation import ugettext_lazy as _ from django.utils.text import normalize_newlines +from django.http.request import QueryDict from django.core.exceptions import ValidationError from django.contrib.auth.models import Group @@ -316,8 +317,9 @@ def clean(self): class ContributionFormSet(AtLeastOneFormSet): - def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs) + def __init__(self, data=None, *args, **kwargs): + data = self.handle_moved_contributors(data, *args, **kwargs) + super().__init__(data, *args, **kwargs) self.queryset = self.instance.contributions.exclude(contributor=None) def handle_deleted_and_added_contributions(self): @@ -334,11 +336,51 @@ def handle_deleted_and_added_contributions(self): continue if not deleted_form.cleaned_data['contributor'] == form_with_errors.cleaned_data['contributor']: continue - form_with_errors.cleaned_data['id'] = deleted_form.cleaned_data['id'] form_with_errors.instance = deleted_form.instance # we modified the form, so we have to force re-validation form_with_errors.full_clean() + def handle_moved_contributors(self, data, *args, **kwargs): + """ + Work around https://code.djangoproject.com/ticket/25139 + Basically, if the user assigns a contributor who already has a contribution to a new contribution, + this moves the contributor (and all the data of the new form they got assigned to) back to the original contribution. + """ + if data is None or 'instance' not in kwargs: + return data + + course = kwargs['instance'] + total_forms = int(data['contributions-TOTAL_FORMS']) + for i in range(0, total_forms): + prefix = "contributions-" + str(i) + "-" + current_id = data.get(prefix + 'id', '') + contributor = data.get(prefix + 'contributor', '') + if contributor == '': + continue + # find the contribution that the contributor had before the user messed with it + try: + previous_id = str(Contribution.objects.get(contributor=contributor, course=course).id) + except Contribution.DoesNotExist: + continue + + if current_id == previous_id: + continue + + # find the form with that previous contribution and then swap the contributions + for j in range(0, total_forms): + other_prefix = "contributions-" + str(j) + "-" + other_id = data[other_prefix + 'id'] + if other_id == previous_id: + # swap all the data. the contribution's ids stay in place. + data2 = data.copy() + data = QueryDict(mutable=True) + for key, value in data2.lists(): + if not key.endswith('-id'): + key = key.replace(prefix, '%temp%').replace(other_prefix, prefix).replace('%temp%', other_prefix) + data.setlist(key, value) + break + return data + def clean(self): self.handle_deleted_and_added_contributions()
diff --git a/deployment/testing_environment/modules/evap/manifests/init.pp b/deployment/testing_environment/modules/evap/manifests/init.pp --- a/deployment/testing_environment/modules/evap/manifests/init.pp +++ b/deployment/testing_environment/modules/evap/manifests/init.pp @@ -23,5 +23,9 @@ provider => shell, command => 'python3 manage.py createcachetable', cwd => '/vagrant' + } -> exec { 'evap-cache-warmup': + provider => shell, + command => 'python3 manage.py refresh_results_cache', + cwd => '/vagrant' } } diff --git a/evap/contributor/tests/test_forms.py b/evap/contributor/tests/test_forms.py --- a/evap/contributor/tests/test_forms.py +++ b/evap/contributor/tests/test_forms.py @@ -4,7 +4,7 @@ from evap.evaluation.models import UserProfile, Course, Questionnaire, Contribution from evap.contributor.forms import DelegatesForm, EditorContributionForm -from evap.evaluation.tests.test_utils import WebTest, get_form_data_from_instance +from evap.evaluation.tests.test_utils import WebTest, get_form_data_from_instance, to_querydict from evap.staff.forms import ContributionFormSet @@ -45,18 +45,18 @@ def test_editors_cannot_change_responsible(self): InlineContributionFormset = inlineformset_factory(Course, Contribution, formset=ContributionFormSet, form=EditorContributionForm, extra=0) - data = { + data = to_querydict({ 'contributions-TOTAL_FORMS': 1, 'contributions-INITIAL_FORMS': 1, 'contributions-MAX_NUM_FORMS': 5, 'contributions-0-id': contribution1.pk, 'contributions-0-course': course.pk, - 'contributions-0-questionnaires': [questionnaire.pk], + 'contributions-0-questionnaires': questionnaire.pk, 'contributions-0-order': 1, 'contributions-0-responsibility': "RESPONSIBLE", 'contributions-0-comment_visibility': "ALL", 'contributions-0-contributor': user1.pk, - } + }) formset = InlineContributionFormset(instance=course, data=data.copy()) self.assertTrue(formset.is_valid()) diff --git a/evap/evaluation/tests/test_coverage.py b/evap/evaluation/tests/test_coverage.py --- a/evap/evaluation/tests/test_coverage.py +++ b/evap/evaluation/tests/test_coverage.py @@ -4,7 +4,7 @@ from evap.evaluation.models import Semester, Questionnaire, UserProfile, Course, \ EmailTemplate, Degree, CourseType, Contribution -from evap.evaluation.tests.test_utils import WebTest +from evap.evaluation.tests.test_utils import WebTest, to_querydict from evap.staff.forms import ContributionFormSet, ContributionForm from model_mommy import mommy @@ -181,16 +181,16 @@ def test_contributor_form_set(self): ContributionFormset = inlineformset_factory(Course, Contribution, formset=ContributionFormSet, form=ContributionForm, extra=0) - data = { + data = to_querydict({ 'contributions-TOTAL_FORMS': 1, 'contributions-INITIAL_FORMS': 0, 'contributions-MAX_NUM_FORMS': 5, 'contributions-0-course': course.pk, - 'contributions-0-questionnaires': [1], + 'contributions-0-questionnaires': 1, 'contributions-0-order': 0, 'contributions-0-responsibility': "RESPONSIBLE", 'contributions-0-comment_visibility': "ALL", - } + }) # no contributor and no responsible self.assertFalse(ContributionFormset(instance=course, form_kwargs={'course': course}, data=data.copy()).is_valid()) # valid @@ -200,7 +200,7 @@ def test_contributor_form_set(self): data['contributions-TOTAL_FORMS'] = 2 data['contributions-1-contributor'] = 1 data['contributions-1-course'] = course.pk - data['contributions-1-questionnaires'] = [1] + data['contributions-1-questionnaires'] = 1 data['contributions-1-order'] = 1 self.assertFalse(ContributionFormset(instance=course, form_kwargs={'course': course}, data=data).is_valid()) # two responsibles diff --git a/evap/evaluation/tests/test_utils.py b/evap/evaluation/tests/test_utils.py --- a/evap/evaluation/tests/test_utils.py +++ b/evap/evaluation/tests/test_utils.py @@ -1,9 +1,18 @@ +from django.http.request import QueryDict + from django_webtest import WebTest as DjangoWebTest from model_mommy import mommy from evap.evaluation.models import Contribution, Course, UserProfile, Questionnaire, Degree +def to_querydict(dict): + querydict = QueryDict(mutable=True) + for key, value in dict.items(): + querydict[key] = value + return querydict + + # taken from http://lukeplant.me.uk/blog/posts/fuzzy-testing-with-assertnumqueries/ class FuzzyInt(int): def __new__(cls, lowest, highest): diff --git a/evap/staff/tests/test_forms.py b/evap/staff/tests/test_forms.py --- a/evap/staff/tests/test_forms.py +++ b/evap/staff/tests/test_forms.py @@ -3,7 +3,7 @@ from model_mommy import mommy from evap.evaluation.models import UserProfile, CourseType, Course, Questionnaire, Contribution, Semester, Degree -from evap.evaluation.tests.test_utils import get_form_data_from_instance, course_with_responsible_and_editor +from evap.evaluation.tests.test_utils import get_form_data_from_instance, course_with_responsible_and_editor, to_querydict from evap.staff.forms import UserForm, SingleResultForm, ContributionFormSet, ContributionForm, CourseForm, \ CourseEmailForm from evap.contributor.forms import CourseForm as ContributorCourseForm @@ -125,31 +125,31 @@ def test_dont_validate_deleted_contributions(self): contribution_formset = inlineformset_factory(Course, Contribution, formset=ContributionFormSet, form=ContributionForm, extra=0) # Here we have two responsibles (one of them deleted), and a deleted contributor with no questionnaires. - data = { + data = to_querydict({ 'contributions-TOTAL_FORMS': 3, 'contributions-INITIAL_FORMS': 0, 'contributions-MAX_NUM_FORMS': 5, 'contributions-0-course': course.pk, - 'contributions-0-questionnaires': [questionnaire.pk], + 'contributions-0-questionnaires': questionnaire.pk, 'contributions-0-order': 0, 'contributions-0-responsibility': "RESPONSIBLE", 'contributions-0-comment_visibility': "ALL", 'contributions-0-contributor': user1.pk, 'contributions-0-DELETE': 'on', 'contributions-1-course': course.pk, - 'contributions-1-questionnaires': [questionnaire.pk], + 'contributions-1-questionnaires': questionnaire.pk, 'contributions-1-order': 0, 'contributions-1-responsibility': "RESPONSIBLE", 'contributions-1-comment_visibility': "ALL", 'contributions-1-contributor': user2.pk, 'contributions-2-course': course.pk, - 'contributions-2-questionnaires': [], + 'contributions-2-questionnaires': "", 'contributions-2-order': 1, - 'contributions-2-responsibility': "NONE", + 'contributions-2-responsibility': "CONTRIBUTOR", 'contributions-2-comment_visibility': "OWN", 'contributions-2-contributor': user2.pk, 'contributions-2-DELETE': 'on', - } + }) formset = contribution_formset(instance=course, form_kwargs={'course': course}, data=data) self.assertTrue(formset.is_valid()) @@ -168,25 +168,26 @@ def test_take_deleted_contributions_into_account(self): contribution_formset = inlineformset_factory(Course, Contribution, formset=ContributionFormSet, form=ContributionForm, extra=0) - data = { + data = to_querydict({ 'contributions-TOTAL_FORMS': 2, 'contributions-INITIAL_FORMS': 1, 'contributions-MAX_NUM_FORMS': 5, 'contributions-0-id': contribution1.pk, 'contributions-0-course': course.pk, - 'contributions-0-questionnaires': [questionnaire.pk], + 'contributions-0-questionnaires': questionnaire.pk, 'contributions-0-order': 0, 'contributions-0-responsibility': "RESPONSIBLE", 'contributions-0-comment_visibility': "ALL", 'contributions-0-contributor': user1.pk, 'contributions-0-DELETE': 'on', 'contributions-1-course': course.pk, - 'contributions-1-questionnaires': [questionnaire.pk], + 'contributions-1-questionnaires': questionnaire.pk, 'contributions-1-order': 0, + 'contributions-1-id': '', 'contributions-1-responsibility': "RESPONSIBLE", 'contributions-1-comment_visibility': "ALL", 'contributions-1-contributor': user1.pk, - } + }) formset = contribution_formset(instance=course, form_kwargs={'course': course}, data=data) self.assertTrue(formset.is_valid()) @@ -223,6 +224,105 @@ def test_obsolete_staff_only(self): self.assertEqual(expected, set(formset.forms[0].fields['questionnaires'].queryset.all())) self.assertEqual(expected, set(formset.forms[1].fields['questionnaires'].queryset.all())) +class ContributionFormset775RegressionTests(TestCase): + """ + Various regression tests for #775 + """ + @classmethod + def setUpTestData(cls): + cls.course = mommy.make(Course, name_en="some course") + cls.user1 = mommy.make(UserProfile) + cls.user2 = mommy.make(UserProfile) + mommy.make(UserProfile) + cls.questionnaire = mommy.make(Questionnaire, is_for_contributors=True) + cls.contribution1 = mommy.make(Contribution, responsible=True, contributor=cls.user1, course=cls.course) + cls.contribution2 = mommy.make(Contribution, contributor=cls.user2, course=cls.course) + + cls.contribution_formset = inlineformset_factory(Course, Contribution, formset=ContributionFormSet, form=ContributionForm, extra=0) + + def setUp(self): + self.data = to_querydict({ + 'contributions-TOTAL_FORMS': 2, + 'contributions-INITIAL_FORMS': 2, + 'contributions-MAX_NUM_FORMS': 5, + 'contributions-0-id': str(self.contribution1.pk), # browsers send strings so we should too + 'contributions-0-course': self.course.pk, + 'contributions-0-questionnaires': self.questionnaire.pk, + 'contributions-0-order': 0, + 'contributions-0-responsibility': "RESPONSIBLE", + 'contributions-0-comment_visibility': "ALL", + 'contributions-0-contributor': self.user1.pk, + 'contributions-1-id': str(self.contribution2.pk), + 'contributions-1-course': self.course.pk, + 'contributions-1-questionnaires': self.questionnaire.pk, + 'contributions-1-order': 0, + 'contributions-1-responsibility': "CONTRIBUTOR", + 'contributions-1-comment_visibility': "OWN", + 'contributions-1-contributor': self.user2.pk, + }) + + def test_swap_contributors(self): + formset = self.contribution_formset(instance=self.course, form_kwargs={'course': self.course}, data=self.data) + self.assertTrue(formset.is_valid()) + + # swap contributors, should still be valid + self.data['contributions-0-contributor'] = self.user2.pk + self.data['contributions-1-contributor'] = self.user1.pk + formset = self.contribution_formset(instance=self.course, form_kwargs={'course': self.course}, data=self.data) + self.assertTrue(formset.is_valid()) + + def test_move_and_delete(self): + # move contributor2 to the first contribution and delete the second one + # after saving, only one contribution should exist and have the contributor2 + self.data['contributions-0-contributor'] = self.user2.pk + self.data['contributions-1-contributor'] = self.user2.pk + self.data['contributions-1-DELETE'] = 'on' + formset = self.contribution_formset(instance=self.course, form_kwargs={'course': self.course}, data=self.data) + self.assertTrue(formset.is_valid()) + formset.save() + self.assertTrue(Contribution.objects.filter(contributor=self.user2, course=self.course).exists()) + self.assertFalse(Contribution.objects.filter(contributor=self.user1, course=self.course).exists()) + + def test_extra_form(self): + # make sure nothing crashes when an extra form is present. + self.data['contributions-0-contributor'] = self.user2.pk + self.data['contributions-1-contributor'] = self.user1.pk + self.data['contributions-2-TOTAL_FORMS'] = 3 + self.data['contributions-2-id'] = "" + self.data['contributions-2-order'] = -1 + self.data['contributions-2-responsibility'] = "CONTRIBUTOR" + self.data['contributions-2-comment_visibility'] = "OWN" + formset = self.contribution_formset(instance=self.course, form_kwargs={'course': self.course}, data=self.data) + self.assertTrue(formset.is_valid()) + + def test_swap_contributors_with_extra_form(self): + # moving a contributor to an extra form should work. + # first, the second contributor is deleted and removed from self.data + self.contribution2.delete() + self.data['contributions-TOTAL_FORMS'] = 2 + self.data['contributions-INITIAL_FORMS'] = 1 + self.data['contributions-0-contributor'] = self.user2.pk + self.data['contributions-1-contributor'] = self.user1.pk + self.data['contributions-1-id'] = "" + self.data['contributions-1-order'] = -1 + self.data['contributions-1-responsibility'] = "CONTRIBUTOR" + self.data['contributions-1-comment_visibility'] = "OWN" + + formset = self.contribution_formset(instance=self.course, form_kwargs={'course': self.course}, data=self.data) + self.assertTrue(formset.is_valid()) + + def test_handle_multivaluedicts(self): + # make sure the workaround is not eating questionnaires + # first, swap contributors to trigger the workaround + self.data['contributions-0-contributor'] = self.user2.pk + self.data['contributions-1-contributor'] = self.user1.pk + + questionnaire = mommy.make(Questionnaire, is_for_contributors=True) + self.data.appendlist('contributions-0-questionnaires', questionnaire.pk) + formset = self.contribution_formset(instance=self.course, form_kwargs={'course': self.course}, data=self.data) + formset.save() + self.assertEquals(Questionnaire.objects.filter(contributions=self.contribution2).count(), 2) + class CourseFormTests(TestCase): def helper_test_course_form_same_name(self, CourseFormClass):
Swapping contributors in course edit form fails When you exchange two contributors in the course edit form, it says "a contribution with this contributor already exists" you can also e.g. replace contributor A by someone who is not yet a contributor, and then replace contributor B by contributor A. reordering the contribution works, the problem occurs when changing the contributors of the contributions. Swapping contributors in course edit form fails When you exchange two contributors in the course edit form, it says "a contribution with this contributor already exists" you can also e.g. replace contributor A by someone who is not yet a contributor, and then replace contributor B by contributor A. reordering the contribution works, the problem occurs when changing the contributors of the contributions.
2016-04-19T06:55:18
e-valuation/EvaP
794
e-valuation__EvaP-794
[ "787", "787" ]
07faf119fdfcc49dc2b8199e09d562a84961ccf1
diff --git a/evap/evaluation/management/commands/refresh_results_cache.py b/evap/evaluation/management/commands/refresh_results_cache.py --- a/evap/evaluation/management/commands/refresh_results_cache.py +++ b/evap/evaluation/management/commands/refresh_results_cache.py @@ -1,4 +1,5 @@ from django.core.management.base import BaseCommand +from django.core.serializers.base import ProgressBar from django.core.cache import cache from evap.evaluation.models import Course @@ -12,9 +13,15 @@ class Command(BaseCommand): def handle(self, *args, **options): self.stdout.write("Clearing cache...") cache.clear() + total_count = Course.objects.count() self.stdout.write("Calculating results for all courses...") - for course in Course.objects.all(): + + self.stdout.ending = None + progress_bar = ProgressBar(self.stdout, total_count) + + for counter, course in enumerate(Course.objects.all()): + progress_bar.update(counter + 1) calculate_results(course) - self.stdout.write("Done with updating cache.") + self.stdout.write("Done with updating cache.\n")
Deal with update.sh update.sh is out of date. We can either - remove it - update it - replace it with something else having a script would be pretty cool to document what needs to be done when updating a production server. maybe this can go into a management command. an idea for additional automation would be a git post-commit-hook that checks out the release branch and updates everything when someone pushes to the production server via ssh. logs of the update could be sent via email to the admins. Deal with update.sh update.sh is out of date. We can either - remove it - update it - replace it with something else having a script would be pretty cool to document what needs to be done when updating a production server. maybe this can go into a management command. an idea for additional automation would be a git post-commit-hook that checks out the release branch and updates everything when someone pushes to the production server via ssh. logs of the update could be sent via email to the admins.
2016-05-09T17:44:28
e-valuation/EvaP
795
e-valuation__EvaP-795
[ "792", "792" ]
a5bdf0d383056a7ac4818e6587a3b66271929444
diff --git a/evap/evaluation/views.py b/evap/evaluation/views.py --- a/evap/evaluation/views.py +++ b/evap/evaluation/views.py @@ -10,6 +10,7 @@ from django.utils.translation import ugettext as _ from django.core.urlresolvers import resolve, Resolver404 from django.views.decorators.http import require_POST +from django.views.decorators.debug import sensitive_post_parameters from evap.evaluation.forms import NewKeyForm, LoginUsernameForm from evap.evaluation.models import UserProfile, FaqSection, EmailTemplate, Semester @@ -17,6 +18,7 @@ logger = logging.getLogger(__name__) +@sensitive_post_parameters("password") def index(request): """Main entry page into EvaP providing all the login options available. The username/password login is thought to be used for internal users, e.g. by connecting to a LDAP directory.
Remove passwords from error messages EvaP sends error messages to the admins when a server error occurs. Post data sent to the page where the error occurred will be included in the message, but passwords must not be included in these messages. This currently happens e.g. when a user is logging in who has two accounts like described in #791. Remove passwords from error messages EvaP sends error messages to the admins when a server error occurs. Post data sent to the page where the error occurred will be included in the message, but passwords must not be included in these messages. This currently happens e.g. when a user is logging in who has two accounts like described in #791.
for the record, this already happened once two years ago here https://github.com/fsr-itse/EvaP/issues/237 and apparently was not solved completely. for the record, this already happened once two years ago here https://github.com/fsr-itse/EvaP/issues/237 and apparently was not solved completely.
2016-05-09T18:17:50
e-valuation/EvaP
805
e-valuation__EvaP-805
[ "803" ]
52f4b7e27561f68f3768065c75f7700214f1aa6e
diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -866,10 +866,10 @@ def questionnaire_copy(request, questionnaire_id): messages.success(request, _("Successfully created questionnaire.")) return redirect('staff:questionnaire_index') else: - return render(request, "staff_questionnaire_form.html", dict(form=form, formset=formset)) + return render(request, "staff_questionnaire_form.html", dict(form=form, formset=formset, editable=True)) else: form, formset = get_identical_form_and_formset(copied_questionnaire) - return render(request, "staff_questionnaire_form.html", dict(form=form, formset=formset)) + return render(request, "staff_questionnaire_form.html", dict(form=form, formset=formset, editable=True)) @staff_required @@ -913,10 +913,10 @@ def questionnaire_new_version(request, questionnaire_id): else: raise IntegrityError except IntegrityError: - return render(request, "staff_questionnaire_form.html", dict(form=form, formset=formset)) + return render(request, "staff_questionnaire_form.html", dict(form=form, formset=formset, editable=True)) else: form, formset = get_identical_form_and_formset(old_questionnaire) - return render(request, "staff_questionnaire_form.html", dict(form=form, formset=formset)) + return render(request, "staff_questionnaire_form.html", dict(form=form, formset=formset, editable=True)) @require_POST
Adding multiple questions at once does not work When trying to add multiple questions to a questionnaire by adding forms to the formset and saving it only the last entry is saved in the database.
2016-05-14T20:30:05
e-valuation/EvaP
817
e-valuation__EvaP-817
[ "799" ]
3deeac99852a07ea91ac5f24976a4c367aa62b30
diff --git a/evap/evaluation/management/commands/refresh_results_cache.py b/evap/evaluation/management/commands/refresh_results_cache.py --- a/evap/evaluation/management/commands/refresh_results_cache.py +++ b/evap/evaluation/management/commands/refresh_results_cache.py @@ -24,4 +24,4 @@ def handle(self, *args, **options): progress_bar.update(counter + 1) calculate_results(course) - self.stdout.write("Done with updating cache.\n") + self.stdout.write("Results cache has been refreshed.\n")
diff --git a/evap/evaluation/tests/test_commands.py b/evap/evaluation/tests/test_commands.py --- a/evap/evaluation/tests/test_commands.py +++ b/evap/evaluation/tests/test_commands.py @@ -3,7 +3,7 @@ from unittest.mock import patch from django.conf import settings -from django.utils.six import StringIO +from io import StringIO from django.core import management, mail from django.test import TestCase from django.test.utils import override_settings diff --git a/evap/evaluation/tests/test_misc.py b/evap/evaluation/tests/test_misc.py --- a/evap/evaluation/tests/test_misc.py +++ b/evap/evaluation/tests/test_misc.py @@ -1,4 +1,5 @@ import os.path +from io import StringIO from django.conf import settings from django.contrib.auth.models import Group @@ -59,3 +60,15 @@ def load_test_data(self): call_command("loaddata", "test_data", verbosity=0) except Exception: self.fail("Test data failed to load.") + + +class TestMissingMigrations(TestCase): + def test_for_missing_migrations(self): + output = StringIO() + try: + call_command('makemigrations', interactive=False, dry_run=True, exit_code=True, stdout=output) + except SystemExit as e: + # The exit code will be 1 when there are no missing migrations + self.assertEqual(str(e), '1') + else: + self.fail("There are missing migrations:\n %s" % output.getvalue())
+x on update.sh, earlier apache restart update_production.sh is missing the x bit, also because of the cache clearing the apache is restarted 2min after the code has changed.
apache reload shouldnt happen before `compress` is run, otherwise accessing the compressed files will fail, as the code wants to access new files, but they are not there yet.
2016-06-05T15:03:26
e-valuation/EvaP
821
e-valuation__EvaP-821
[ "818" ]
a84d37e9c33b3d97e50613f66eefd6c10a99ca3d
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -343,7 +343,7 @@ def editor_approve(self): def staff_approve(self): pass - @transition(field=state, source='prepared', target='new') + @transition(field=state, source=['prepared', 'approved'], target='new') def revert_to_new(self): pass
diff --git a/evap/evaluation/tests/test_coverage.py b/evap/evaluation/tests/test_coverage.py --- a/evap/evaluation/tests/test_coverage.py +++ b/evap/evaluation/tests/test_coverage.py @@ -175,9 +175,12 @@ def helper_semester_state_views(self, course_ids, old_state, new_state, operatio def test_semester_publish(self): self.helper_semester_state_views([7], "reviewed", "published", "publish") - def test_semester_reset(self): + def test_semester_reset_1(self): self.helper_semester_state_views([2], "prepared", "new", "revertToNew") + def test_semester_reset_2(self): + self.helper_semester_state_views([4], "approved", "new", "revertToNew") + def test_semester_approve_1(self): self.helper_semester_state_views([1], "new", "approved", "approve")
Revoke course approval It must be possible to revoke the approval of a course and to move it back to state `new`.
2016-06-06T16:05:27
e-valuation/EvaP
826
e-valuation__EvaP-826
[ "825" ]
2381056f3535bc4b562e5337c138dda279066f10
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -3,6 +3,7 @@ import logging from django.conf import settings +from django.contrib import messages from django.contrib.auth.models import AbstractBaseUser, BaseUserManager, PermissionsMixin, Group from django.core.exceptions import ValidationError from django.core.mail import EmailMessage @@ -552,7 +553,7 @@ def update_courses(cls): except Exception: logger.exception('An error occured when updating the state of course "{}" (id {}).'.format(course, course.id)) - EmailTemplate.send_evaluation_started_notifications(courses_new_in_evaluation) + EmailTemplate.send_evaluation_started_notifications(courses_new_in_evaluation, None) send_publish_notifications(evaluation_results_courses) logger.info("update_courses finished.") @@ -1088,7 +1089,7 @@ def __render_string(cls, text, dictionary): return Template(text).render(Context(dictionary, autoescape=False)) @classmethod - def send_to_users_in_courses(cls, template, courses, recipient_groups, use_cc): + def send_to_users_in_courses(cls, template, courses, recipient_groups, use_cc, request): user_course_map = {} for course in courses: recipients = cls.recipient_list_for_course(course, recipient_groups, filter_users_in_cc=use_cc) @@ -1098,14 +1099,15 @@ def send_to_users_in_courses(cls, template, courses, recipient_groups, use_cc): for user, courses in user_course_map.items(): subject_params = {} body_params = {'user': user, 'courses': courses} - cls.__send_to_user(user, template, subject_params, body_params, use_cc=use_cc) + cls.__send_to_user(user, template, subject_params, body_params, use_cc=use_cc, request=request) @classmethod - def __send_to_user(cls, user, template, subject_params, body_params, use_cc): + def __send_to_user(cls, user, template, subject_params, body_params, use_cc, request=None): if not user.email: warning_message = "{} has no email address defined. Could not send email.".format(user.username) logger.warning(warning_message) - messages.warning(_(warning_message)) + if request is not None: + messages.warning(request, _(warning_message)) return if use_cc: @@ -1168,11 +1170,11 @@ def send_publish_notifications_to_user(cls, user, courses): cls.__send_to_user(user, template, subject_params, body_params, use_cc=True) @classmethod - def send_review_notifications(cls, courses): + def send_review_notifications(cls, courses, request): template = cls.objects.get(name=cls.EDITOR_REVIEW_NOTICE) - cls.send_to_users_in_courses(template, courses, [cls.EDITORS], use_cc=True) + cls.send_to_users_in_courses(template, courses, [cls.EDITORS], use_cc=True, request=request) @classmethod - def send_evaluation_started_notifications(cls, courses): + def send_evaluation_started_notifications(cls, courses, request): template = cls.objects.get(name=cls.EVALUATION_STARTED) - cls.send_to_users_in_courses(template, courses, [cls.ALL_PARTICIPANTS], use_cc=False) + cls.send_to_users_in_courses(template, courses, [cls.ALL_PARTICIPANTS], use_cc=False, request=request) diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -284,10 +284,10 @@ def email_addresses(self): recipients = self.template.recipient_list_for_course(self.instance, self.recipient_groups, filter_users_in_cc=False) return set(user.email for user in recipients if user.email) - def send(self): + def send(self, request): self.template.subject = self.cleaned_data.get('subject') self.template.body = self.cleaned_data.get('body') - EmailTemplate.send_to_users_in_courses(self.template, [self.instance], self.recipient_groups, use_cc=True) + EmailTemplate.send_to_users_in_courses(self.template, [self.instance], self.recipient_groups, use_cc=True, request=request) class QuestionnaireForm(forms.ModelForm, BootstrapMixin): diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -224,7 +224,7 @@ def helper_semester_course_operation_prepare(request, courses, send_email): messages.success(request, ungettext("Successfully enabled %(courses)d course for editor review.", "Successfully enabled %(courses)d courses for editor review.", len(courses)) % {'courses': len(courses)}) if send_email: - EmailTemplate.send_review_notifications(courses) + EmailTemplate.send_review_notifications(courses, request) def helper_semester_course_operation_approve(request, courses): @@ -243,7 +243,7 @@ def helper_semester_course_operation_start(request, courses, send_email): messages.success(request, ungettext("Successfully started evaluation for %(courses)d course.", "Successfully started evaluation for %(courses)d courses.", len(courses)) % {'courses': len(courses)}) if send_email: - EmailTemplate.send_evaluation_started_notifications(courses) + EmailTemplate.send_evaluation_started_notifications(courses, request) def helper_semester_course_operation_publish(request, courses, send_email): @@ -612,7 +612,7 @@ def course_email(request, semester_id, course_id): email_addresses = '; '.join(form.email_addresses()) messages.info(request, _('Recipients: ') + '\n' + email_addresses) return render(request, "staff_course_email.html", dict(semester=semester, course=course, form=form)) - form.send() + form.send(request) messages.success(request, _("Successfully sent emails for '%s'.") % course.name) return custom_redirect('staff:semester_view', semester_id) else:
diff --git a/evap/evaluation/tests/test_coverage.py b/evap/evaluation/tests/test_coverage.py --- a/evap/evaluation/tests/test_coverage.py +++ b/evap/evaluation/tests/test_coverage.py @@ -1,7 +1,6 @@ from django.test.utils import override_settings -from evap.evaluation.models import Questionnaire, UserProfile, Course, \ - EmailTemplate, Degree, CourseType +from evap.evaluation.models import UserProfile, Course, EmailTemplate, Degree, CourseType from evap.evaluation.tests.tools import WebTest diff --git a/evap/evaluation/tests/test_models.py b/evap/evaluation/tests/test_models.py --- a/evap/evaluation/tests/test_models.py +++ b/evap/evaluation/tests/test_models.py @@ -20,7 +20,7 @@ def test_approved_to_in_evaluation(self): with patch('evap.evaluation.models.EmailTemplate.send_evaluation_started_notifications') as mock: Course.update_courses() - mock.assert_called_once_with([course]) + mock.assert_called_once_with([course], None) course = Course.objects.get(pk=course.pk) self.assertEqual(course.state, 'in_evaluation') @@ -241,7 +241,7 @@ def setUpTestData(cls): def test_no_login_url_when_delegates_in_cc(self): self.user.delegates.add(self.other_user) - EmailTemplate.send_to_users_in_courses(self.template, [self.course], EmailTemplate.CONTRIBUTORS, use_cc=True) + EmailTemplate.send_to_users_in_courses(self.template, [self.course], EmailTemplate.CONTRIBUTORS, use_cc=True, request=None) self.assertEqual(len(mail.outbox), 2) self.assertFalse("loginkey" in mail.outbox[0].body) # message does not contain the login url self.assertTrue("loginkey" in mail.outbox[1].body) # separate email with login url was sent @@ -250,7 +250,7 @@ def test_no_login_url_when_delegates_in_cc(self): def test_no_login_url_when_cc_users_in_cc(self): self.user.cc_users.add(self.other_user) - EmailTemplate.send_to_users_in_courses(self.template, [self.course], [EmailTemplate.CONTRIBUTORS], use_cc=True) + EmailTemplate.send_to_users_in_courses(self.template, [self.course], [EmailTemplate.CONTRIBUTORS], use_cc=True, request=None) self.assertEqual(len(mail.outbox), 2) self.assertFalse("loginkey" in mail.outbox[0].body) # message does not contain the login url self.assertTrue("loginkey" in mail.outbox[1].body) # separate email with login url was sent @@ -259,18 +259,29 @@ def test_no_login_url_when_cc_users_in_cc(self): def test_login_url_when_nobody_in_cc(self): # message is not sent to others in cc - EmailTemplate.send_to_users_in_courses(self.template, [self.course], [EmailTemplate.CONTRIBUTORS], use_cc=True) + EmailTemplate.send_to_users_in_courses(self.template, [self.course], [EmailTemplate.CONTRIBUTORS], use_cc=True, request=None) self.assertEqual(len(mail.outbox), 1) self.assertTrue("loginkey" in mail.outbox[0].body) # message does contain the login url def test_login_url_when_use_cc_is_false(self): # message is not sent to others in cc self.user.delegates.add(self.other_user) - EmailTemplate.send_to_users_in_courses(self.template, [self.course], [EmailTemplate.CONTRIBUTORS], use_cc=False) + EmailTemplate.send_to_users_in_courses(self.template, [self.course], [EmailTemplate.CONTRIBUTORS], use_cc=False, request=None) self.assertEqual(len(mail.outbox), 1) self.assertTrue("loginkey" in mail.outbox[0].body) # message does contain the login url +class TestEmailTemplate(TestCase): + def test_missing_email_address(self): + """ + Tests that __send_to_user behaves when the user has no email address. + Regression test to https://github.com/fsr-itse/EvaP/issues/825 + """ + user = mommy.make(UserProfile, email=None) + template = EmailTemplate.objects.get(name=EmailTemplate.STUDENT_REMINDER) + EmailTemplate._EmailTemplate__send_to_user(user, template, {}, {}, False, None) + + class TestEmailRecipientList(TestCase): def test_recipient_list(self): course = mommy.make(Course) diff --git a/evap/staff/tests/test_forms.py b/evap/staff/tests/test_forms.py --- a/evap/staff/tests/test_forms.py +++ b/evap/staff/tests/test_forms.py @@ -20,7 +20,7 @@ def test_course_email_form(self): data = {"body": "wat", "subject": "some subject", "recipients": [EmailTemplate.DUE_PARTICIPANTS]} form = CourseEmailForm(instance=course, data=data) self.assertTrue(form.is_valid()) - form.send() + form.send(None) data = {"body": "wat", "subject": "some subject"} form = CourseEmailForm(instance=course, data=data) diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -419,7 +419,7 @@ def setUpTestData(cls): semester = mommy.make(Semester, pk=1) participant1 = mommy.make(UserProfile, email="[email protected]") participant2 = mommy.make(UserProfile, email="[email protected]") - course = mommy.make(Course, pk=1, semester=semester, participants=[participant1, participant2]) + mommy.make(Course, pk=1, semester=semester, participants=[participant1, participant2]) def test_course_email(self): """ @@ -434,6 +434,7 @@ def test_course_email(self): self.assertEqual(len(mail.outbox), 2) + class TestQuestionnaireDeletionView(WebTest): url = "/staff/questionnaire/delete" csrf_checks = False @@ -442,7 +443,7 @@ class TestQuestionnaireDeletionView(WebTest): def setUpTestData(cls): mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) questionnaire1 = mommy.make(Questionnaire, pk=1) - questionnaire2 = mommy.make(Questionnaire, pk=2) + mommy.make(Questionnaire, pk=2) mommy.make(Contribution, questionnaires=[questionnaire1]) def test_questionnaire_deletion(self):
Missing import for messages in `evaluation/models.py` the import `from django.contrib import messages` is missing, resulting in an error when `__send_to_user` tries to send a message to a user without email address.
2016-06-08T19:23:55
e-valuation/EvaP
827
e-valuation__EvaP-827
[ "814" ]
7dc6e01c7f9f39632c567622008428c276ca8389
diff --git a/evap/results/exporters.py b/evap/results/exporters.py --- a/evap/results/exporters.py +++ b/evap/results/exporters.py @@ -77,7 +77,7 @@ def deviation_to_style(self, deviation, total=False): style_name += "_total" return style_name - def export(self, response, course_types_list, ignore_not_enough_answers=False, include_unpublished=False): + def export(self, response, course_types_list, include_not_enough_answers=False, include_unpublished=False): self.workbook = xlwt.Workbook() self.init_styles(self.workbook) counter = 1 @@ -97,6 +97,8 @@ def export(self, response, course_types_list, ignore_not_enough_answers=False, i for course in self.semester.course_set.filter(state__in=course_states, type__in=course_types).all(): if course.is_single_result: continue + if not course.can_publish_grades and not include_not_enough_answers: + continue results = OrderedDict() for questionnaire, contributor, __, data, __ in calculate_results(course): if has_no_rating_answers(course, contributor, questionnaire): @@ -146,7 +148,8 @@ def export(self, response, course_types_list, ignore_not_enough_answers=False, i deviations.append(grade_result.deviation * grade_result.total_count) total_count += grade_result.total_count enough_answers = course.can_publish_grades - if values and (enough_answers or ignore_not_enough_answers): + if values and enough_answers: + print(course.name) avg = sum(values) / total_count writec(self, avg, self.grade_to_style(avg)) diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -341,7 +341,7 @@ def semester_export(request, semester_id): formset = ExportSheetFormset(request.POST or None, form_kwargs={'semester': semester}) if formset.is_valid(): - ignore_not_enough_answers = request.POST.get('ignore_not_enough_answers') == 'on' + include_not_enough_answers = request.POST.get('include_not_enough_answers') == 'on' include_unpublished = request.POST.get('include_unpublished') == 'on' course_types_list = [] for form in formset: @@ -351,7 +351,7 @@ def semester_export(request, semester_id): filename = "Evaluation-{}-{}.xls".format(semester.name, get_language()) response = HttpResponse(content_type="application/vnd.ms-excel") response["Content-Disposition"] = "attachment; filename=\"{}\"".format(filename) - ExcelExporter(semester).export(response, course_types_list, ignore_not_enough_answers, include_unpublished) + ExcelExporter(semester).export(response, course_types_list, include_not_enough_answers, include_unpublished) return response else: return render(request, "staff_semester_export.html", dict(semester=semester, formset=formset))
Export contains unpublished results even if option is not checked The excel export of results contains columns for unpublished courses and shows a total grade even if the export option "Include courses where not enough answers where given in the export" is not selected. In this situation, the course should not be contained in the export.
2016-06-13T16:45:16
e-valuation/EvaP
829
e-valuation__EvaP-829
[ "777" ]
dbe527b2c4f01c83829eae6e305b5c35efbbf186
diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -569,7 +569,7 @@ def helper_course_edit(request, semester, course): return custom_redirect('staff:semester_view', semester.id) else: sort_formset(request, formset) - template_data = dict(semester=semester, form=form, formset=formset, staff=True, state=course.state, editable=editable) + template_data = dict(course=course, semester=semester, form=form, formset=formset, staff=True, state=course.state, editable=editable) return render(request, "staff_course_form.html", template_data)
Rework all the page titles e.g. when opening the results of multiple courses in tabs, my browser labels the tabs "Results - EvaP". Putting the course name in there would help. Same for staff course edit.
2016-06-13T19:32:19
e-valuation/EvaP
844
e-valuation__EvaP-844
[ "835", "835" ]
8e2c8df0dff2cff7d288e9c5cf9276bb22cb0455
diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -783,7 +783,7 @@ def questionnaire_create(request): messages.success(request, _("Successfully created questionnaire.")) return redirect('staff:questionnaire_index') else: - return render(request, "staff_questionnaire_form.html", dict(form=form, formset=formset)) + return render(request, "staff_questionnaire_form.html", dict(form=form, formset=formset, editable=True)) def make_questionnaire_edit_forms(request, questionnaire, editable):
Fix formset for creating questionnaire When creating a new questionnaire, the formset does not have an `add another` link and the remove checkbox is not replaced by a `remove` link. Fix formset for creating questionnaire When creating a new questionnaire, the formset does not have an `add another` link and the remove checkbox is not replaced by a `remove` link.
2016-07-11T20:20:15
e-valuation/EvaP
848
e-valuation__EvaP-848
[ "791" ]
3e022aea38ca9f2327e368b9d5148d6a0f064765
diff --git a/evap/evaluation/forms.py b/evap/evaluation/forms.py --- a/evap/evaluation/forms.py +++ b/evap/evaluation/forms.py @@ -29,6 +29,9 @@ def clean_password(self): username = self.cleaned_data.get('username') password = self.cleaned_data.get('password') + # django-auth-kerberos might create a new userprofile. make sure it gets a lowercase username. + username = username.lower() + if username and password: self.user_cache = authenticate(username=username, password=password) if self.user_cache is None:
Username case sensitivity Usernames are case sensitive. The importer makes all usernames lowercase, but automatically created accounts when logging in with Kerberos authentification can have uppercase letters. This can lead to two users having the same username and then the system crashed on login. Automatically created accounts should also get lowercase usernames, even if the user enters the name differently.
``` Internal Server Error: / MultipleObjectsReturned at / get() returned more than one UserProfile -- it returned 2! Traceback: File "/usr/local/lib/python3.4/dist-packages/django/core/handlers/base.py" in get_response 149. response = self.process_exception_by_middleware(e, request) File "/usr/local/lib/python3.4/dist-packages/django/core/handlers/base.py" in get_response 147. response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/opt/evap/evap/evaluation/views.py" in index 35. elif login_username_form.is_valid(): File "/usr/local/lib/python3.4/dist-packages/django/forms/forms.py" in is_valid 161. return self.is_bound and not self.errors File "/usr/local/lib/python3.4/dist-packages/django/forms/forms.py" in errors 153. self.full_clean() File "/usr/local/lib/python3.4/dist-packages/django/forms/forms.py" in full_clean 362. self._clean_fields() File "/usr/local/lib/python3.4/dist-packages/django/forms/forms.py" in _clean_fields 383. value = getattr(self, 'clean_%s' % name)() File "/usr/local/lib/python3.4/dist-packages/django/views/decorators/debug.py" in sensitive_variables_wrapper 36. return func(*func_args, **func_kwargs) File "/opt/evap/evap/evaluation/forms.py" in clean_password 97. self.user_cache = authenticate(username=username, password=password) File "/usr/local/lib/python3.4/dist-packages/django/contrib/auth/__init__.py" in authenticate 74. user = backend.authenticate(**credentials) File "/usr/local/lib/python3.4/dist-packages/django_auth_kerberos/backends.py" in authenticate 29. "defaults": { UserModel.USERNAME_FIELD: username } File "/usr/local/lib/python3.4/dist-packages/django/db/models/manager.py" in manager_method 122. return getattr(self.get_queryset(), name)(*args, **kwargs) File "/usr/local/lib/python3.4/dist-packages/django/db/models/query.py" in get_or_create 465. return self.get(**lookup), False File "/usr/local/lib/python3.4/dist-packages/django/db/models/query.py" in get 391. (self.model._meta.object_name, num) Exception Type: MultipleObjectsReturned at / Exception Value: get() returned more than one UserProfile -- it returned 2! ```
2016-07-16T10:45:03
e-valuation/EvaP
849
e-valuation__EvaP-849
[ "846" ]
2f540c016d181307e3cffe4d4358ff0f6007ba14
diff --git a/evap/rewards/models.py b/evap/rewards/models.py --- a/evap/rewards/models.py +++ b/evap/rewards/models.py @@ -14,6 +14,11 @@ class NotEnoughPoints(Exception): pass +class RedemptionEventExpired(Exception): + """An attempt has been made to redeem more points for an event whose redeem_end_date lies in the past.""" + pass + + class RewardPointRedemptionEvent(models.Model): name = models.CharField(max_length=1024, verbose_name=_("event name")) date = models.DateField(verbose_name=_("event date")) diff --git a/evap/rewards/tools.py b/evap/rewards/tools.py --- a/evap/rewards/tools.py +++ b/evap/rewards/tools.py @@ -1,3 +1,5 @@ +from datetime import date + from django.conf import settings from django.contrib import messages from django.db import transaction @@ -7,7 +9,8 @@ from django.contrib.auth.decorators import login_required from evap.evaluation.models import Course -from evap.rewards.models import RewardPointGranting, RewardPointRedemption, RewardPointRedemptionEvent, SemesterActivation, NoPointsSelected, NotEnoughPoints +from evap.rewards.models import RewardPointGranting, RewardPointRedemption, RewardPointRedemptionEvent, \ + SemesterActivation, NoPointsSelected, NotEnoughPoints, RedemptionEventExpired @login_required @@ -24,10 +27,14 @@ def save_redemptions(request, redemptions): for event_id in redemptions: if redemptions[event_id] > 0: + event = RewardPointRedemptionEvent.objects.get(id=event_id) + if event.redeem_end_date < date.today(): + raise RedemptionEventExpired(_("Sorry, the deadline for this event expired already.")) + RewardPointRedemption.objects.create( user_profile=request.user, value=redemptions[event_id], - event=RewardPointRedemptionEvent.objects.get(id=event_id) + event=event ) @@ -36,13 +43,10 @@ def can_user_use_reward_points(user): def reward_points_of_user(user): - reward_point_grantings = RewardPointGranting.objects.filter(user_profile=user) - reward_point_redemptions = RewardPointRedemption.objects.filter(user_profile=user) - count = 0 - for granting in reward_point_grantings: + for granting in user.reward_point_grantings.all(): count += granting.value - for redemption in reward_point_redemptions: + for redemption in user.reward_point_redemptions.all(): count -= redemption.value return count @@ -75,8 +79,4 @@ def grant_reward_points(sender, **kwargs): def is_semester_activated(semester): - try: - activation = SemesterActivation.objects.get(semester=semester) - return activation.is_active - except SemesterActivation.DoesNotExist: - return False + return SemesterActivation.objects.filter(semester=semester, is_active=True).exists() diff --git a/evap/rewards/views.py b/evap/rewards/views.py --- a/evap/rewards/views.py +++ b/evap/rewards/views.py @@ -13,7 +13,8 @@ from evap.staff.views import semester_view -from evap.rewards.models import RewardPointGranting, RewardPointRedemption, RewardPointRedemptionEvent, SemesterActivation, NoPointsSelected, NotEnoughPoints +from evap.rewards.models import RewardPointGranting, RewardPointRedemption, RewardPointRedemptionEvent, \ + SemesterActivation, NoPointsSelected, NotEnoughPoints, RedemptionEventExpired from evap.rewards.tools import save_redemptions, reward_points_of_user from evap.rewards.forms import RewardPointRedemptionEventForm from evap.rewards.exporters import ExcelExporter @@ -31,14 +32,13 @@ def index(request): try: save_redemptions(request, redemptions) messages.success(request, _("You successfully redeemed your points.")) - except (NoPointsSelected, NotEnoughPoints) as error: + except (NoPointsSelected, NotEnoughPoints, RedemptionEventExpired) as error: messages.warning(request, error) total_points_available = reward_points_of_user(request.user) reward_point_grantings = RewardPointGranting.objects.filter(user_profile=request.user) reward_point_redemptions = RewardPointRedemption.objects.filter(user_profile=request.user) - events = RewardPointRedemptionEvent.objects.filter(redeem_end_date__gte=datetime.now()) - events = sorted(events, key=lambda event: event.date) + events = RewardPointRedemptionEvent.objects.filter(redeem_end_date__gte=datetime.now()).order_by('date') reward_point_actions = [] for granting in reward_point_grantings:
diff --git a/evap/rewards/tests/test_views.py b/evap/rewards/tests/test_views.py --- a/evap/rewards/tests/test_views.py +++ b/evap/rewards/tests/test_views.py @@ -1,3 +1,5 @@ +from datetime import date, timedelta + from django.contrib.auth.models import Group from django.core.urlresolvers import reverse @@ -43,7 +45,7 @@ def setUpTestData(cls): cls.student = mommy.make(UserProfile, username='student', email='[email protected]') mommy.make(Course, participants=[cls.student]) mommy.make(RewardPointGranting, user_profile=cls.student, value=5) - mommy.make(RewardPointRedemptionEvent, _quantity=2) + mommy.make(RewardPointRedemptionEvent, _quantity=2, redeem_end_date=date.today() + timedelta(days=1)) def test_redeem_all_points(self): response = self.app.get(reverse('rewards:index'), user='student') @@ -56,13 +58,22 @@ def test_redeem_all_points(self): self.assertEqual(0, reward_points_of_user(self.student)) def test_redeem_too_many_points(self): - mommy.make(RewardPointRedemptionEvent) response = self.app.get(reverse('rewards:index'), user='student') form = response.forms['reward-redemption-form'] form.set('points-1', 3) form.set('points-2', 3) response = form.submit() - self.assertIn(b"have enough reward points.", response.body) + self.assertContains(response, "have enough reward points.") + self.assertEqual(5, reward_points_of_user(self.student)) + + def test_redeem_points_for_expired_event(self): + """ Regression test for #846 """ + response = self.app.get(reverse('rewards:index'), user='student') + form = response.forms['reward-redemption-form'] + form.set('points-2', 1) + RewardPointRedemptionEvent.objects.update(redeem_end_date=date.today() - timedelta(days=1)) + response = form.submit() + self.assertContains(response, "event expired already.") self.assertEqual(5, reward_points_of_user(self.student))
Allow redeeming points only for open events Currently there is no check that the event for which points should be redeemed is still available for redemptions. If the `redeem_end_date` is reached, the event can't be selected on the rewards index page anymore, but a correct post request can still redeem points of a user for this event. This should not be possible.
2016-07-16T12:57:50
e-valuation/EvaP
852
e-valuation__EvaP-852
[ "850" ]
deeb8ed4cb21308d2ba039c245e848284a13510c
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -509,9 +509,6 @@ def is_archived(self): def is_archiveable(self): return not self.is_archived and self.state in ["new", "published"] - def was_evaluated(self, request): - self.course_evaluated.send(sender=self.__class__, request=request, semester=self.semester) - @property def final_grade_documents(self): from evap.grades.models import GradeDocument diff --git a/evap/student/views.py b/evap/student/views.py --- a/evap/student/views.py +++ b/evap/student/views.py @@ -1,7 +1,7 @@ from collections import OrderedDict from django.contrib import messages -from django.core.exceptions import PermissionDenied +from django.core.exceptions import PermissionDenied, SuspiciousOperation from django.db import transaction from django.shortcuts import get_object_or_404, redirect, render from django.utils.translation import ugettext as _ @@ -83,6 +83,13 @@ def vote(request, course_id): # all forms are valid, begin vote operation with transaction.atomic(): + # add user to course.voters + # not using course.voters.add(request.user) since it fails silently when done twice. + # manually inserting like this gives us the 'created' return value and ensures at the database level that nobody votes twice. + __, created = course.voters.through.objects.get_or_create(userprofile_id=request.user.pk, course_id=course.pk) + if not created: # vote already got recorded, bail out + raise SuspiciousOperation("A second vote has been received shortly after the first one.") + for contribution, form_group in form_groups.items(): for questionnaire_form in form_group: questionnaire = questionnaire_form.questionnaire @@ -102,10 +109,7 @@ def vote(request, course_id): answer_counter.add_vote() answer_counter.save() - # remember that the user voted already - course.voters.add(request.user) - - course.was_evaluated(request) + course.course_evaluated.send(sender=Course, request=request, semester=course.semester) messages.success(request, _("Your vote was recorded.")) return redirect('student:index')
Votes might get counted twice `student vote` checks whether a user can vote and raises a `PermissionDenied` if not. but if the post request with the votes for a course is sent twice immediately after each other this check can in both cases return `True` if the vote was not saved before the second request is handled. then, the votes would be saved twice.
2016-07-23T15:52:41
e-valuation/EvaP
866
e-valuation__EvaP-866
[ "865", "865" ]
3f92318cf8a1703a32bf3a6a8a17d37f830b6e6c
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -900,6 +900,13 @@ def full_name(self): else: return self.username + @property + def full_name_with_username(self): + name = self.full_name + if self.username not in name: + name += " (" + self.username + ")" + return name + def __str__(self): return self.full_name diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -501,9 +501,14 @@ def save(self, *args, **kw): self.instance.groups.remove(grade_user_group) +class UserModelChoiceField(forms.ModelChoiceField): + def label_from_instance(self, obj): + return obj.full_name_with_username + + class UserMergeSelectionForm(forms.Form): - main_user = forms.ModelChoiceField(UserProfile.objects.all()) - other_user = forms.ModelChoiceField(UserProfile.objects.all()) + main_user = UserModelChoiceField(UserProfile.objects.all()) + other_user = UserModelChoiceField(UserProfile.objects.all()) class LotteryForm(forms.Form):
User merge: user selection shows only first name and last name When selecting users for merging, their first and last name is shown. this breaks if both have the same first and last name, in which case the staff user cannot know which one should be the main or other user. a possible solution would be to additionally show the username. User merge: user selection shows only first name and last name When selecting users for merging, their first and last name is shown. this breaks if both have the same first and last name, in which case the staff user cannot know which one should be the main or other user. a possible solution would be to additionally show the username.
2016-10-17T18:52:07
e-valuation/EvaP
871
e-valuation__EvaP-871
[ "868", "832" ]
1a7bb033ca278d4e98136052165a820da60dc037
diff --git a/evap/contributor/views.py b/evap/contributor/views.py --- a/evap/contributor/views.py +++ b/evap/contributor/views.py @@ -44,7 +44,7 @@ def settings_edit(request): messages.success(request, _("Successfully updated your settings.")) return redirect('contributor:index') else: - return render(request, "contributor_settings.html", dict(form=form, user=user)) + return render(request, "contributor_settings.html", dict(form=form)) @editor_or_delegate_required diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -1052,7 +1052,7 @@ def user_edit(request, user_id): messages.success(request, _("Successfully updated user.")) return redirect('staff:user_index') else: - return render(request, "staff_user_form.html", dict(form=form, user=user, courses_contributing_to=courses_contributing_to)) + return render(request, "staff_user_form.html", dict(form=form, courses_contributing_to=courses_contributing_to)) @require_POST
User create view crashes likely dd42a3cf895fefb8d4b2abc1c46ea8eb825446ae broke it. `context_processors.auth` sets the template variable `user` to the currently logged in user, so the variable rename in that commit was faulty. does not happen in production because `DEBUG=False` eats template errors. Wrong labels on user creation page When creating a new user, the four labels `Staff`, `Grade publisher`, `Contributor`, `Responsible` are shown above the form although none of these should be displayed.
2016-10-31T18:29:47
e-valuation/EvaP
872
e-valuation__EvaP-872
[ "864" ]
38e9af0e49f5b640ebbf741b4a63f644e26cebb8
diff --git a/evap/staff/importers.py b/evap/staff/importers.py --- a/evap/staff/importers.py +++ b/evap/staff/importers.py @@ -5,6 +5,7 @@ from django.contrib import messages from django.db import transaction from django.utils.translation import ugettext as _ +from django.utils.safestring import mark_safe from django.core.exceptions import ValidationError from evap.evaluation.models import Course, UserProfile, Degree, Contribution, CourseType @@ -180,11 +181,11 @@ def check_user_data_sanity(self): or (user.title is not None and user.title != user_data.title) or user.first_name != user_data.first_name or user.last_name != user_data.last_name): - self.warnings.append(_("The existing user would be overwritten with the following data:") + - "\n - {} ({} {} {}, {})".format(user.username, user.title or "", user.first_name, user.last_name, user.email) + + self.warnings.append(mark_safe(_("The existing user would be overwritten with the following data:") + + "<br> - {} ({} {} {}, {})".format(user.username, user.title or "", user.first_name, user.last_name, user.email) + _(" (existing)") + - "\n - {} ({} {} {}, {})".format(user_data.username, user_data.title or "", user_data.first_name, user_data.last_name, user_data.email) + - _(" (new)")) + "<br> - {} ({} {} {}, {})".format(user_data.username, user_data.title or "", user_data.first_name, user_data.last_name, user_data.email) + + _(" (new)"))) except UserProfile.DoesNotExist: pass @@ -192,11 +193,11 @@ def check_user_data_sanity(self): if len(users_same_name) > 0: warningstring = _("An existing user has the same first and last name as a new user:") for user in users_same_name: - warningstring += "\n - {} ({} {} {}, {})".format(user.username, user.title or "", user.first_name, user.last_name, user.email) + warningstring += "<br> - {} ({} {} {}, {})".format(user.username, user.title or "", user.first_name, user.last_name, user.email) warningstring += _(" (existing)") - warningstring += "\n - {} ({} {} {}, {})".format(user_data.username, user_data.title or "", user_data.first_name, user_data.last_name, user_data.email) + warningstring += "<br> - {} ({} {} {}, {})".format(user_data.username, user_data.title or "", user_data.first_name, user_data.last_name, user_data.email) warningstring += _(" (new)") - self.warnings.append(warningstring) + self.warnings.append(mark_safe(warningstring)) def show_errors_and_warnings(self): for error in self.errors:
Wrong user importer message format When importing users and a message about changes in a user object is shown, this message does not have correct line breaks, although defined in the code (see `staff/importers.py ExcelImport.check_user_data_sanity`). current format: ![wrong linebreak](https://cloud.githubusercontent.com/assets/1781719/18945337/5f6b0754-862a-11e6-8637-8711cc305c46.PNG) (expected are linebreaks before the dashes)
2016-11-14T19:41:00
e-valuation/EvaP
881
e-valuation__EvaP-881
[ "824" ]
186e6e4fa1afa4810da2b6e34116458c2f2503a7
diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -31,7 +31,26 @@ class ImportForm(forms.Form): class UserImportForm(forms.Form): - excel_file = forms.FileField(label=_("Excel file")) + excel_file = forms.FileField(label=_("Import from Excel file"), required=False) + course = forms.ModelChoiceField(Course.objects.all(), empty_label='<empty>', required=False, label=_("Copy from Course")) + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + # Here we split the courses by semester and create supergroups for them. We also make sure to include an empty option. + choices = [('', '<empty>')] + for semester in Semester.objects.all(): + course_choices = [(course.pk, course.name) for course in Course.objects.filter(semester=semester)] + if course_choices: + choices += [(semester.name, course_choices)] + + self.fields['course'].choices = choices + + def clean(self): + if self.cleaned_data['course'] and self.cleaned_data['excel_file']: + raise ValidationError('Please select only one of course or Excel file.') + if not self.cleaned_data['course'] and not self.cleaned_data['excel_file']: + raise ValidationError('Please select either course or Excel File.') class UserBulkDeleteForm(forms.Form): diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -635,11 +635,20 @@ def course_participant_import(request, semester_id, course_id): # Extract data from form. excel_file = form.cleaned_data['excel_file'] + import_course = form.cleaned_data['course'] test_run = operation == 'test' - # Parse table. - imported_users = UserImporter.process(request, excel_file, test_run) + # Import user from either excel file or other course + imported_users = [] + if excel_file: + imported_users = UserImporter.process(request, excel_file, test_run) + else: + imported_users = import_course.participants.all() + + # Print message for test run. + if test_run and imported_users: + messages.success(request, "%d Participants would be added to course %s" % (len(imported_users), course.name)) # Test run, or an error occurred while parsing -> stay and display error. if test_run or not imported_users:
Copy participants from other course It should be possible to not only import participants to a course from an excel sheet, but also to copy the participants from another course.
what's the use case for this? e.g. courses for participants in bachelor projects. they participate in multiple preparation seminars that are not part of the enrollment data. after manually adding them all to one course it would be nice to just be able to copy them instead of adding them one by one again. Actually, copying a whole course would probably be even better. Or maybe not. It depends. Adding the participants is definitely the most work, so copying them might actually be enough, because all the other stuff might be different.
2016-12-05T21:28:08
e-valuation/EvaP
894
e-valuation__EvaP-894
[ "890", "890" ]
f97bb172c403f53cc2e30f517361bb2e4b22f454
diff --git a/evap/settings.py b/evap/settings.py --- a/evap/settings.py +++ b/evap/settings.py @@ -61,6 +61,9 @@ IMPORTER_GRADED_YES = "yes" IMPORTER_GRADED_NO = "no" +# the importer will warn if any participant has more enrollments than this number +IMPORTER_MAX_ENROLLMENTS = 7 + # the default descriptions for grade documents DEFAULT_FINAL_GRADES_DESCRIPTION_EN = "Final grades" DEFAULT_MIDTERM_GRADES_DESCRIPTION_EN = "Midterm grades" diff --git a/evap/staff/importers.py b/evap/staff/importers.py --- a/evap/staff/importers.py +++ b/evap/staff/importers.py @@ -212,7 +212,6 @@ def __init__(self, request): # this is a dictionary to not let this become O(n^2) self.courses = {} self.enrollments = [] - self.max_enrollments = 6 def read_one_enrollment(self, data): student_data = UserData(username=data[3], first_name=data[2], last_name=data[1], email=data[4], title='', is_responsible=False) @@ -269,7 +268,7 @@ def check_enrollment_data_sanity(self): for enrollment in self.enrollments: enrollments_per_user[enrollment[1].username].append(enrollment) for username, enrollments in enrollments_per_user.items(): - if len(enrollments) > self.max_enrollments: + if len(enrollments) > settings.IMPORTER_MAX_ENROLLMENTS: self.warnings.append(_("Warning: User {} has {} enrollments, which is a lot.").format(username, len(enrollments))) def write_enrollments_to_db(self, semester, vote_start_date, vote_end_date):
diff --git a/evap/staff/fixtures/test_enrolment_data.xls b/evap/staff/fixtures/test_enrollment_data.xls similarity index 100% rename from evap/staff/fixtures/test_enrolment_data.xls rename to evap/staff/fixtures/test_enrollment_data.xls diff --git a/evap/staff/tests/test_usecases.py b/evap/staff/tests/test_usecases.py --- a/evap/staff/tests/test_usecases.py +++ b/evap/staff/tests/test_usecases.py @@ -43,7 +43,7 @@ def test_import(self): upload_form = page.forms["semester-import-form"] upload_form['vote_start_date'] = "02/29/2000" upload_form['vote_end_date'] = "02/29/2012" - upload_form['excel_file'] = (os.path.join(settings.BASE_DIR, "staff/fixtures/test_enrolment_data.xls"),) + upload_form['excel_file'] = (os.path.join(settings.BASE_DIR, "staff/fixtures/test_enrollment_data.xls"),) upload_form.submit(name="operation", value="import").follow() self.assertEqual(UserProfile.objects.count(), original_user_count + 23)
Make number of enrollments before warning is shown a setting the importers show a warning `Warning: User {} has {} enrollments, which is a lot.` if a user has more than a certain number of enrollments in the import. this number should be configurable in the settings file. Make number of enrollments before warning is shown a setting the importers show a warning `Warning: User {} has {} enrollments, which is a lot.` if a user has more than a certain number of enrollments in the import. this number should be configurable in the settings file.
2017-01-02T18:39:44
e-valuation/EvaP
906
e-valuation__EvaP-906
[ "900", "900" ]
f948ba192ec30e02d7825faf30c2b8566a476b43
diff --git a/evap/contributor/forms.py b/evap/contributor/forms.py --- a/evap/contributor/forms.py +++ b/evap/contributor/forms.py @@ -9,7 +9,7 @@ from evap.evaluation.models import Course, UserProfile, Questionnaire, Semester from evap.staff.forms import ContributionForm - +from evap.evaluation.forms import UserModelMultipleChoiceField logger = logging.getLogger(__name__) @@ -80,12 +80,16 @@ def __init__(self, *args, **kwargs): class DelegatesForm(forms.ModelForm): - delegate_of = forms.ModelMultipleChoiceField(None, required=False, disabled=True) - cc_user_of = forms.ModelMultipleChoiceField(None, required=False, disabled=True) + delegate_of = UserModelMultipleChoiceField(None, required=False, disabled=True) + cc_user_of = UserModelMultipleChoiceField(None, required=False, disabled=True) class Meta: model = UserProfile fields = ('delegates', 'cc_users',) + field_classes = { + 'delegates': UserModelMultipleChoiceField, + 'cc_users': UserModelMultipleChoiceField, + } def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) diff --git a/evap/evaluation/forms.py b/evap/evaluation/forms.py --- a/evap/evaluation/forms.py +++ b/evap/evaluation/forms.py @@ -76,3 +76,13 @@ def clean_email(self): def get_user(self): return self.user_cache + + +class UserModelChoiceField(forms.ModelChoiceField): + def label_from_instance(self, obj): + return obj.full_name_with_username + + +class UserModelMultipleChoiceField(forms.ModelMultipleChoiceField): + def label_from_instance(self, obj): + return obj.full_name_with_username diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -13,7 +13,7 @@ from django.forms.widgets import CheckboxSelectMultiple from evap.evaluation.models import Contribution, Course, Question, Questionnaire, Semester, UserProfile, FaqSection, \ FaqQuestion, EmailTemplate, TextAnswer, Degree, RatingAnswerCounter, CourseType - +from evap.evaluation.forms import UserModelChoiceField, UserModelMultipleChoiceField logger = logging.getLogger(__name__) @@ -128,6 +128,9 @@ class Meta: fields = ('name_de', 'name_en', 'type', 'degrees', 'is_graded', 'is_private', 'is_required_for_reward', 'vote_start_date', 'vote_end_date', 'participants', 'general_questions', 'last_modified_time_2', 'last_modified_user_2', 'semester') localized_fields = ('vote_start_date', 'vote_end_date') + field_classes = { + 'participants': UserModelMultipleChoiceField, + } def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) @@ -169,7 +172,7 @@ class SingleResultForm(forms.ModelForm): last_modified_time_2 = forms.DateTimeField(label=_("Last modified"), required=False, localize=True, disabled=True) last_modified_user_2 = forms.CharField(label=_("Last modified by"), required=False, disabled=True) event_date = forms.DateField(label=_("Event date"), localize=True) - responsible = forms.ModelChoiceField(label=_("Responsible"), queryset=UserProfile.objects.all()) + responsible = UserModelChoiceField(label=_("Responsible"), queryset=UserProfile.objects.all()) answer_1 = forms.IntegerField(label=_("# very good"), initial=0) answer_2 = forms.IntegerField(label=_("# good"), initial=0) answer_3 = forms.IntegerField(label=_("# neutral"), initial=0) @@ -253,6 +256,9 @@ class Meta: model = Contribution fields = ('course', 'contributor', 'questionnaires', 'order', 'responsibility', 'comment_visibility', 'label') widgets = {'order': forms.HiddenInput(), 'comment_visibility': forms.RadioSelect(choices=Contribution.COMMENT_VISIBILITY_CHOICES)} + field_classes = { + 'contributor': UserModelChoiceField, + } def __init__(self, *args, **kwargs): # work around https://code.djangoproject.com/ticket/25880 @@ -466,6 +472,10 @@ class UserForm(forms.ModelForm): class Meta: model = UserProfile fields = ('username', 'title', 'first_name', 'last_name', 'email', 'delegates', 'cc_users') + field_classes = { + 'delegates': UserModelMultipleChoiceField, + 'cc_users': UserModelMultipleChoiceField, + } def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) @@ -520,11 +530,6 @@ def save(self, *args, **kw): self.instance.groups.remove(grade_user_group) -class UserModelChoiceField(forms.ModelChoiceField): - def label_from_instance(self, obj): - return obj.full_name_with_username - - class UserMergeSelectionForm(forms.Form): main_user = UserModelChoiceField(UserProfile.objects.all()) other_user = UserModelChoiceField(UserProfile.objects.all())
Show username in all user selection fields #866 implemented that the username is shown along the first and last name in the user merge selection fields. This should also be done for all other user selection fields, e.g. on the lecturer's course edit page. Show username in all user selection fields #866 implemented that the username is shown along the first and last name in the user merge selection fields. This should also be done for all other user selection fields, e.g. on the lecturer's course edit page.
2017-01-31T10:09:59
e-valuation/EvaP
914
e-valuation__EvaP-914
[ "901" ]
92d32c7d3b45c203f6a451e585f56243199b67be
diff --git a/evap/contributor/views.py b/evap/contributor/views.py --- a/evap/contributor/views.py +++ b/evap/contributor/views.py @@ -102,6 +102,7 @@ def course_edit(request, course_id): return redirect('contributor:index') else: + messages.error(request, _("The form was not saved. Please resolve the errors shown below.")) sort_formset(request, formset) template_data = dict(form=course_form, formset=formset, course=course, editable=True, responsible=course.responsible_contributor.username) return render(request, "contributor_course_form.html", template_data) diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -569,6 +569,7 @@ def helper_course_edit(request, semester, course): return custom_redirect('staff:semester_view', semester.id) else: + messages.error(request, _("The form was not saved. Please resolve the errors shown below.")) sort_formset(request, formset) template_data = dict(course=course, semester=semester, form=form, formset=formset, staff=True, state=course.state, editable=editable) return render(request, "staff_course_form.html", template_data)
Show message on form errors When a submitted form contains errors an error message should be shown on top of the page in addition to the form's error messages. This is only needed for course edit pages.
2017-02-06T19:55:37
e-valuation/EvaP
919
e-valuation__EvaP-919
[ "917" ]
5f78c332eb59df40f8c61d3045926f4431f43dc9
diff --git a/evap/contributor/views.py b/evap/contributor/views.py --- a/evap/contributor/views.py +++ b/evap/contributor/views.py @@ -102,7 +102,8 @@ def course_edit(request, course_id): return redirect('contributor:index') else: - messages.error(request, _("The form was not saved. Please resolve the errors shown below.")) + if course_form.errors or formset.errors: + messages.error(request, _("The form was not saved. Please resolve the errors shown below.")) sort_formset(request, formset) template_data = dict(form=course_form, formset=formset, course=course, editable=True, responsible=course.responsible_contributor.username) return render(request, "contributor_course_form.html", template_data) diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -569,7 +569,8 @@ def helper_course_edit(request, semester, course): return custom_redirect('staff:semester_view', semester.id) else: - messages.error(request, _("The form was not saved. Please resolve the errors shown below.")) + if form.errors or formset.errors: + messages.error(request, _("The form was not saved. Please resolve the errors shown below.")) sort_formset(request, formset) template_data = dict(course=course, semester=semester, form=form, formset=formset, staff=True, state=course.state, editable=editable) return render(request, "staff_course_form.html", template_data)
Whenever editing a course, it says "The form was not saved" The title says it all: Whenever editing a course, it gives the error message "The form was not saved" Likely introduced in https://github.com/fsr-itse/EvaP/commit/5f78c332eb59df40f8c61d3045926f4431f43dc9
a check `if form.errors` should be added
2017-02-07T18:26:43
e-valuation/EvaP
923
e-valuation__EvaP-923
[ "918", "918" ]
f97bb172c403f53cc2e30f517361bb2e4b22f454
diff --git a/evap/contributor/forms.py b/evap/contributor/forms.py --- a/evap/contributor/forms.py +++ b/evap/contributor/forms.py @@ -1,15 +1,13 @@ -import logging import datetime +import logging from django import forms +from django.db.models import Q from django.forms.widgets import CheckboxSelectMultiple from django.utils.translation import ugettext_lazy as _ -from django.core.exceptions import ValidationError -from django.db.models import Q - -from evap.evaluation.models import Course, UserProfile, Questionnaire, Semester -from evap.staff.forms import ContributionForm from evap.evaluation.forms import UserModelMultipleChoiceField +from evap.evaluation.models import Course, Questionnaire, Semester, UserProfile +from evap.staff.forms import ContributionForm logger = logging.getLogger(__name__) @@ -43,7 +41,8 @@ def clean(self): vote_end_date = self.cleaned_data.get('vote_end_date') if vote_start_date and vote_end_date: if vote_start_date >= vote_end_date: - raise ValidationError(_("The first day of evaluation must be before the last one.")) + self.add_error("vote_start_date", "") + self.add_error("vote_end_date", _("The first day of evaluation must be before the last one.")) def clean_vote_start_date(self): vote_start_date = self.cleaned_data.get('vote_start_date') diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -1,19 +1,21 @@ import logging from django import forms +from django.contrib.auth.models import Group +from django.core.exceptions import SuspiciousOperation, ValidationError from django.db.models import Q -from django.core.exceptions import SuspiciousOperation from django.forms.models import BaseInlineFormSet -from django.utils.translation import ugettext_lazy as _ -from django.utils.text import normalize_newlines -from django.http.request import QueryDict -from django.core.exceptions import ValidationError -from django.contrib.auth.models import Group - from django.forms.widgets import CheckboxSelectMultiple -from evap.evaluation.models import Contribution, Course, Question, Questionnaire, Semester, UserProfile, FaqSection, \ - FaqQuestion, EmailTemplate, TextAnswer, Degree, RatingAnswerCounter, CourseType -from evap.evaluation.forms import UserModelChoiceField, UserModelMultipleChoiceField +from django.http.request import QueryDict +from django.utils.text import normalize_newlines +from django.utils.translation import ugettext_lazy as _ +from evap.evaluation.forms import (UserModelChoiceField, + UserModelMultipleChoiceField) +from evap.evaluation.models import (Contribution, Course, CourseType, Degree, + EmailTemplate, FaqQuestion, FaqSection, + Question, Questionnaire, + RatingAnswerCounter, Semester, TextAnswer, + UserProfile) logger = logging.getLogger(__name__) @@ -158,7 +160,8 @@ def clean(self): vote_end_date = self.cleaned_data.get('vote_end_date') if vote_start_date and vote_end_date: if vote_start_date >= vote_end_date: - raise ValidationError(_("The first day of evaluation must be before the last one.")) + self.add_error("vote_start_date", "") + self.add_error("vote_end_date", _("The first day of evaluation must be before the last one.")) def save(self, user, *args, **kw): self.instance.last_modified_user = user
Form errors not shown When choosing the start date to be after the end date in a course edit form and trying to save the form, an error occurs but the error message is not shown and the date fields are highlighted in green. Form errors not shown When choosing the start date to be after the end date in a course edit form and trying to save the form, an error occurs but the error message is not shown and the date fields are highlighted in green.
2017-02-13T20:14:44
e-valuation/EvaP
940
e-valuation__EvaP-940
[ "928" ]
85775735b17252a3cec9a0a6472a1fa581e8bc8f
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -942,9 +942,9 @@ def can_staff_delete(self): return False if self.is_contributor or self.is_grade_publisher or self.is_staff or self.is_superuser: return False - if any(not user.can_staff_delete() for user in self.represented_users.all()): + if any(not user.can_staff_delete for user in self.represented_users.all()): return False - if any(not user.can_staff_delete() for user in self.ccing_users.all()): + if any(not user.can_staff_delete for user in self.ccing_users.all()): return False return True diff --git a/evap/staff/tools.py b/evap/staff/tools.py --- a/evap/staff/tools.py +++ b/evap/staff/tools.py @@ -10,6 +10,8 @@ from django.core.exceptions import SuspiciousOperation from django.db import transaction from django.conf import settings +from django.utils.translation import ugettext_lazy as _ +from django.utils.safestring import mark_safe from evap.evaluation.models import UserProfile, Course, Contribution from evap.grades.models import GradeDocument @@ -76,21 +78,21 @@ def delete_navbar_cache(): def bulk_delete_users(request, username_file, test_run): usernames = [u.strip() for u in username_file.readlines()] - users = UserProfile.objects.filter(username__in=usernames) + users = UserProfile.objects.exclude(username__in=usernames) deletable_users = [u for u in users if u.can_staff_delete] - messages.info(request, 'The uploaded text file contains {} usernames. {} users have been found in the database. ' - '{} of those can be deleted.' - .format(len(usernames), len(users), len(deletable_users))) - messages.info(request, 'Users to be deleted are:\n{}' - .format('\n'.join([u.username for u in deletable_users]))) + messages.info(request, _('The uploaded text file contains {} usernames. {} other users have been found in the database. ' + '{} of those will be deleted.' + .format(len(usernames), len(users), len(deletable_users)))) + messages.info(request, mark_safe(_('Users to be deleted are:<br />{}' + .format('<br />'.join([u.username for u in deletable_users]))))) if test_run: - messages.info(request, 'No Users were deleted in this test run.') + messages.info(request, _('No users were deleted in this test run.')) else: for user in deletable_users: user.delete() - messages.info(request, '{} users have been deleted'.format(len(deletable_users))) + messages.info(request, _('{} users have been deleted'.format(len(deletable_users)))) @transaction.atomic
diff --git a/evap/staff/fixtures/test_user_bulk_delete_file.txt b/evap/staff/fixtures/test_user_bulk_delete_file.txt --- a/evap/staff/fixtures/test_user_bulk_delete_file.txt +++ b/evap/staff/fixtures/test_user_bulk_delete_file.txt @@ -1,4 +1,2 @@ testuser1 -testuser2 -contributor testuserdoesnotexist diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -130,10 +130,11 @@ def test_deletes_users(self): # Getting redirected after. self.assertEqual(reply.status_code, 302) - # Assert only these two users got deleted. - self.assertEqual(UserProfile.objects.filter(username__in=['testuser1', 'testuser2']).count(), 0) + # Assert only one user got deleted. + self.assertTrue(UserProfile.objects.filter(username='testuser1').exists()) + self.assertFalse(UserProfile.objects.filter(username='testuser2').exists()) self.assertTrue(UserProfile.objects.filter(username='contributor').exists()) - self.assertEqual(UserProfile.objects.count(), user_count_before - 2) + self.assertEqual(UserProfile.objects.count(), user_count_before - 1) # Staff - Semester Views
Bulk deletion Change bulk deletion to use a list of users that should **not** be deleted. This will then delete all users who can be deleted and are not in this list.
2017-03-13T20:32:08
e-valuation/EvaP
941
e-valuation__EvaP-941
[ "902", "902" ]
fcb038683009844c7c884723c1fe0d7eac922429
diff --git a/evap/results/views.py b/evap/results/views.py --- a/evap/results/views.py +++ b/evap/results/views.py @@ -63,6 +63,7 @@ def course_detail(request, semester_id, course_id): represented_users = list(request.user.represented_users.all()) represented_users.append(request.user) + # filter text answers for section in sections: results = [] for result in section.results: @@ -74,7 +75,10 @@ def course_detail(request, semester_id, course_id): results.append(result) section.results[:] = results - # Filter empty sections and group by contributor. + # remove empty sections + sections = [section for section in sections if section.results] + + # group by contributor course_sections = [] contributor_sections = OrderedDict() for section in sections: diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -274,9 +274,11 @@ class ContributionForm(forms.ModelForm): course = forms.ModelChoiceField(Course.objects.all(), disabled=True, required=False, widget=forms.HiddenInput()) questionnaires = forms.ModelMultipleChoiceField( Questionnaire.objects.filter(is_for_contributors=True, obsolete=False), + required=False, widget=CheckboxSelectMultiple, label=_("Questionnaires") ) + does_not_contribute = forms.BooleanField(required=False, label=_("Does not contribute to course")) class Meta: model = Contribution @@ -308,10 +310,17 @@ def __init__(self, *args, **kwargs): self.fields['questionnaires'].queryset = Questionnaire.objects.filter(is_for_contributors=True).filter( Q(obsolete=False) | Q(contributions__course=self.course)).distinct() + if self.instance.pk: + self.fields['does_not_contribute'].initial = not self.instance.questionnaires.exists() + if not self.course.can_staff_edit: # form is used as read-only course view disable_all_fields(self) + def clean(self): + if not self.cleaned_data.get('does_not_contribute') and not self.cleaned_data.get('questionnaires'): + self.add_error('does_not_contribute', _("Select either this option or at least one questionnaire!")) + def save(self, *args, **kwargs): responsibility = self.cleaned_data['responsibility'] is_responsible = responsibility == Contribution.IS_RESPONSIBLE diff --git a/evap/student/views.py b/evap/student/views.py --- a/evap/student/views.py +++ b/evap/student/views.py @@ -115,14 +115,13 @@ def vote(request, course_id): return redirect('student:index') -def helper_create_form_group(request, contribution): - return list(QuestionsForm(request.POST or None, contribution=contribution, questionnaire=questionnaire) for questionnaire in contribution.questionnaires.all()) - - def helper_create_voting_form_groups(request, contributions): form_groups = OrderedDict() for contribution in contributions: - form_groups[contribution] = helper_create_form_group(request, contribution) + questionnaires = contribution.questionnaires.all() + if not questionnaires.exists(): + continue + form_groups[contribution] = [QuestionsForm(request.POST or None, contribution=contribution, questionnaire=questionnaire) for questionnaire in questionnaires] return form_groups
diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -638,7 +638,8 @@ class TestCoursePreviewView(ViewTest): def setUpTestData(cls): mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) semester = mommy.make(Semester, pk=1) - mommy.make(Course, semester=semester, pk=1) + course = mommy.make(Course, semester=semester, pk=1) + course.general_contribution.questionnaires.set([mommy.make(Questionnaire)]) class TestCourseImportPersonsView(ViewTest): diff --git a/evap/student/tests/test_views.py b/evap/student/tests/test_views.py --- a/evap/student/tests/test_views.py +++ b/evap/student/tests/test_views.py @@ -61,6 +61,7 @@ def test_user_cannot_vote_for_themselves(self): student = mommy.make(UserProfile) course = mommy.make(Course, state='in_evaluation', participants=[student, contributor1]) + course.general_contribution.questionnaires.set([mommy.make(Questionnaire)]) questionnaire = mommy.make(Questionnaire) mommy.make(Question, questionnaire=questionnaire, type="G") mommy.make(Contribution, contributor=contributor1, course=course, questionnaires=[questionnaire])
Allow adding rights for non-contributors It should be possible to add people to a course who receive editing rights and/or comment visibility rights without being contributors with visible questionnaires. Allow adding rights for non-contributors It should be possible to add people to a course who receive editing rights and/or comment visibility rights without being contributors with visible questionnaires.
2017-03-13T21:36:57
e-valuation/EvaP
946
e-valuation__EvaP-946
[ "945", "945" ]
aefe88a9351db960a523b8f0a114140e647810ae
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -552,8 +552,8 @@ def update_courses(cls): except Exception: logger.exception('An error occured when updating the state of course "{}" (id {}).'.format(course, course.id)) - EmailTemplate.send_to_users_in_courses(EmailTemplate.EVALUATION_STARTED, courses_new_in_evaluation, - [EmailTemplate.ALL_PARTICIPANTS], use_cc=False, request=None) + template = EmailTemplate.objects.get(name=EmailTemplate.EVALUATION_STARTED) + EmailTemplate.send_to_users_in_courses(template, courses_new_in_evaluation, [EmailTemplate.ALL_PARTICIPANTS], use_cc=False, request=None) send_publish_notifications(evaluation_results_courses) logger.info("update_courses finished.")
diff --git a/evap/evaluation/tests/test_models.py b/evap/evaluation/tests/test_models.py --- a/evap/evaluation/tests/test_models.py +++ b/evap/evaluation/tests/test_models.py @@ -20,7 +20,8 @@ def test_approved_to_in_evaluation(self): with patch('evap.evaluation.models.EmailTemplate.send_to_users_in_courses') as mock: Course.update_courses() - mock.assert_called_once_with(EmailTemplate.EVALUATION_STARTED, [course], [EmailTemplate.ALL_PARTICIPANTS], + template = EmailTemplate.objects.get(name=EmailTemplate.EVALUATION_STARTED) + mock.assert_called_once_with(template, [course], [EmailTemplate.ALL_PARTICIPANTS], use_cc=False, request=None) course = Course.objects.get(pk=course.pk) @@ -58,6 +59,17 @@ def test_in_evaluation_to_published(self): course = Course.objects.get(pk=course.pk) self.assertEqual(course.state, 'published') + def test_approved_to_in_evaluation_sends_emails(self): + """ Regression test for #945 """ + participant = mommy.make(UserProfile, email='[email protected]') + course = mommy.make(Course, state='approved', vote_start_date=date.today(), participants=[participant]) + + Course.update_courses() + + course = Course.objects.get(pk=course.pk) + self.assertEqual(len(mail.outbox), 1) + self.assertEqual(course.state, 'in_evaluation') + def test_has_enough_questionnaires(self): # manually circumvent Course's save() method to have a Course without a general contribution # the semester must be specified because of https://github.com/vandersonmota/model_mommy/issues/258 @@ -73,7 +85,7 @@ def test_has_enough_questionnaires(self): self.assertFalse(course.has_enough_questionnaires) general_contribution = mommy.make(Contribution, course=course, contributor=None) - course = Course.objects.get() # refresh because of cached properties + course = Course.objects.get() self.assertFalse(course.has_enough_questionnaires) questionnaire = mommy.make(Questionnaire)
Sending emails in update_course_states fails The management command `update_course_states` fails when sending emails for courses where the evaluation started. This might be caused by changes in 36047e02235c5cca25b9519ec6bc2390cdee3e12. ``` Management command 'update_course_states' failed. Traceback follows: AttributeError 'str' object has no attribute 'subject' Traceback: File "/opt/evap/evap/evaluation/management/commands/tools.py" in handle 16. super().handle(args, options) File "/opt/evap/evap/evaluation/management/commands/update_course_states.py" in handle 12. Course.update_courses() File "/opt/evap/evap/evaluation/models.py" in update_courses 556. [EmailTemplate.ALL_PARTICIPANTS], use_cc=False, request=None) File "/opt/evap/evap/evaluation/models.py" in send_to_users_in_courses 1127. cls.send_to_user(user, template, subject_params, body_params, use_cc=use_cc, request=request) File "/opt/evap/evap/evaluation/models.py" in send_to_user 1153. subject = cls.__render_string(template.subject, subject_params) Exception Type: AttributeError Exception Value: 'str' object has no attribute 'subject' ``` Sending emails in update_course_states fails The management command `update_course_states` fails when sending emails for courses where the evaluation started. This might be caused by changes in 36047e02235c5cca25b9519ec6bc2390cdee3e12. ``` Management command 'update_course_states' failed. Traceback follows: AttributeError 'str' object has no attribute 'subject' Traceback: File "/opt/evap/evap/evaluation/management/commands/tools.py" in handle 16. super().handle(args, options) File "/opt/evap/evap/evaluation/management/commands/update_course_states.py" in handle 12. Course.update_courses() File "/opt/evap/evap/evaluation/models.py" in update_courses 556. [EmailTemplate.ALL_PARTICIPANTS], use_cc=False, request=None) File "/opt/evap/evap/evaluation/models.py" in send_to_users_in_courses 1127. cls.send_to_user(user, template, subject_params, body_params, use_cc=use_cc, request=request) File "/opt/evap/evap/evaluation/models.py" in send_to_user 1153. subject = cls.__render_string(template.subject, subject_params) Exception Type: AttributeError Exception Value: 'str' object has no attribute 'subject' ```
2017-03-25T11:28:30
e-valuation/EvaP
948
e-valuation__EvaP-948
[ "724" ]
828d4937b0440b37c14bd463e2a7fcfaf0668df1
diff --git a/evap/staff/importers.py b/evap/staff/importers.py --- a/evap/staff/importers.py +++ b/evap/staff/importers.py @@ -11,6 +11,14 @@ from evap.evaluation.tools import is_external_email +def create_user_list_string_for_message(users): + msg = "" + for user in users: + msg += "<br>" + msg += "{} {} ({})".format(user.first_name, user.last_name, user.username) + return msg + + # taken from https://stackoverflow.com/questions/390250/elegant-ways-to-support-equivalence-equality-in-python-classes class CommonEqualityMixin(object): @@ -42,13 +50,20 @@ def store_in_database(self): user.refresh_login_key() return user, created - def validate(self): + def user_already_exists(self): + return UserProfile.objects.filter(username=self.username).exists() + + def get_user_profile_object(self): user = UserProfile() user.username = self.username user.first_name = self.first_name user.last_name = self.last_name user.email = self.email user.password = "asdf" # clean_fields needs that... + return user + + def validate(self): + user = self.get_user_profile_object() user.clean_fields() @@ -284,17 +299,17 @@ def check_enrollment_data_sanity(self): self.warnings[self.W_MANY].append(_("Warning: User {} has {} enrollments, which is a lot.").format(username, len(enrollments))) def write_enrollments_to_db(self, semester, vote_start_date, vote_end_date): - students_created = 0 - responsibles_created = 0 + students_created = [] + responsibles_created = [] with transaction.atomic(): for user_data in self.users.values(): - created = user_data.store_in_database() + __, created = user_data.store_in_database() if created: if user_data.is_responsible: - responsibles_created += 1 + responsibles_created.append(user_data) else: - students_created += 1 + students_created.append(user_data) for course_data in self.courses.values(): course_data.store_in_database(vote_start_date, vote_end_date, semester) @@ -303,8 +318,18 @@ def write_enrollments_to_db(self, semester, vote_start_date, vote_end_date): student = UserProfile.objects.get(email=student_data.email) course.participants.add(student) - self.success_messages.append(_("Successfully created {} course(s), {} student(s) and {} contributor(s).").format( - len(self.courses), students_created, responsibles_created)) + msg = _("Successfully created {} course(s), {} student(s) and {} contributor(s):").format( + len(self.courses), len(students_created), len(responsibles_created)) + msg += create_user_list_string_for_message(students_created + responsibles_created) + self.success_messages.append(mark_safe(msg)) + + def create_test_success_messages(self): + filtered_users = [user_data for user_data in self.users.values() if not user_data.user_already_exists()] + + self.success_messages.append(_("The test run showed no errors. No data was imported yet.")) + msg = _("The import run will create {} courses and {} users:").format(len(self.courses), len(filtered_users)) + msg += create_user_list_string_for_message(filtered_users) + self.success_messages.append(mark_safe(msg)) @classmethod def process(cls, excel_content, semester, vote_start_date, vote_end_date, test_run): @@ -335,9 +360,10 @@ def process(cls, excel_content, semester, vote_start_date, vote_end_date, test_r if importer.errors: importer.errors.append(_("Errors occurred while parsing the input data. No data was imported.")) elif test_run: - importer.success_messages.append(_("The test run showed no errors. No data was imported yet.")) + importer.create_test_success_messages() else: importer.write_enrollments_to_db(semester, vote_start_date, vote_end_date) + return importer.success_messages, importer.warnings, importer.errors except Exception as e: importer.errors.append(_("Import finally aborted after exception: '%s'" % e)) @@ -361,23 +387,44 @@ def save_users_to_db(self): occur because of the data already in the database. """ new_participants = [] + created_users = [] with transaction.atomic(): - users_count = 0 for (sheet, row), (user_data) in self.associations.items(): try: user, created = user_data.store_in_database() new_participants.append(user) if created: - users_count += 1 + created_users.append(user) except Exception as e: self.errors.append(_("A problem occured while writing the entries to the database." " The original data location was row %(row)d of sheet '%(sheet)s'." " The error message has been: '%(error)s'") % dict(row=row+1, sheet=sheet, error=e)) raise - self.success_messages.append(_("Successfully created %(users)d user(s).") % dict(users=users_count)) + + msg = _("Successfully created {} user(s):").format(len(created_users)) + msg += create_user_list_string_for_message(created_users) + self.success_messages.append(mark_safe(msg)) return new_participants + def get_user_profile_list(self): + new_participants = [] + for user_data in self.users.values(): + try: + new_participant = UserProfile.objects.get(username=user_data.username) + except UserProfile.DoesNotExist: + new_participant = user_data.get_user_profile_object() + new_participants.append(new_participant) + return new_participants + + def create_test_success_messages(self): + filtered_users = [user_data for user_data in self.users.values() if not user_data.user_already_exists()] + + self.success_messages.append(_("The test run showed no errors. No data was imported yet.")) + msg = _("The import run will create {} user(s):").format(len(filtered_users)) + msg += create_user_list_string_for_message(filtered_users) + self.success_messages.append(mark_safe(msg)) + @classmethod def process(cls, excel_content, test_run): """ @@ -405,8 +452,8 @@ def process(cls, excel_content, test_run): importer.errors.append(_("Errors occurred while parsing the input data. No data was imported.")) return [], importer.success_messages, importer.warnings, importer.errors if test_run: - importer.success_messages.append(_("The test run showed no errors. No data was imported yet.")) - return [], importer.success_messages, importer.warnings, importer.errors + importer.create_test_success_messages() + return importer.get_user_profile_list(), importer.success_messages, importer.warnings, importer.errors else: return importer.save_users_to_db(), importer.success_messages, importer.warnings, importer.errors @@ -417,6 +464,74 @@ def process(cls, excel_content, test_run): raise +class PersonImporter: + def __init__(self): + self.success_messages = [] + self.warnings = defaultdict(list) + self.errors = [] + + def process_participants(self, course, test_run, user_list): + course_participants = course.participants.all() + already_related = [user for user in user_list if user in course_participants] + users_to_add = [user for user in user_list if user not in course_participants] + + if already_related: + msg = _("The following {} user(s) are already course participants in course {}:").format(len(already_related), course.name) + msg += create_user_list_string_for_message(already_related) + + if not test_run: + course.participants.add(*users_to_add) + msg = _("{} participants {} added to the course {}:").format(len(users_to_add), "would be" if test_run else "", course.name) + msg += create_user_list_string_for_message(users_to_add) + + self.success_messages.append(mark_safe(msg)) + + def process_contributors(self, course, test_run, user_list): + already_related_contributions = Contribution.objects.filter(course=course, contributor__in=user_list).all() + already_related = [contribution.contributor for contribution in already_related_contributions] + if already_related: + msg = _("The following {} user(s) are already contributing to course {}:").format(len(already_related), course.name) + msg += create_user_list_string_for_message(already_related) + + # since the user profiles are not necessarily saved to the database, they are not guaranteed to have a pk yet which + # makes anything relying on hashes unusable here (for a faster list difference) + users_to_add = [user for user in user_list if user not in already_related] + + if not test_run: + for user in users_to_add: + order = Contribution.objects.filter(course=course).count() + Contribution.objects.create(course=course, contributor=user, order=order) + msg = _("{} contributors {} added to the course {}:").format(len(users_to_add), "would be" if test_run else "", course.name) + msg += create_user_list_string_for_message(users_to_add) + + self.success_messages.append(mark_safe(msg)) + + @classmethod + def process_file_content(cls, import_type, course, test_run, file_content): + importer = cls() + + user_list, importer.success_messages, importer.warnings, importer.errors = UserImporter.process(file_content, test_run) + if import_type == 'participant': + importer.process_participants(course, test_run, user_list) + else: # import_type == 'contributor' + importer.process_contributors(course, test_run, user_list) + + return importer.success_messages, importer.warnings, importer.errors + + @classmethod + def process_source_course(cls, import_type, course, test_run, source_course): + importer = cls() + + if import_type == 'participant': + user_list = list(source_course.participants.all()) + importer.process_participants(course, test_run, user_list) + else: # import_type == 'contributor' + user_list = list(UserProfile.objects.filter(contributions__course=source_course)) + importer.process_contributors(course, test_run, user_list) + + return importer.success_messages, importer.warnings, importer.errors + + # Dictionary to translate internal keys to UI strings. WARNING_DESCRIPTIONS = { ExcelImporter.W_NAME: _("Name mismatches"), diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -28,7 +28,7 @@ CourseTypeForm, CourseTypeMergeSelectionForm, DegreeForm, EmailTemplateForm, ExportSheetForm, FaqQuestionForm, FaqSectionForm, ImportForm, LotteryForm, QuestionForm, QuestionnaireForm, QuestionnairesAssignForm, SemesterForm, SingleResultForm, TextAnswerForm, UserBulkDeleteForm, UserForm, UserImportForm, UserMergeSelectionForm) -from evap.staff.importers import EnrollmentImporter, UserImporter +from evap.staff.importers import EnrollmentImporter, UserImporter, PersonImporter from evap.staff.tools import (bulk_delete_users, custom_redirect, delete_import_file, delete_navbar_cache, forward_messages, get_import_file_content_or_raise, import_file_exists, merge_users, save_import_file) from evap.student.forms import QuestionsForm @@ -669,7 +669,7 @@ def course_person_import(request, semester_id, course_id): contributor_copy_form = CourseParticipantCopyForm(request.POST or None) errors = [] - warnings = {} + warnings = defaultdict(list) success_messages = [] if request.method == "POST": @@ -688,18 +688,14 @@ def course_person_import(request, semester_id, course_id): if excel_form.is_valid(): excel_file = excel_form.cleaned_data['excel_file'] file_content = excel_file.read() - # if on a test run, the process method will not return a list of users that would be - # imported so there is currently no way to show how many users would be imported. - __, success_messages, warnings, errors = UserImporter.process(file_content, test_run=True) + success_messages, warnings, errors = PersonImporter.process_file_content(import_type, course, test_run=True, file_content=file_content) if not errors: save_import_file(excel_file, request.user.id, import_type) elif 'import' in operation: file_content = get_import_file_content_or_raise(request.user.id, import_type) - imported_users, success_messages, warnings, __ = UserImporter.process(file_content, test_run=False) + success_messages, warnings, __ = PersonImporter.process_file_content(import_type, course, test_run=False, file_content=file_content) delete_import_file(request.user.id, import_type) - # Import happens in this call: - success_messages.append(helper_person_import(imported_users, course, import_type)) forward_messages(request, success_messages, warnings) return redirect('staff:semester_view', semester_id) @@ -707,12 +703,7 @@ def course_person_import(request, semester_id, course_id): copy_form.course_selection_required = True if copy_form.is_valid(): import_course = copy_form.cleaned_data['course'] - if import_type == 'participant': - imported_users = import_course.participants.all() - else: - imported_users = UserProfile.objects.filter(contributions__course=import_course) - # Import happens in this call: - success_messages.append(helper_person_import(imported_users, course, import_type)) + success_messages, warnings, errors = PersonImporter.process_source_course(import_type, course, test_run=False, source_course=import_course) forward_messages(request, success_messages, warnings) return redirect('staff:semester_view', semester_id) @@ -726,19 +717,6 @@ def course_person_import(request, semester_id, course_id): participant_test_passed=participant_test_passed, contributor_test_passed=contributor_test_passed)) -def helper_person_import(users, course, import_type): - if import_type == 'participant': - course.participants.add(*users) - return _("{} Participants added to course {}").format(len(users), course.name) - else: - for user in users: - order = Contribution.objects.filter(course=course).count() - contribution = Contribution(course=course, contributor=user, order=order) - contribution.save() - course.contributions.add(contribution) - return _("{} Contributors added to course {}").format(len(users), course.name) - - @reviewer_required def course_comments(request, semester_id, course_id): semester = get_object_or_404(Semester, id=semester_id)
More verbose user imports Re #708 When importing participants into a course the importer should show if participants already exist in the course which are also included in the import file. It should list the respective names in a warning. Also, the message informing about the number of added participants should not be the length of the import list but the actual number of added participants (so without the ones already existing). Also, when importing users or enrollment data, the importer should show which users have been newly created, not only the count.
Also, on the user, semester and course participant import test runs, there should be an indication on what effects the import would have (i.e. how many users would be added). See the comment I added in #910 on eval/staff/views.py, course_participant_import, line 675.
2017-03-27T16:16:18
e-valuation/EvaP
962
e-valuation__EvaP-962
[ "958" ]
8cccfa783229cc6ac9ac5dc2e971d40ba57e194c
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -315,7 +315,7 @@ def can_staff_edit(self): @property def can_staff_delete(self): - return self.can_staff_edit and not self.num_voters > 0 + return self.can_staff_edit and (not self.num_voters > 0 or self.is_single_result) @property def can_staff_approve(self): diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -238,16 +238,11 @@ def save(self, *args, **kw): single_result_questionnaire = Questionnaire.single_result_questionnaire() single_result_question = single_result_questionnaire.question_set.first() - if not Contribution.objects.filter(course=self.instance, responsible=True).exists(): - contribution = Contribution( - course=self.instance, - contributor=self.cleaned_data['responsible'], - responsible=True, - can_edit=True, - comment_visibility=Contribution.ALL_COMMENTS - ) - contribution.save() + contribution, created = Contribution.objects.get_or_create(course=self.instance, responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS) + contribution.contributor = self.cleaned_data['responsible'] + if created: contribution.questionnaires.add(single_result_questionnaire) + contribution.save() # set answers contribution = Contribution.objects.get(course=self.instance, responsible=True) diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -17,7 +17,7 @@ from django.views.decorators.http import require_POST from evap.evaluation.auth import reviewer_required, staff_required from evap.evaluation.models import (Contribution, Course, CourseType, Degree, EmailTemplate, FaqQuestion, FaqSection, Question, Questionnaire, - Semester, TextAnswer, UserProfile) + RatingAnswerCounter, Semester, TextAnswer, UserProfile) from evap.evaluation.tools import STATES_ORDERED, questionnaires_and_contributions, send_publish_notifications, sort_formset from evap.grades.tools import are_grades_activated from evap.results.exporters import ExcelExporter @@ -634,6 +634,8 @@ def course_delete(request): if not course.can_staff_delete: raise SuspiciousOperation("Deleting course not allowed") + if course.is_single_result: + RatingAnswerCounter.objects.filter(contribution__course=course).delete() course.delete() return HttpResponse() # 200 OK
diff --git a/evap/evaluation/tests/test_models.py b/evap/evaluation/tests/test_models.py --- a/evap/evaluation/tests/test_models.py +++ b/evap/evaluation/tests/test_models.py @@ -7,8 +7,8 @@ from model_mommy import mommy -from evap.evaluation.models import Course, UserProfile, Contribution, Semester, \ - Questionnaire, CourseType, NotArchiveable, EmailTemplate +from evap.evaluation.models import (Contribution, Course, CourseType, EmailTemplate, NotArchiveable, Questionnaire, + RatingAnswerCounter, Semester, UserProfile) from evap.results.tools import calculate_average_grades_and_deviation @@ -116,6 +116,27 @@ def test_responsible_contributors_ordering(self): course = Course.objects.get(pk=course.pk) self.assertEqual(list(course.responsible_contributors), [responsible2, responsible1]) + def test_single_result_can_be_deleted_only_in_reviewed(self): + responsible = mommy.make(UserProfile) + course = mommy.make(Course, semester=mommy.make(Semester)) + contribution = mommy.make(Contribution, + course=course, contributor=responsible, responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS, + questionnaires=[Questionnaire.single_result_questionnaire()] + ) + course.single_result_created() + course.publish() + course.save() + + self.assertTrue(Course.objects.filter(pk=course.pk).exists()) + self.assertFalse(course.can_staff_delete) + + course.unpublish() + self.assertTrue(course.can_staff_delete) + + RatingAnswerCounter.objects.filter(contribution__course=course).delete() + course.delete() + self.assertFalse(Course.objects.filter(pk=course.pk).exists()) + class TestUserProfile(TestCase): diff --git a/evap/staff/tests/test_forms.py b/evap/staff/tests/test_forms.py --- a/evap/staff/tests/test_forms.py +++ b/evap/staff/tests/test_forms.py @@ -12,6 +12,7 @@ class CourseEmailFormTests(TestCase): + def test_course_email_form(self): """ Tests the CourseEmailForm with one valid and one invalid input dataset. @@ -29,6 +30,7 @@ def test_course_email_form(self): class UserFormTests(TestCase): + def test_user_form(self): """ Tests the UserForm with one valid and one invalid input dataset. @@ -84,6 +86,7 @@ def test_user_with_same_username(self): class SingleResultFormTests(TestCase): + def test_single_result_form_saves_participant_and_voter_count(self): responsible = mommy.make(UserProfile) course_type = mommy.make(CourseType) @@ -111,6 +114,38 @@ def test_single_result_form_saves_participant_and_voter_count(self): self.assertEqual(course.num_participants, 10) self.assertEqual(course.num_voters, 10) + def test_single_result_form_can_change_responsible(self): + responsible = mommy.make(UserProfile) + course_type = mommy.make(CourseType) + course = Course(semester=mommy.make(Semester)) + form_data = { + "name_de": "qwertz", + "name_en": "qwertz", + "type": course_type.pk, + "degrees": ["1"], + "event_date": "02/1/2014", + "responsible": responsible.pk, + "answer_1": 6, + "answer_2": 0, + "answer_3": 2, + "answer_4": 0, + "answer_5": 2, + "semester": course.semester.pk + } + form = SingleResultForm(form_data, instance=course) + self.assertTrue(form.is_valid()) + + form.save(user=mommy.make(UserProfile)) + self.assertEqual(course.responsible_contributors[0], responsible) + + new_responsible = mommy.make(UserProfile) + form_data["responsible"] = new_responsible.pk + form = SingleResultForm(form_data, instance=course) + self.assertTrue(form.is_valid()) + + form.save(user=mommy.make(UserProfile)) + self.assertEqual(course.responsible_contributors[0], new_responsible) + class ContributionFormsetTests(TestCase):
Reviewed single results are shown without information on results page for staff Staff users can see single results that are not yet published on the results page without any warning about their state.
2017-05-26T11:32:04
e-valuation/EvaP
964
e-valuation__EvaP-964
[ "961" ]
a15ea35ad7ca693b08e8990b52b736d4c3d21908
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -126,11 +126,11 @@ def __gt__(self, other): @property def can_staff_edit(self): - return not self.contributions.exists() + return not self.contributions.exclude(course__state='new').exists() @property def can_staff_delete(self): - return self.can_staff_edit + return not self.contributions.exists() @property def text_questions(self):
Allow editing questionnaires that are only used in new courses Editing questionnaires should be enabled for questionnaires that are in use if all courses which are using the questionnaire are in the state `new`.
2017-05-26T12:13:01
e-valuation/EvaP
965
e-valuation__EvaP-965
[ "596" ]
77954a54c01d0f65750de351cbdb305773a06908
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -1111,9 +1111,14 @@ def send_to_users_in_courses(cls, template, courses, recipient_groups, use_cc, r def send_to_user(cls, user, template, subject_params, body_params, use_cc, request=None): if not user.email: warning_message = "{} has no email address defined. Could not send email.".format(user.username) - logger.warning(warning_message) + # If this method is triggered by a cronjob changing course states, the request is None. + # In this case warnings should be sent to the admins via email (configured in the settings for logger.error). + # If a request exists, the page is displayed in the browser and the message can be shown on the page (messages.warning). if request is not None: + logger.warning(warning_message) messages.warning(request, _(warning_message)) + else: + logger.error(warning_message) return if use_cc:
Warning if email address is missing when sending emails for course When sending emails for a course (e.g. when publishing it), a warning must be shown if the email address is missing for a user to whom an email should be sent. This can be a Django warning in the UI when sending the emails was triggered by a staff user, but must be handled differently when the situation occurrs when a cronjob triggers it. Maybe a message should be send to the admins.
all mail is sent through EmailTemplate.__send_to_user(). So, the plan would be to find out whether a user is logged in or a cronjob triggered the email sending, and then, in that method, either send an email to the admins or display a django message for each missing email address. the existing handling in staff.views.course_email can probably be removed then.
2017-05-26T12:57:20
e-valuation/EvaP
977
e-valuation__EvaP-977
[ "960", "960" ]
eecfef96cb8496a259c12ac6eecb2fbca63966e6
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -271,7 +271,11 @@ def is_in_evaluation_period(self): return today >= self.vote_start_date and today <= self.vote_end_date @property - def has_enough_questionnaires(self): + def general_contribution_has_questionnaires(self): + return self.general_contribution and (self.is_single_result or self.general_contribution.questionnaires.count() > 0) + + @property + def all_contributions_have_questionnaires(self): return self.general_contribution and (self.is_single_result or all(self.contributions.annotate(Count('questionnaires')).values_list("questionnaires__count", flat=True))) def can_user_vote(self, user): @@ -337,7 +341,7 @@ def ready_for_editors(self): def editor_approve(self): pass - @transition(field=state, source=['new', 'prepared', 'editor_approved'], target='approved', conditions=[lambda self: self.has_enough_questionnaires]) + @transition(field=state, source=['new', 'prepared', 'editor_approved'], target='approved', conditions=[lambda self: self.general_contribution_has_questionnaires]) def staff_approve(self): pass @@ -453,8 +457,12 @@ def is_user_editor(self, user): def warnings(self): result = [] - if self.state in ['new', 'prepared', 'editor_approved'] and not self.has_enough_questionnaires: - result.append(_("Not enough questionnaires assigned")) + if self.state in ['new', 'prepared', 'editor_approved'] and not self.all_contributions_have_questionnaires: + if not self.general_contribution_has_questionnaires: + result.append(_("General contribution has no questionnaires")) + else: + result.append(_("Not all contributions have questionnaires")) + if self.state in ['in_evaluation', 'evaluated', 'reviewed', 'published'] and not self.can_publish_grades: result.append(_("Not enough participants to publish results")) return result diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -180,14 +180,23 @@ def semester_course_operation(request, semester_id): elif operation == 'approve': new_state_name = STATES_ORDERED['approved'] - # remove courses without enough questionnaires - courses_with_enough_questionnaires = [course for course in courses if course.has_enough_questionnaires] + # remove courses without questionnaires on general contribution, warn about courses with missing questionnaires + courses_with_enough_questionnaires = [course for course in courses if course.general_contribution_has_questionnaires] + courses_with_missing_questionnaires = [course for course in courses_with_enough_questionnaires if not course.all_contributions_have_questionnaires] + difference = len(courses) - len(courses_with_enough_questionnaires) if difference: courses = courses_with_enough_questionnaires - messages.warning(request, ungettext("%(courses)d course can not be approved, because it has not enough questionnaires assigned. It was removed from the selection.", - "%(courses)d courses can not be approved, because they have not enough questionnaires assigned. They were removed from the selection.", - difference) % {'courses': difference}) + messages.warning(request, + ungettext('%(courses)d course can not be approved, because it has not enough questionnaires assigned. It was removed from the selection.', + '%(courses)d courses can not be approved, because they have not enough questionnaires assigned. They were removed from the selection.', + difference) % {'courses': difference}) + + if courses_with_missing_questionnaires: + messages.warning(request, + ungettext('%(courses)d course does not have a questionnaire assigned for every contributor. It can be approved anyway.', + '%(courses)d courses do not have a questionnaire assigned for every contributor. They can be approved anyway.', + len(courses_with_missing_questionnaires)) % {'courses': len(courses_with_missing_questionnaires)}) elif operation == 'startEvaluation': new_state_name = STATES_ORDERED['in_evaluation']
diff --git a/evap/evaluation/tests/test_models.py b/evap/evaluation/tests/test_models.py --- a/evap/evaluation/tests/test_models.py +++ b/evap/evaluation/tests/test_models.py @@ -76,24 +76,29 @@ def test_has_enough_questionnaires(self): Course.objects.bulk_create([mommy.prepare(Course, semester=mommy.make(Semester), type=mommy.make(CourseType))]) course = Course.objects.get() self.assertEqual(course.contributions.count(), 0) - self.assertFalse(course.has_enough_questionnaires) + self.assertFalse(course.general_contribution_has_questionnaires) + self.assertFalse(course.all_contributions_have_questionnaires) responsible_contribution = mommy.make( Contribution, course=course, contributor=mommy.make(UserProfile), responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS) course = Course.objects.get() - self.assertFalse(course.has_enough_questionnaires) + self.assertFalse(course.general_contribution_has_questionnaires) + self.assertFalse(course.all_contributions_have_questionnaires) general_contribution = mommy.make(Contribution, course=course, contributor=None) course = Course.objects.get() - self.assertFalse(course.has_enough_questionnaires) + self.assertFalse(course.general_contribution_has_questionnaires) + self.assertFalse(course.all_contributions_have_questionnaires) questionnaire = mommy.make(Questionnaire) general_contribution.questionnaires.add(questionnaire) - self.assertFalse(course.has_enough_questionnaires) + self.assertTrue(course.general_contribution_has_questionnaires) + self.assertFalse(course.all_contributions_have_questionnaires) responsible_contribution.questionnaires.add(questionnaire) - self.assertTrue(course.has_enough_questionnaires) + self.assertTrue(course.general_contribution_has_questionnaires) + self.assertTrue(course.all_contributions_have_questionnaires) def test_deleting_last_modified_user_does_not_delete_course(self): user = mommy.make(UserProfile)
Questionnaire assignment warning for contributors without questionnaires The label "Not enough questionnaires assigned" is always shown next to courses on the staff page where one of the contributors has the checkbox "Does not contribute to course" selected. This should count as an assigned questionnaire in respect of this warning message, which should not be displayed if the course has sufficient questionnaires assigned otherwise. The property `has_enough_questionnaires` must be adapted to reflect this. Questionnaire assignment warning for contributors without questionnaires The label "Not enough questionnaires assigned" is always shown next to courses on the staff page where one of the contributors has the checkbox "Does not contribute to course" selected. This should count as an assigned questionnaire in respect of this warning message, which should not be displayed if the course has sufficient questionnaires assigned otherwise. The property `has_enough_questionnaires` must be adapted to reflect this.
well, the problem here is that "Does not contribute to course" is not saved anywhere. right now the code simply checks that checkbox if there are no questionnaires selected. Which is probably not what we want in case of newly imported courses... This also prevents approving courses in case a contributor has no questionnaires. as discussed, `has_enough_questionnaires` should simply not care about contributors. however, when selecting multiple courses in the semester view and approving them, courses that have a contributor with no questionnaires should get a warning in the confirmation page. well, the problem here is that "Does not contribute to course" is not saved anywhere. right now the code simply checks that checkbox if there are no questionnaires selected. Which is probably not what we want in case of newly imported courses... This also prevents approving courses in case a contributor has no questionnaires. as discussed, `has_enough_questionnaires` should simply not care about contributors. however, when selecting multiple courses in the semester view and approving them, courses that have a contributor with no questionnaires should get a warning in the confirmation page.
2017-06-19T16:55:47
e-valuation/EvaP
978
e-valuation__EvaP-978
[ "929" ]
2e745120d55e9bc98913424937453a04dc0ce903
diff --git a/evap/staff/urls.py b/evap/staff/urls.py --- a/evap/staff/urls.py +++ b/evap/staff/urls.py @@ -64,6 +64,8 @@ url(r"^template/$", RedirectView.as_view(url='/staff/', permanent=True)), url(r"^template/(\d+)$", views.template_edit, name="template_edit"), - url(r"faq/$", views.faq_index, name="faq_index"), - url(r"faq/(\d+)$", views.faq_section, name="faq_section"), + url(r"^faq/$", views.faq_index, name="faq_index"), + url(r"^faq/(\d+)$", views.faq_section, name="faq_section"), + + url(r"^download_sample_xls/(.+)$", views.download_sample_xls, name="download_sample_xls") ] diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -1,8 +1,11 @@ import csv import datetime import random +from xlrd import open_workbook as open_workbook +from xlutils.copy import copy as copy_workbook from collections import OrderedDict, defaultdict +from django.conf import settings from django.contrib import messages from django.core.exceptions import PermissionDenied, SuspiciousOperation from django.db import IntegrityError, transaction @@ -1249,3 +1252,27 @@ def faq_section(request, section_id): else: template_data = dict(formset=formset, section=section, questions=questions) return render(request, "staff_faq_section.html", template_data) + + +@staff_required +def download_sample_xls(request, filename): + email_placeholder = "institution.com" + + if filename not in ["sample.xls", "sample_user.xls"]: + raise SuspiciousOperation("Invalid file name.") + + read_book = open_workbook(settings.STATICFILES_DIRS[0] + "/" + filename, formatting_info=True) + write_book = copy_workbook(read_book) + for sheet_index in range(read_book.nsheets): + read_sheet = read_book.sheet_by_index(sheet_index) + write_sheet = write_book.get_sheet(sheet_index) + for row in range(read_sheet.nrows): + for col in range(read_sheet.ncols): + value = read_sheet.cell(row, col).value + if email_placeholder in value: + write_sheet.write(row, col, value.replace(email_placeholder, settings.INSTITUTION_EMAIL_DOMAINS[0])) + + response = HttpResponse(content_type="application/vnd.ms-excel") + response["Content-Disposition"] = "attachment; filename=\"{}\"".format(filename) + write_book.save(response) + return response
diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -20,6 +20,31 @@ def helper_delete_all_import_files(user_id): for filename in glob.glob(file_filter): os.remove(filename) +# Staff - Sample Files View +class TestDownloadSampleXlsView(ViewTest): + test_users = ['staff'] + url = '/staff/download_sample_xls/sample.xls' + email_placeholder = "institution.com" + + @classmethod + def setUpTestData(cls): + mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) + + def test_sample_file_correctness(self): + page = self.app.get(self.url, user='staff') + + found_institution_domain = False + book = xlrd.open_workbook(file_contents=page.body) + for sheet in book.sheets(): + for row in sheet.get_rows(): + for cell in row: + value = cell.value + self.assertNotIn(self.email_placeholder, value) + if settings.INSTITUTION_EMAIL_DOMAINS[0] in value: + found_institution_domain = True + + self.assertTrue(found_institution_domain) + # Staff - Root View class TestStaffIndexView(ViewTest):
Update example files The example files must be updated so that they can be imported without errors.
i thought we had tests for that. if not, this issue includes writing tests for that :) The tests for the sample files are in evap/evaluation/tests/test_misc.py, testing the semester and user import sample files. I guess they pass due to the overrided settings, but I didn't look into that. These tests should be moved to staff/tests/test_views.py I guess. The course person import sample file is not tested. Currently it's the same as the user import file, so the file is actually checked, but in case it changes, this might lead to missing tests. Assign please I currently plan on doing it by opening a template sample file with xlrd, copying it to a xlwt workbook, modifying that so that the emails are correct and then serving the file in the HTTP response. This would happen in a new view (which will not be visible). The code will be less than 50 lines. Testing would happen in two layers: 1. Test that the template files are valid 2. Test that the substitution works I think this would be the most efficient way.
2017-06-19T17:45:26
e-valuation/EvaP
995
e-valuation__EvaP-995
[ "769" ]
ce770e8c90170d18850f51b5b42df1950c7a8c0a
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -263,10 +263,6 @@ def save(self, *args, **kw): def is_fully_reviewed(self): return not self.open_textanswer_set.exists() - @property - def is_not_fully_reviewed(self): - return self.open_textanswer_set.exists() - @property def vote_end_datetime(self): # The evaluation ends at EVALUATION_END_OFFSET_HOURS:00 of the day AFTER self.vote_end_date. @@ -329,10 +325,6 @@ def can_staff_edit(self): def can_staff_delete(self): return self.can_staff_edit and (not self.num_voters > 0 or self.is_single_result) - @property - def can_staff_approve(self): - return self.state in ['new', 'prepared', 'editor_approved'] - @property def can_publish_grades(self): from evap.results.tools import get_sum_of_answer_counters @@ -377,7 +369,7 @@ def review_finished(self): def single_result_created(self): pass - @transition(field=state, source='reviewed', target='evaluated', conditions=[lambda self: self.is_not_fully_reviewed]) + @transition(field=state, source='reviewed', target='evaluated', conditions=[lambda self: not self.is_fully_reviewed]) def reopen_review(self): pass @@ -431,38 +423,19 @@ def days_until_evaluation(self): def is_user_editor_or_delegate(self, user): if self.contributions.filter(can_edit=True, contributor=user).exists(): return True - else: - represented_users = user.represented_users.all() - if self.contributions.filter(can_edit=True, contributor__in=represented_users).exists(): - return True - - return False - - def is_user_responsible_or_delegate(self, user): - if self.contributions.filter(responsible=True, contributor=user).exists(): + represented_users = user.represented_users.all() + if self.contributions.filter(can_edit=True, contributor__in=represented_users).exists(): return True - else: - represented_users = user.represented_users.all() - if self.contributions.filter(responsible=True, contributor__in=represented_users).exists(): - return True - return False - def is_user_contributor(self, user): - return self.contributions.filter(contributor=user).exists() - def is_user_contributor_or_delegate(self, user): - if self.is_user_contributor(user): + if self.contributions.filter(contributor=user).exists(): + return True + represented_users = user.represented_users.all() + if self.contributions.filter(contributor__in=represented_users).exists(): return True - else: - represented_users = user.represented_users.all() - if self.contributions.filter(contributor__in=represented_users).exists(): - return True return False - def is_user_editor(self, user): - return self.contributions.filter(contributor=user, can_edit=True).exists() - def warnings(self): result = [] if self.state in ['new', 'prepared', 'editor_approved'] and not self.all_contributions_have_questionnaires: @@ -734,10 +707,6 @@ class Meta: verbose_name = _("text answer") verbose_name_plural = _("text answers") - @property - def is_reviewed(self): - return self.state != self.NOT_REVIEWED - @property def is_hidden(self): return self.state == self.HIDDEN
diff --git a/evap/contributor/tests/test_views.py b/evap/contributor/tests/test_views.py --- a/evap/contributor/tests/test_views.py +++ b/evap/contributor/tests/test_views.py @@ -1,4 +1,6 @@ -from evap.evaluation.models import Course +from model_mommy import mommy + +from evap.evaluation.models import Course, UserProfile from evap.evaluation.tests.tools import ViewTest, course_with_responsible_and_editor TESTING_COURSE_ID = 2 @@ -21,32 +23,57 @@ class TestContributorSettingsView(ViewTest): def setUpTestData(cls): course_with_responsible_and_editor() + def test_save_settings(self): + user = mommy.make(UserProfile) + page = self.get_assert_200(self.url, "responsible") + form = page.forms["settings-form"] + form["delegates"] = [user.pk] + form.submit() + + self.assertEquals(list(UserProfile.objects.get(username='responsible').delegates.all()), [user]) + class TestContributorCourseView(ViewTest): - test_users = ['editor', 'responsible'] url = '/contributor/course/%s' % TESTING_COURSE_ID + test_users = ['editor', 'responsible'] @classmethod def setUpTestData(cls): - course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) + cls.course = course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) + + def test_wrong_state(self): + self.course.revert_to_new() + self.course.save() + self.get_assert_403(self.url, 'responsible') class TestContributorCoursePreviewView(ViewTest): - test_users = ['editor', 'responsible'] url = '/contributor/course/%s/preview' % TESTING_COURSE_ID + test_users = ['editor', 'responsible'] @classmethod def setUpTestData(cls): - course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) + cls.course = course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) + + def setUp(self): + self.course = Course.objects.get(pk=TESTING_COURSE_ID) + + def test_wrong_state(self): + self.course.revert_to_new() + self.course.save() + self.get_assert_403(self.url, 'responsible') class TestContributorCourseEditView(ViewTest): - test_users = ['editor', 'responsible'] url = '/contributor/course/%s/edit' % TESTING_COURSE_ID + test_users = ['editor', 'responsible'] @classmethod def setUpTestData(cls): - course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) + cls.course = course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) + + def setUp(self): + self.course = Course.objects.get(pk=TESTING_COURSE_ID) def test_not_authenticated(self): """ @@ -68,10 +95,8 @@ def test_wrong_state(self): Asserts that a contributor attempting to edit a course that is in a state where editing is not allowed gets a 403. """ - course = Course.objects.get(pk=TESTING_COURSE_ID) - - course.editor_approve() - course.save() + self.course.editor_approve() + self.course.save() self.get_assert_403(self.url, 'responsible') @@ -80,20 +105,18 @@ def test_contributor_course_edit(self): Tests whether the "save" button in the contributor's course edit view does not change the course's state, and that the "approve" button does that. """ - course = Course.objects.get(pk=TESTING_COURSE_ID) - page = self.get_assert_200(self.url, user="responsible") form = page.forms["course-form"] form["vote_start_datetime"] = "2098-01-01 11:43:12" form["vote_end_date"] = "2099-01-01" form.submit(name="operation", value="save") - course = Course.objects.get(pk=course.pk) - self.assertEqual(course.state, "prepared") + self.course = Course.objects.get(pk=self.course.pk) + self.assertEqual(self.course.state, "prepared") form.submit(name="operation", value="approve") - course = Course.objects.get(pk=course.pk) - self.assertEqual(course.state, "editor_approved") + self.course = Course.objects.get(pk=self.course.pk) + self.assertEqual(self.course.state, "editor_approved") # test what happens if the operation is not specified correctly response = form.submit(expect_errors=True) diff --git a/evap/evaluation/tests/test_coverage.py b/evap/evaluation/tests/test_coverage.py deleted file mode 100644 --- a/evap/evaluation/tests/test_coverage.py +++ /dev/null @@ -1,121 +0,0 @@ -from django.test.utils import override_settings - -from evap.evaluation.models import Course -from evap.evaluation.tests.tools import WebTest - - -""" -These tests were created to get a higher test coverage. Some actually contain functional -tests and should be moved to their appropriate place, others don't really test anything -and should be replaced by better tests. Eventually, this file is to be removed. -""" - - -@override_settings(INSTITUTION_EMAIL_DOMAINS=["example.com"]) -class URLTests(WebTest): - fixtures = ['minimal_test_data'] - csrf_checks = False - - def test_all_urls(self): - """ - This tests visits all URLs of evap and verifies they return a 200 for the specified user. - """ - tests = [ - # staff semester single_result - ("test_staff_semester_x_single_result_y_edit", "/staff/semester/1/course/11/edit", "evap"), - # staff questionnaires - ("test_staff_questionnaire", "/staff/questionnaire/", "evap"), - ("test_staff_questionnaire_create", "/staff/questionnaire/create", "evap"), - ("test_staff_questionnaire_x_edit", "/staff/questionnaire/3/edit", "evap"), - ("test_staff_questionnaire_x", "/staff/questionnaire/2", "evap"), - ("test_staff_questionnaire_x_copy", "/staff/questionnaire/2/copy", "evap"), - # staff user - ("test_staff_user_import", "/staff/user/import", "evap"), - ("test_staff_sample_xls", "/static/sample_user.xls", "evap"), - ("test_staff_user_x_edit", "/staff/user/4/edit", "evap"), - ("test_staff_user_merge", "/staff/user/merge", "evap"), - ("test_staff_user_x_merge_x", "/staff/user/4/merge/5", "evap"), - # rewards - ("test_staff_reward_points_redemption_events", "/rewards/reward_point_redemption_events/", "evap"), - ("test_staff_reward_points_redemption_event_export", "/rewards/reward_point_redemption_event/1/export", "evap"), - # course types - ("test_staff_course_type_merge", "/staff/course_types/merge", "evap"), - ] - for _, url, user in tests: - self.get_assert_200(url, user) - - def test_permission_denied(self): - """ - Tests whether all the 403s Evap can throw are correctly thrown. - """ - self.get_assert_403("/contributor/course/7", "editor_of_course_1") - self.get_assert_403("/contributor/course/7/preview", "editor_of_course_1") - self.get_assert_403("/contributor/course/2/edit", "editor_of_course_1") - self.get_assert_403("/student/vote/5", "student") - self.get_assert_403("/results/semester/1/course/8", "student") - self.get_assert_403("/results/semester/1/course/7", "student") - - def test_failing_forms(self): - """ - Tests whether forms that fail because of missing required fields - when submitting them without entering any data actually do that. - """ - forms = [ - ("/staff/semester/create", "evap"), - ("/staff/semester/1/course/create", "evap"), - ("/staff/questionnaire/create", "evap"), - ("/staff/user/create", "evap"), - ("/staff/user/merge", "evap"), - ("/staff/course_types/merge", "evap"), - ] - for form in forms: - response = self.get_submit_assert_200(form[0], form[1]) - self.assertIn("is required", response) - - forms = [ - ("/student/vote/5", "lazy.student"), - ("/staff/semester/1/course/1/email", "evap"), - ] - for form in forms: - response = self.get_submit_assert_200(form[0], form[1]) - self.assertIn("alert-danger", response) - - def test_failing_questionnaire_copy(self): - """ - Tests whether copying and submitting a questionnaire form wihtout entering a new name fails. - """ - response = self.get_submit_assert_200("/staff/questionnaire/2/copy", "evap") - self.assertIn("already exists", response) - - """ - The following tests test whether forms that succeed when - submitting them without entering any data actually do that. - They are in individual methods because most of them change the database. - """ - - def test_staff_semester_x_edit__nodata_success(self): - self.get_submit_assert_302("/staff/semester/1/edit", "evap") - - def test_staff_semester_x_assign__nodata_success(self): - self.get_submit_assert_302("/staff/semester/1/assign", "evap") - - def test_staff_semester_x_lottery__nodata_success(self): - self.get_submit_assert_200("/staff/semester/1/lottery", "evap") - - def test_staff_semester_x_course_y_edit__nodata_success(self): - self.get_submit_assert_302("/staff/semester/1/course/1/edit", "evap", name="operation", value="save") - - def test_staff_questionnaire_x_edit__nodata_success(self): - self.get_submit_assert_302("/staff/questionnaire/3/edit", "evap") - - def test_staff_user_x_edit__nodata_success(self): - self.get_submit_assert_302("/staff/user/4/edit", "evap") - - def test_staff_faq__nodata_success(self): - self.get_submit_assert_302("/staff/faq/", "evap") - - def test_staff_faq_x__nodata_success(self): - self.get_submit_assert_302("/staff/faq/1", "evap") - - def test_contributor_settings(self): - self.get_submit_assert_302("/contributor/settings", "responsible") diff --git a/evap/results/tests/test_views.py b/evap/results/tests/test_views.py --- a/evap/results/tests/test_views.py +++ b/evap/results/tests/test_views.py @@ -55,8 +55,12 @@ def setUpTestData(cls): def test_single_result_course(self): url = '/results/semester/%s/course/%s' % (self.semester.id, self.single_result_course.id) user = 'evap' - response = self.app.get(url, user=user) - self.assertEqual(response.status_code, 200, 'url "{}" failed with user "{}"'.format(self.url, user)) + self.get_assert_200(url, user) + + def test_wrong_state(self): + course = mommy.make(Course, state='reviewed', semester=self.semester) + url = '/results/semester/%s/course/%s' % (self.semester.id, course.id) + self.get_assert_403(url, 'student') def test_private_course(self): student = UserProfile.objects.get(username="student") diff --git a/evap/rewards/tests/test_views.py b/evap/rewards/tests/test_views.py --- a/evap/rewards/tests/test_views.py +++ b/evap/rewards/tests/test_views.py @@ -78,6 +78,17 @@ def test_redeem_points_for_expired_event(self): self.assertEqual(5, reward_points_of_user(self.student)) +class TestEventsView(ViewTest): + url = reverse('rewards:reward_point_redemption_events') + test_users = ['staff'] + + @classmethod + def setUpTestData(cls): + mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) + mommy.make(RewardPointRedemptionEvent, pk=1, redeem_end_date=date.today() + timedelta(days=1)) + mommy.make(RewardPointRedemptionEvent, pk=2, redeem_end_date=date.today() + timedelta(days=1)) + + class TestEventCreateView(ViewTest): url = reverse('rewards:reward_point_redemption_event_create') test_users = ['staff'] @@ -124,6 +135,17 @@ def test_edit_redemption_event(self): self.assertEqual(RewardPointRedemptionEvent.objects.get(pk=1).name, 'new name') +class TestExportView(ViewTest): + url = '/rewards/reward_point_redemption_event/1/export' + test_users = ['staff'] + + @classmethod + def setUpTestData(cls): + mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) + event = mommy.make(RewardPointRedemptionEvent, pk=1, redeem_end_date=date.today() + timedelta(days=1)) + mommy.make(RewardPointRedemption, value=1, event=event) + + class TestSemesterActivationView(ViewTest): url = '/rewards/reward_semester_activation/1/' csrf_checks = False diff --git a/evap/staff/tests/test_usecases.py b/evap/staff/tests/test_usecases.py deleted file mode 100644 --- a/evap/staff/tests/test_usecases.py +++ /dev/null @@ -1,173 +0,0 @@ -import os.path - -from django.conf import settings -from django.contrib.auth.models import Group -from django.urls import reverse - -from model_mommy import mommy - -from evap.evaluation.models import Semester, Questionnaire, Question, UserProfile, Course, \ - CourseType, Contribution -from evap.evaluation.tests.tools import WebTest - - -class UsecaseTests(WebTest): - - @classmethod - def setUpTestData(cls): - mommy.make(UserProfile, username="staff.user", groups=[Group.objects.get(name="Staff")]) - mommy.make(CourseType, name_de="Vorlesung", name_en="Vorlesung") - mommy.make(CourseType, name_de="Seminar", name_en="Seminar") - - def test_import(self): - page = self.app.get(reverse("staff:index"), user='staff.user') - - # create a new semester - page = page.click("[Cc]reate [Nn]ew [Ss]emester") - semester_form = page.forms["semester-form"] - semester_form['name_de'] = "Testsemester" - semester_form['name_en'] = "test semester" - page = semester_form.submit().follow() - - # retrieve new semester - semester = Semester.objects.get(name_de="Testsemester", - name_en="test semester") - - self.assertEqual(semester.course_set.count(), 0, "New semester is not empty.") - - # save original user count - original_user_count = UserProfile.objects.count() - - # import excel file - page = page.click("[Ii]mport") - upload_form = page.forms["semester-import-form"] - upload_form['excel_file'] = (os.path.join(settings.BASE_DIR, "staff/fixtures/test_enrollment_data.xls"),) - page = upload_form.submit(name="operation", value="test") - - upload_form = page.forms["semester-import-form"] - upload_form['vote_start_datetime'] = "2000-02-29" - upload_form['vote_end_date'] = "2012-02-29" - upload_form.submit(name="operation", value="import").follow() - - self.assertEqual(UserProfile.objects.count(), original_user_count + 23) - - courses = Course.objects.filter(semester=semester).all() - self.assertEqual(len(courses), 23) - - for course in courses: - responsibles_count = Contribution.objects.filter(course=course, responsible=True).count() - self.assertEqual(responsibles_count, 1) - - check_student = UserProfile.objects.get(username="diam.synephebos") - self.assertEqual(check_student.first_name, "Diam") - self.assertEqual(check_student.email, "[email protected]") - - check_contributor = UserProfile.objects.get(username="sanctus.aliquyam.ext") - self.assertEqual(check_contributor.first_name, "Sanctus") - self.assertEqual(check_contributor.last_name, "Aliquyam") - self.assertEqual(check_contributor.email, "[email protected]") - - def test_login_key(self): - self.assertRedirects(self.app.get(reverse("results:index")), "/?next=/results/") - - user = mommy.make(UserProfile) - user.generate_login_key() - - url_with_key = reverse("results:index") + "?loginkey=%s" % user.login_key - self.app.get(url_with_key) - - def test_create_questionnaire(self): - page = self.app.get(reverse("staff:index"), user="staff.user") - - # create a new questionnaire - page = page.click("[Cc]reate [Nn]ew [Qq]uestionnaire") - questionnaire_form = page.forms["questionnaire-form"] - questionnaire_form['name_de'] = "Test Fragebogen" - questionnaire_form['name_en'] = "test questionnaire" - questionnaire_form['public_name_de'] = "Oeffentlicher Test Fragebogen" - questionnaire_form['public_name_en'] = "Public Test Questionnaire" - questionnaire_form['question_set-0-text_de'] = "Frage 1" - questionnaire_form['question_set-0-text_en'] = "Question 1" - questionnaire_form['question_set-0-type'] = "T" - questionnaire_form['index'] = 0 - questionnaire_form.submit().follow() - - # retrieve new questionnaire - questionnaire = Questionnaire.objects.get(name_de="Test Fragebogen", name_en="test questionnaire") - self.assertEqual(questionnaire.question_set.count(), 1, "New questionnaire is empty.") - - def test_create_empty_questionnaire(self): - page = self.app.get(reverse("staff:index"), user="staff.user") - - # create a new questionnaire - page = page.click("[Cc]reate [Nn]ew [Qq]uestionnaire") - questionnaire_form = page.forms["questionnaire-form"] - questionnaire_form['name_de'] = "Test Fragebogen" - questionnaire_form['name_en'] = "test questionnaire" - questionnaire_form['public_name_de'] = "Oeffentlicher Test Fragebogen" - questionnaire_form['public_name_en'] = "Public Test Questionnaire" - questionnaire_form['index'] = 0 - page = questionnaire_form.submit() - - self.assertIn("You must have at least one of these", page) - - # retrieve new questionnaire - with self.assertRaises(Questionnaire.DoesNotExist): - Questionnaire.objects.get(name_de="Test Fragebogen", name_en="test questionnaire") - - def test_copy_questionnaire(self): - questionnaire = mommy.make(Questionnaire, name_en="Seminar") - mommy.make(Question, questionnaire=questionnaire) - page = self.app.get(reverse("staff:index"), user="staff.user") - - # create a new questionnaire - page = page.click("All questionnaires") - page = page.click("Copy", index=1) - questionnaire_form = page.forms["questionnaire-form"] - questionnaire_form['name_de'] = "Test Fragebogen (kopiert)" - questionnaire_form['name_en'] = "test questionnaire (copied)" - questionnaire_form['public_name_de'] = "Oeffentlicher Test Fragebogen (kopiert)" - questionnaire_form['public_name_en'] = "Public Test Questionnaire (copied)" - page = questionnaire_form.submit().follow() - - # retrieve new questionnaire - questionnaire = Questionnaire.objects.get(name_de="Test Fragebogen (kopiert)", name_en="test questionnaire (copied)") - self.assertEqual(questionnaire.question_set.count(), 1, "New questionnaire is empty.") - - def test_assign_questionnaires(self): - semester = mommy.make(Semester, name_en="Semester 1") - mommy.make(Course, semester=semester, type=CourseType.objects.get(name_de="Seminar"), contributions=[ - mommy.make(Contribution, contributor=mommy.make(UserProfile), - responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS)]) - mommy.make(Course, semester=semester, type=CourseType.objects.get(name_de="Vorlesung"), contributions=[ - mommy.make(Contribution, contributor=mommy.make(UserProfile), - responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS)]) - questionnaire = mommy.make(Questionnaire) - page = self.app.get(reverse("staff:index"), user="staff.user") - - # assign questionnaire to courses - page = page.click("Semester 1", index=0) - page = page.click("Assign Questionnaires") - assign_form = page.forms["questionnaire-assign-form"] - assign_form['Seminar'] = [questionnaire.pk] - assign_form['Vorlesung'] = [questionnaire.pk] - page = assign_form.submit().follow() - - for course in semester.course_set.all(): - self.assertEqual(course.general_contribution.questionnaires.count(), 1) - self.assertEqual(course.general_contribution.questionnaires.get(), questionnaire) - - def test_remove_responsibility(self): - user = mommy.make(UserProfile) - contribution = mommy.make(Contribution, contributor=user, responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS) - - page = self.app.get(reverse("staff:index"), user="staff.user") - page = page.click(contribution.course.semester.name_en, index=0) - page = page.click(contribution.course.name_en) - - # remove responsibility - form = page.forms["course-form"] - form['contributions-0-responsibility'] = "CONTRIBUTOR" - page = form.submit() - - self.assertIn("No responsible contributors found", page) diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -10,7 +10,8 @@ import xlrd from evap.evaluation.models import Semester, UserProfile, Course, CourseType, TextAnswer, Contribution, \ - Questionnaire, Question, EmailTemplate, Degree, FaqSection, FaqQuestion + Questionnaire, Question, EmailTemplate, Degree, FaqSection, FaqQuestion, \ + RatingAnswerCounter from evap.evaluation.tests.tools import FuzzyInt, WebTest, ViewTest from evap.staff.tools import generate_import_filename @@ -121,6 +122,44 @@ def test_user_is_created(self): self.assertEqual(UserProfile.objects.order_by("pk").last().username, "mflkd862xmnbo5") +class TestUserEditView(ViewTest): + url = "/staff/user/3/edit" + test_users = ['staff'] + + @classmethod + def setUpTestData(cls): + mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) + mommy.make(UserProfile, pk=3) + + def test_questionnaire_edit(self): + page = self.get_assert_200(self.url, "staff") + form = page.forms["user-form"] + form["username"] = "lfo9e7bmxp1xi" + form.submit() + self.assertTrue(UserProfile.objects.filter(username='lfo9e7bmxp1xi').exists()) + + +class TestUserMergeSelectionView(ViewTest): + url = "/staff/user/merge" + test_users = ['staff'] + + @classmethod + def setUpTestData(cls): + mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) + mommy.make(UserProfile) + + +class TestUserMergeView(ViewTest): + url = "/staff/user/3/merge/4" + test_users = ['staff'] + + @classmethod + def setUpTestData(cls): + mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) + mommy.make(UserProfile, pk=3) + mommy.make(UserProfile, pk=4) + + class TestUserBulkDeleteView(ViewTest): url = '/staff/user/bulk_delete' test_users = ['staff'] @@ -383,7 +422,27 @@ class TestSemesterAssignView(ViewTest): @classmethod def setUpTestData(cls): mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) - mommy.make(Semester, pk=1) + cls.semester = mommy.make(Semester, pk=1) + lecture_type = mommy.make(CourseType, name_de="Vorlesung", name_en="Lecture") + seminar_type = mommy.make(CourseType, name_de="Seminar", name_en="Seminar") + cls.questionnaire = mommy.make(Questionnaire) + course1 = mommy.make(Course, semester=cls.semester, type=seminar_type) + mommy.make(Contribution, contributor=mommy.make(UserProfile), course=course1, + responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS) + course2 = mommy.make(Course, semester=cls.semester, type=lecture_type) + mommy.make(Contribution, contributor=mommy.make(UserProfile), course=course2, + responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS) + + def test_assign_questionnaires(self): + page = self.app.get(self.url, user="staff") + assign_form = page.forms["questionnaire-assign-form"] + assign_form['Seminar'] = [self.questionnaire.pk] + assign_form['Lecture'] = [self.questionnaire.pk] + page = assign_form.submit().follow() + + for course in self.semester.course_set.all(): + self.assertEqual(course.general_contribution.questionnaires.count(), 1) + self.assertEqual(course.general_contribution.questionnaires.get(), self.questionnaire) class TestSemesterTodoView(ViewTest): @@ -438,6 +497,22 @@ def test_import_valid_file(self): self.assertEqual(UserProfile.objects.count(), original_user_count + 23) + courses = Course.objects.all() + self.assertEqual(len(courses), 23) + + for course in courses: + responsibles_count = Contribution.objects.filter(course=course, responsible=True).count() + self.assertEqual(responsibles_count, 1) + + check_student = UserProfile.objects.get(username="diam.synephebos") + self.assertEqual(check_student.first_name, "Diam") + self.assertEqual(check_student.email, "[email protected]") + + check_contributor = UserProfile.objects.get(username="sanctus.aliquyam.ext") + self.assertEqual(check_contributor.first_name, "Sanctus") + self.assertEqual(check_contributor.last_name, "Aliquyam") + self.assertEqual(check_contributor.email, "[email protected]") + def test_error_handling(self): """ Tests whether errors given from the importer are displayed @@ -625,61 +700,70 @@ def test_view_downloads_csv_file(self): class TestCourseOperationView(ViewTest): - url = '/staff/semester/111/courseoperation' - fixtures = ['minimal_test_data'] + url = '/staff/semester/1/courseoperation' @classmethod def setUpTestData(cls): mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) - cls.semester = mommy.make(Semester, pk=111) + cls.semester = mommy.make(Semester, pk=1) - def helper_semester_state_views(self, course_ids, old_state, new_state, operation): - page = self.app.get("/staff/semester/1", user="evap") + def helper_semester_state_views(self, course, old_state, new_state, operation): + page = self.app.get("/staff/semester/1", user="staff") form = page.forms["form_" + old_state] - for course_id in course_ids: - self.assertIn(Course.objects.get(pk=course_id).state, old_state) - form['course'] = course_ids + self.assertIn(course.state, old_state) + form['course'] = course.pk response = form.submit('operation', value=operation) form = response.forms["course-operation-form"] response = form.submit() self.assertIn("Successfully", str(response)) - for course_id in course_ids: - self.assertEqual(Course.objects.get(pk=course_id).state, new_state) + self.assertEqual(Course.objects.get(pk=course.pk).state, new_state) """ The following tests make sure the course state transitions are triggerable via the UI. """ def test_semester_publish(self): - self.helper_semester_state_views([7], "reviewed", "published", "publish") + course = mommy.make(Course, semester=self.semester, state='reviewed') + self.helper_semester_state_views(course, "reviewed", "published", "publish") def test_semester_reset_1(self): - self.helper_semester_state_views([2], "prepared", "new", "revertToNew") + course = mommy.make(Course, semester=self.semester, state='prepared') + self.helper_semester_state_views(course, "prepared", "new", "revertToNew") def test_semester_reset_2(self): - self.helper_semester_state_views([4], "approved", "new", "revertToNew") + course = mommy.make(Course, semester=self.semester, state='approved') + self.helper_semester_state_views(course, "approved", "new", "revertToNew") def test_semester_approve_1(self): - self.helper_semester_state_views([1], "new", "approved", "approve") + course = course = mommy.make(Course, semester=self.semester, state='new') + course.general_contribution.questionnaires = [mommy.make(Questionnaire)] + self.helper_semester_state_views(course, "new", "approved", "approve") def test_semester_approve_2(self): - self.helper_semester_state_views([2], "prepared", "approved", "approve") + course = mommy.make(Course, semester=self.semester, state='prepared') + course.general_contribution.questionnaires = [mommy.make(Questionnaire)] + self.helper_semester_state_views(course, "prepared", "approved", "approve") def test_semester_approve_3(self): - self.helper_semester_state_views([3], "editor_approved", "approved", "approve") + course = mommy.make(Course, semester=self.semester, state='editor_approved') + course.general_contribution.questionnaires = [mommy.make(Questionnaire)] + self.helper_semester_state_views(course, "editor_approved", "approved", "approve") def test_semester_contributor_ready_1(self): - self.helper_semester_state_views([1, 10], "new", "prepared", "prepare") + course = mommy.make(Course, semester=self.semester, state='new') + self.helper_semester_state_views(course, "new", "prepared", "prepare") def test_semester_contributor_ready_2(self): - self.helper_semester_state_views([3], "editor_approved", "prepared", "reenableEditorReview") + course = mommy.make(Course, semester=self.semester, state='editor_approved') + self.helper_semester_state_views(course, "editor_approved", "prepared", "reenableEditorReview") def test_semester_unpublish(self): - self.helper_semester_state_views([8], "published", "reviewed", "unpublish") + course = mommy.make(Course, semester=self.semester, state='published') + self.helper_semester_state_views(course, "published", "reviewed", "unpublish") def test_operation_start_evaluation(self): urloptions = '?course=1&operation=startEvaluation' - mommy.make(Course, pk=1, state='approved', semester=self.semester) + course = mommy.make(Course, state='approved', semester=self.semester) response = self.app.get(self.url + urloptions, user='staff') self.assertEqual(response.status_code, 200, 'url "{}" failed with user "staff"'.format(self.url)) @@ -687,12 +771,12 @@ def test_operation_start_evaluation(self): form = response.forms['course-operation-form'] form.submit() - course = Course.objects.get(pk=1) + course = Course.objects.get(pk=course.pk) self.assertEqual(course.state, 'in_evaluation') def test_operation_prepare(self): urloptions = '?course=1&operation=prepare' - mommy.make(Course, pk=1, state='new', semester=self.semester) + course = mommy.make(Course, state='new', semester=self.semester) response = self.app.get(self.url + urloptions, user='staff') self.assertEqual(response.status_code, 200, 'url "{}" failed with user "staff"'.format(self.url)) @@ -700,7 +784,7 @@ def test_operation_prepare(self): form = response.forms['course-operation-form'] form.submit() - course = Course.objects.get(pk=1) + course = Course.objects.get(pk=course.pk) self.assertEqual(course.state, 'prepared') @@ -793,14 +877,57 @@ class TestCourseEditView(ViewTest): def setUpTestData(cls): mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) semester = mommy.make(Semester, pk=1) - course = mommy.make(Course, semester=semester, pk=1) + degree = mommy.make(Degree) + cls.course = mommy.make(Course, semester=semester, pk=1, degrees=[degree]) + mommy.make(Questionnaire, question_set=[mommy.make(Question)]) + cls.course.general_contribution.questionnaires = [mommy.make(Questionnaire)] # This is necessary so that the call to is_single_result does not fail. + responsible = mommy.make(UserProfile) + cls.contribution = mommy.make(Contribution, course=cls.course, contributor=responsible, responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS) + + def test_edit_course(self): user = mommy.make(UserProfile) - mommy.make(Contribution, course=course, contributor=user, responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS) + page = self.app.get(self.url, user="staff") + + # remove responsibility + form = page.forms["course-form"] + form['contributions-0-contributor'] = user.pk + form['contributions-0-responsibility'] = "RESPONSIBLE" + page = form.submit("operation", value="save") + self.assertEqual(list(self.course.responsible_contributors), [user]) - def test_single_result(self): - pass # TODO: Should be done. + def test_remove_responsibility(self): + page = self.app.get(self.url, user="staff") + + # remove responsibility + form = page.forms["course-form"] + form['contributions-0-responsibility'] = "CONTRIBUTOR" + page = form.submit("operation", value="save") + + self.assertIn("No responsible contributors found", page) + + +class TestSingleResultEditView(ViewTest): + url = '/staff/semester/1/course/1/edit' + test_users = ['staff'] + + @classmethod + def setUpTestData(cls): + mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) + semester = mommy.make(Semester, pk=1) + + course = mommy.make(Course, semester=semester, pk=1) + responsible = mommy.make(UserProfile) + contribution = mommy.make(Contribution, course=course, contributor=responsible, responsible=True, can_edit=True, + comment_visibility=Contribution.ALL_COMMENTS, questionnaires=[Questionnaire.single_result_questionnaire()]) + + question = Questionnaire.single_result_questionnaire().question_set.get() + mommy.make(RatingAnswerCounter, question=question, contribution=contribution, answer=1, count=5) + mommy.make(RatingAnswerCounter, question=question, contribution=contribution, answer=2, count=15) + mommy.make(RatingAnswerCounter, question=question, contribution=contribution, answer=3, count=40) + mommy.make(RatingAnswerCounter, question=question, contribution=contribution, answer=4, count=60) + mommy.make(RatingAnswerCounter, question=question, contribution=contribution, answer=5, count=30) class TestCoursePreviewView(ViewTest): @@ -1102,7 +1229,6 @@ def test_changes_old_title(self): self.assertTrue(Questionnaire.objects.filter(name_de=new_name_de, name_en=new_name_en).exists()) def test_no_second_update(self): - # First save. page = self.app.get(url=self.url, user='staff') form = page.forms['questionnaire-form'] @@ -1117,6 +1243,111 @@ def test_no_second_update(self): self.assertEqual(page.location, '/staff/questionnaire/') +class TestQuestionnaireCreateView(ViewTest): + url = "/staff/questionnaire/create" + test_users = ['staff'] + + @classmethod + def setUpTestData(cls): + mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) + + def test_create_questionnaire(self): + page = self.app.get(self.url, user="staff") + + questionnaire_form = page.forms["questionnaire-form"] + questionnaire_form['name_de'] = "Test Fragebogen" + questionnaire_form['name_en'] = "test questionnaire" + questionnaire_form['public_name_de'] = "Oeffentlicher Test Fragebogen" + questionnaire_form['public_name_en'] = "Public Test Questionnaire" + questionnaire_form['question_set-0-text_de'] = "Frage 1" + questionnaire_form['question_set-0-text_en'] = "Question 1" + questionnaire_form['question_set-0-type'] = "T" + questionnaire_form['index'] = 0 + questionnaire_form.submit().follow() + + # retrieve new questionnaire + questionnaire = Questionnaire.objects.get(name_de="Test Fragebogen", name_en="test questionnaire") + self.assertEqual(questionnaire.question_set.count(), 1) + + def test_create_empty_questionnaire(self): + page = self.app.get(self.url, user="staff") + + questionnaire_form = page.forms["questionnaire-form"] + questionnaire_form['name_de'] = "Test Fragebogen" + questionnaire_form['name_en'] = "test questionnaire" + questionnaire_form['public_name_de'] = "Oeffentlicher Test Fragebogen" + questionnaire_form['public_name_en'] = "Public Test Questionnaire" + questionnaire_form['index'] = 0 + page = questionnaire_form.submit() + + self.assertIn("You must have at least one of these", page) + + self.assertFalse(Questionnaire.objects.filter(name_de="Test Fragebogen", name_en="test questionnaire").exists()) + + +class TestQuestionnaireIndexView(ViewTest): + url = "/staff/questionnaire/" + test_users = ['staff'] + + @classmethod + def setUpTestData(cls): + mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) + mommy.make(Questionnaire, is_for_contributors=True) + mommy.make(Questionnaire, is_for_contributors=False) + + +class TestQuestionnaireEditView(ViewTest): + url = '/staff/questionnaire/2/edit' + test_users = ['staff'] + + @classmethod + def setUpTestData(cls): + questionnaire = mommy.make(Questionnaire, id=2) + mommy.make(Question, questionnaire=questionnaire) + mommy.make(UserProfile, username="staff", groups=[Group.objects.get(name="Staff")]) + + +class TestQuestionnaireViewView(ViewTest): + url = '/staff/questionnaire/2' + test_users = ['staff'] + + @classmethod + def setUpTestData(cls): + questionnaire = mommy.make(Questionnaire, id=2) + mommy.make(Question, questionnaire=questionnaire, type='T') + mommy.make(Question, questionnaire=questionnaire, type='G') + mommy.make(Question, questionnaire=questionnaire, type='L') + mommy.make(UserProfile, username="staff", groups=[Group.objects.get(name="Staff")]) + + +class TestQuestionnaireCopyView(ViewTest): + url = '/staff/questionnaire/2/copy' + test_users = ['staff'] + + @classmethod + def setUpTestData(cls): + questionnaire = mommy.make(Questionnaire, id=2) + mommy.make(Question, questionnaire=questionnaire) + mommy.make(UserProfile, username="staff", groups=[Group.objects.get(name="Staff")]) + + def test_not_changing_name_fails(self): + response = self.get_submit_assert_200(self.url, "staff") + self.assertIn("already exists", response) + + def test_copy_questionnaire(self): + page = self.app.get(self.url, user="staff") + + questionnaire_form = page.forms["questionnaire-form"] + questionnaire_form['name_de'] = "Test Fragebogen (kopiert)" + questionnaire_form['name_en'] = "test questionnaire (copied)" + questionnaire_form['public_name_de'] = "Oeffentlicher Test Fragebogen (kopiert)" + questionnaire_form['public_name_en'] = "Public Test Questionnaire (copied)" + page = questionnaire_form.submit().follow() + + questionnaire = Questionnaire.objects.get(name_de="Test Fragebogen (kopiert)", name_en="test questionnaire (copied)") + self.assertEqual(questionnaire.question_set.count(), 1) + + class TestQuestionnaireDeletionView(WebTest): url = "/staff/questionnaire/delete" csrf_checks = False @@ -1173,6 +1404,25 @@ def test_course_type_form(self): self.assertTrue(CourseType.objects.filter(name_de="Test", name_en="Test").exists()) +class TestCourseTypeMergeSelectionView(ViewTest): + url = "/staff/course_types/merge" + test_users = ['staff'] + + @classmethod + def setUpTestData(cls): + mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) + cls.main_type = mommy.make(CourseType, pk=1, name_en="A course type") + cls.other_type = mommy.make(CourseType, pk=2, name_en="Obsolete course type") + + def test_same_course_fails(self): + page = self.get_assert_200(self.url, user="staff") + form = page.forms["course-type-merge-selection-form"] + form["main_type"] = 1 + form["other_type"] = 1 + response = form.submit() + self.assertIn("You must select two different course types", str(response)) + + class TestCourseTypeMergeView(ViewTest): url = "/staff/course_types/1/merge/2" test_users = ['staff'] @@ -1223,6 +1473,10 @@ def test_review_actions(self): class ArchivingTests(WebTest): + @classmethod + def setUpTestData(cls): + mommy.make(UserProfile, username="staff", groups=[Group.objects.get(name="Staff")]) + def test_raise_403(self): """ Tests whether inaccessible views on archived semesters/courses correctly raise a 403. @@ -1231,10 +1485,10 @@ def test_raise_403(self): semester_url = "/staff/semester/{}/".format(semester.pk) - self.get_assert_403(semester_url + "import", "evap") - self.get_assert_403(semester_url + "assign", "evap") - self.get_assert_403(semester_url + "course/create", "evap") - self.get_assert_403(semester_url + "courseoperation", "evap") + self.get_assert_403(semester_url + "import", "staff") + self.get_assert_403(semester_url + "assign", "staff") + self.get_assert_403(semester_url + "course/create", "staff") + self.get_assert_403(semester_url + "courseoperation", "staff") class TestTemplateEditView(ViewTest):
Remove test_coverage and test_usecases test_coverage contains some "real" tests which should be moved to appropriate places, and some tests that don't really test anything which should be removed. test_usecases has tests that basically start on the main page, navigate to some view and then test that view. we should probably remove the navigating and make ordinary view tests out of them. successor to #707
2017-08-14T16:31:53
e-valuation/EvaP
996
e-valuation__EvaP-996
[ "891" ]
80bc83a778eed8607cb4a3c102a49ca7489a166c
diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -138,51 +138,48 @@ def semester_course_operation(request, semester_id): raise_permission_denied_if_archived(semester) operation = request.GET.get('operation') - if operation not in ['revertToNew', 'prepare', 'reenableEditorReview', 'approve', 'startEvaluation', 'publish', 'unpublish']: - messages.error(request, _("Unsupported operation: ") + str(operation)) + if operation not in ['prepared->new', 'approved->new', 'new->prepared', 'new->approved', + 'prepared->approved', 'editor_approved->approved', 'editor_approved->prepared', + 'approved->in_evaluation', 'reviewed->published', 'published->reviewed']: + raise SuspiciousOperation("Unknown operation: " + operation) + + old_state = operation.split('->')[0] + target_state = operation.split('->')[1] + + course_ids = (request.GET if request.method == 'GET' else request.POST).getlist('course') + courses = Course.objects.filter(id__in=course_ids) + + if any(course.state != old_state for course in courses): + messages.error(request, _("An error occurred. Please try again.")) return custom_redirect('staff:semester_view', semester_id) if request.method == 'POST': - course_ids = request.POST.getlist('course_ids') - courses = Course.objects.filter(id__in=course_ids) - - # If checkbox is not checked, set template to None + template = None if request.POST.get('send_email') == 'on': - template = EmailTemplate(subject=request.POST["email_subject"], body=request.POST["email_body"]) - else: - template = None + template = EmailTemplate(subject=request.POST['email_subject'], body=request.POST['email_body']) - if operation == 'revertToNew': + if target_state == 'new': helper_semester_course_operation_revert(request, courses) - elif operation == 'prepare' or operation == 'reenableEditorReview': + elif target_state == 'prepared': helper_semester_course_operation_prepare(request, courses, template) - elif operation == 'approve': + elif target_state == 'approved': helper_semester_course_operation_approve(request, courses) - elif operation == 'startEvaluation': + elif target_state == 'in_evaluation': helper_semester_course_operation_start(request, courses, template) - elif operation == 'publish': + elif target_state == 'published': helper_semester_course_operation_publish(request, courses, template) - elif operation == 'unpublish': + elif target_state == 'reviewed': helper_semester_course_operation_unpublish(request, courses) return custom_redirect('staff:semester_view', semester_id) - course_ids = request.GET.getlist('course') - courses = Course.objects.filter(id__in=course_ids) - - # Set new state, and set email template for possible editing. + # If necessary, filter courses and set email template for possible editing email_template = None if courses: - current_state_name = STATES_ORDERED[courses[0].state] - if operation == 'revertToNew': - new_state_name = STATES_ORDERED['new'] - - elif operation == 'prepare' or operation == 'reenableEditorReview': - new_state_name = STATES_ORDERED['prepared'] + if target_state == 'prepared': email_template = EmailTemplate.objects.get(name=EmailTemplate.EDITOR_REVIEW_NOTICE) - elif operation == 'approve': - new_state_name = STATES_ORDERED['approved'] + elif target_state == 'approved': # remove courses without questionnaires on general contribution, warn about courses with missing questionnaires courses_with_enough_questionnaires = [course for course in courses if course.general_contribution_has_questionnaires] courses_with_missing_questionnaires = [course for course in courses_with_enough_questionnaires if not course.all_contributions_have_questionnaires] @@ -201,8 +198,7 @@ def semester_course_operation(request, semester_id): '%(courses)d courses do not have a questionnaire assigned for every contributor. They can be approved anyway.', len(courses_with_missing_questionnaires)) % {'courses': len(courses_with_missing_questionnaires)}) - elif operation == 'startEvaluation': - new_state_name = STATES_ORDERED['in_evaluation'] + elif target_state == 'in_evaluation': # remove courses with vote_end_date in the past courses_end_in_future = [course for course in courses if course.vote_end_date >= date.today()] difference = len(courses) - len(courses_end_in_future) @@ -213,13 +209,9 @@ def semester_course_operation(request, semester_id): difference) % {'courses': difference}) email_template = EmailTemplate.objects.get(name=EmailTemplate.EVALUATION_STARTED) - elif operation == 'publish': - new_state_name = STATES_ORDERED['published'] + elif target_state == 'published': email_template = EmailTemplate.objects.get(name=EmailTemplate.PUBLISHING_NOTICE) - elif operation == 'unpublish': - new_state_name = STATES_ORDERED['reviewed'] - if not courses: messages.warning(request, _("Please select at least one course.")) return custom_redirect('staff:semester_view', semester_id) @@ -228,8 +220,8 @@ def semester_course_operation(request, semester_id): semester=semester, courses=courses, operation=operation, - current_state_name=current_state_name, - new_state_name=new_state_name, + current_state_name=STATES_ORDERED[old_state], + new_state_name=STATES_ORDERED[target_state], email_template=email_template, show_email_checkbox=email_template is not None )
diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -707,7 +707,8 @@ def setUpTestData(cls): mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) cls.semester = mommy.make(Semester, pk=1) - def helper_semester_state_views(self, course, old_state, new_state, operation): + def helper_semester_state_views(self, course, old_state, new_state): + operation = old_state + "->" + new_state page = self.app.get("/staff/semester/1", user="staff") form = page.forms["form_" + old_state] self.assertIn(course.state, old_state) @@ -724,45 +725,45 @@ def helper_semester_state_views(self, course, old_state, new_state, operation): """ def test_semester_publish(self): course = mommy.make(Course, semester=self.semester, state='reviewed') - self.helper_semester_state_views(course, "reviewed", "published", "publish") + self.helper_semester_state_views(course, "reviewed", "published") def test_semester_reset_1(self): course = mommy.make(Course, semester=self.semester, state='prepared') - self.helper_semester_state_views(course, "prepared", "new", "revertToNew") + self.helper_semester_state_views(course, "prepared", "new") def test_semester_reset_2(self): course = mommy.make(Course, semester=self.semester, state='approved') - self.helper_semester_state_views(course, "approved", "new", "revertToNew") + self.helper_semester_state_views(course, "approved", "new") def test_semester_approve_1(self): course = course = mommy.make(Course, semester=self.semester, state='new') course.general_contribution.questionnaires = [mommy.make(Questionnaire)] - self.helper_semester_state_views(course, "new", "approved", "approve") + self.helper_semester_state_views(course, "new", "approved") def test_semester_approve_2(self): course = mommy.make(Course, semester=self.semester, state='prepared') course.general_contribution.questionnaires = [mommy.make(Questionnaire)] - self.helper_semester_state_views(course, "prepared", "approved", "approve") + self.helper_semester_state_views(course, "prepared", "approved") def test_semester_approve_3(self): course = mommy.make(Course, semester=self.semester, state='editor_approved') course.general_contribution.questionnaires = [mommy.make(Questionnaire)] - self.helper_semester_state_views(course, "editor_approved", "approved", "approve") + self.helper_semester_state_views(course, "editor_approved", "approved") def test_semester_contributor_ready_1(self): course = mommy.make(Course, semester=self.semester, state='new') - self.helper_semester_state_views(course, "new", "prepared", "prepare") + self.helper_semester_state_views(course, "new", "prepared") def test_semester_contributor_ready_2(self): course = mommy.make(Course, semester=self.semester, state='editor_approved') - self.helper_semester_state_views(course, "editor_approved", "prepared", "reenableEditorReview") + self.helper_semester_state_views(course, "editor_approved", "prepared") def test_semester_unpublish(self): course = mommy.make(Course, semester=self.semester, state='published') - self.helper_semester_state_views(course, "published", "reviewed", "unpublish") + self.helper_semester_state_views(course, "published", "reviewed") def test_operation_start_evaluation(self): - urloptions = '?course=1&operation=startEvaluation' + urloptions = '?course=1&operation=approved->in_evaluation' course = mommy.make(Course, state='approved', semester=self.semester) response = self.app.get(self.url + urloptions, user='staff') @@ -775,7 +776,7 @@ def test_operation_start_evaluation(self): self.assertEqual(course.state, 'in_evaluation') def test_operation_prepare(self): - urloptions = '?course=1&operation=prepare' + urloptions = '?course=1&operation=new->prepared' course = mommy.make(Course, state='new', semester=self.semester) response = self.app.get(self.url + urloptions, user='staff')
Operations on courses can be started and might result in an TransitionNotAllowed error. When doing operations on courses twice, or by manually building URLs one can access course operations forms that should not be accessible. e.g. http://localhost:8000/staff/semester/21/courseoperation?course=1614&operation=startEvaluation On submitting the form we get an TransitionNotAllowed error if this operation was completed previously. This broken state should already be caught when rendering the form the first time
2017-08-14T20:29:39
e-valuation/EvaP
998
e-valuation__EvaP-998
[ "974", "974" ]
1d71e4efcd34d01f28e30c6026c8dcc708921193
diff --git a/evap/staff/tools.py b/evap/staff/tools.py --- a/evap/staff/tools.py +++ b/evap/staff/tools.py @@ -7,7 +7,7 @@ from django.http import HttpResponseRedirect from django.core.cache import cache from django.core.cache.utils import make_template_fragment_key -from django.core.exceptions import SuspiciousOperation +from django.core.exceptions import SuspiciousOperation, PermissionDenied from django.db import transaction from django.conf import settings from django.utils.translation import ugettext_lazy as _ @@ -18,6 +18,21 @@ from evap.results.tools import calculate_results +def get_parameter_from_url_or_session(request, parameter): + result = request.GET.get(parameter, None) + if result is None: # if no parameter is given take session value + result = request.session.get(parameter, False) # defaults to False if no session value exists + else: + result = {'true': True, 'false': False}.get(result.lower()) # convert parameter to boolean + request.session[parameter] = result # store value for session + return result + + +def raise_permission_denied_if_archived(archiveable): + if archiveable.is_archived: + raise PermissionDenied + + def forward_messages(request, success_messages, warnings): for message in success_messages: messages.success(request, message) diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -33,16 +33,12 @@ SingleResultForm, TextAnswerForm, UserBulkDeleteForm, UserForm, UserImportForm, UserMergeSelectionForm) from evap.staff.importers import EnrollmentImporter, UserImporter, PersonImporter from evap.staff.tools import (bulk_delete_users, custom_redirect, delete_import_file, delete_navbar_cache, forward_messages, - get_import_file_content_or_raise, import_file_exists, merge_users, save_import_file) + get_import_file_content_or_raise, import_file_exists, merge_users, save_import_file, + raise_permission_denied_if_archived, get_parameter_from_url_or_session) from evap.student.forms import QuestionsForm from evap.student.views import vote_preview -def raise_permission_denied_if_archived(archiveable): - if archiveable.is_archived: - raise PermissionDenied - - @staff_required def index(request): template_data = dict(semesters=Semester.objects.all(), @@ -729,14 +725,8 @@ def course_comments(request, semester_id, course_id): semester = get_object_or_404(Semester, id=semester_id) course = get_object_or_404(Course, id=course_id, semester=semester) - filter_arg = request.GET.get('filter', None) - if filter_arg is None: # if no parameter is given take session value - filter_arg = request.session.get('filter_comments', False) # defaults to False if no session value exists - else: - filter_arg = {'true': True, 'false': False}.get(filter_arg.lower()) # convert parameter to boolean - request.session['filter_comments'] = filter_arg # store value for session - - filter_states = [TextAnswer.NOT_REVIEWED] if filter_arg else None + filter_comments = get_parameter_from_url_or_session(request, "filter_comments") + filter_states = [TextAnswer.NOT_REVIEWED] if filter_comments else None course_sections = [] contributor_sections = [] @@ -751,7 +741,8 @@ def course_comments(request, semester_id, course_id): section_list = course_sections if contribution.is_general else contributor_sections section_list.append(CommentSection(questionnaire, contribution.contributor, contribution.label, contribution.responsible, text_results)) - template_data = dict(semester=semester, course=course, course_sections=course_sections, contributor_sections=contributor_sections, filter_arg=filter_arg) + template_data = dict(semester=semester, course=course, course_sections=course_sections, + contributor_sections=contributor_sections, filter_comments=filter_comments) return render(request, "staff_course_comments.html", template_data) @@ -817,10 +808,20 @@ def course_preview(request, semester_id, course_id): @staff_required def questionnaire_index(request): + filter_questionnaires = get_parameter_from_url_or_session(request, "filter_questionnaires") + questionnaires = Questionnaire.objects.all() + if filter_questionnaires: + questionnaires = questionnaires.filter(obsolete=False) + course_questionnaires = questionnaires.filter(is_for_contributors=False) contributor_questionnaires = questionnaires.filter(is_for_contributors=True) - template_data = dict(course_questionnaires=course_questionnaires, contributor_questionnaires=contributor_questionnaires) + + template_data = dict( + course_questionnaires=course_questionnaires, + contributor_questionnaires=contributor_questionnaires, + filter_questionnaires=filter_questionnaires, + ) return render(request, "staff_questionnaire_index.html", template_data) @@ -1070,14 +1071,9 @@ def course_type_merge(request, main_type_id, other_type_id): @staff_required def user_index(request): - filter_arg = request.GET.get('filter', None) - if filter_arg is None: # if no parameter is given take session value - filter_arg = request.session.get('filter_users', True) # defaults to True if no session value exists - else: - filter_arg = {'true': True, 'false': False}.get(filter_arg.lower()) # convert parameter to boolean - request.session['filter_users'] = filter_arg # store value for session + filter_users = get_parameter_from_url_or_session(request, "filter_users") - if filter_arg: + if filter_users: users = UserProfile.objects.exclude_inactive_users() else: users = UserProfile.objects.all() @@ -1092,7 +1088,7 @@ def user_index(request): .annotate(is_grade_publisher=ExpressionWrapper(Q(grade_publisher_group_count__exact=1), output_field=BooleanField())) .prefetch_related('contributions', 'courses_participating_in', 'courses_participating_in__semester', 'represented_users', 'ccing_users')) - return render(request, "staff_user_index.html", dict(users=users, filter_arg=filter_arg)) + return render(request, "staff_user_index.html", dict(users=users, filter_users=filter_users)) @staff_required
Hide obsolete questionnaires Obsolete questionnaires should be hidden in the staff overview list and only be shown if the user wants to see them (e.g. like the view for reviewing comments handles already reviewed answers). Hide obsolete questionnaires Obsolete questionnaires should be hidden in the staff overview list and only be shown if the user wants to see them (e.g. like the view for reviewing comments handles already reviewed answers).
2017-08-21T15:38:15
e-valuation/EvaP
1,006
e-valuation__EvaP-1006
[ "856" ]
d8cb0f879e8e46e51da60fc04fd0497ab9a96b33
diff --git a/evap/student/forms.py b/evap/student/forms.py --- a/evap/student/forms.py +++ b/evap/student/forms.py @@ -1,9 +1,8 @@ from django import forms -from evap.student.tools import make_form_identifier +from evap.student.tools import question_id from evap.evaluation.tools import LIKERT_NAMES, GRADE_NAMES, POSITIVE_YES_NO_NAMES, NEGATIVE_YES_NO_NAMES - LIKERT_CHOICES = [(str(k), v) for k, v in LIKERT_NAMES.items()] GRADE_CHOICES = [(str(k), v) for k, v in GRADE_NAMES.items()] POSITIVE_YES_NO_CHOICES = [(str(k), v) for k, v in POSITIVE_YES_NO_NAMES.items()] @@ -47,9 +46,10 @@ def __init__(self, *args, contribution, questionnaire, **kwargs): coerce=int, **field_args) - identifier = make_form_identifier(contribution, - questionnaire, - question) + identifier = question_id(contribution, + questionnaire, + question) + self.fields[identifier] = field def caption(self): diff --git a/evap/student/tools.py b/evap/student/tools.py --- a/evap/student/tools.py +++ b/evap/student/tools.py @@ -1,4 +1,4 @@ -def make_form_identifier(contribution, questionnaire, question): +def question_id(contribution, questionnaire, question): """Generates a form field identifier for voting forms using the given parameters.""" diff --git a/evap/student/views.py b/evap/student/views.py --- a/evap/student/views.py +++ b/evap/student/views.py @@ -11,7 +11,7 @@ from evap.evaluation.tools import STUDENT_STATES_ORDERED from evap.student.forms import QuestionsForm -from evap.student.tools import make_form_identifier +from evap.student.tools import question_id @participant_required @@ -96,7 +96,7 @@ def vote(request, course_id): for questionnaire_form in form_group: questionnaire = questionnaire_form.questionnaire for question in questionnaire.question_set.all(): - identifier = make_form_identifier(contribution, questionnaire, question) + identifier = question_id(contribution, questionnaire, question) value = questionnaire_form.cleaned_data.get(identifier) if question.is_text_question:
diff --git a/evap/evaluation/fixtures/minimal_test_data.json b/evap/evaluation/fixtures/minimal_test_data.json deleted file mode 100644 --- a/evap/evaluation/fixtures/minimal_test_data.json +++ /dev/null @@ -1,1686 +0,0 @@ -[ -{ - "pk": 1, - "model": "evaluation.semester", - "fields": { - "created_at": "2014-09-16", - "is_archived": false, - "name_de": "testsemester", - "name_en": "testsemester" - } -}, -{ - "pk": 2, - "model": "evaluation.semester", - "fields": { - "created_at": "2014-09-16", - "is_archived": false, - "name_de": "empty_semester", - "name_en": "emtpy_semester" - } -}, -{ - "pk": 3, - "model": "evaluation.semester", - "fields": { - "created_at": "2014-11-16", - "is_archived": false, - "name_de": "Test2", - "name_en": "Test2" - } -}, -{ - "pk": 1, - "model": "evaluation.questionnaire", - "fields": { - "public_name_de": "the person", - "is_for_contributors": true, - "teaser_en": "answer questions regarding a person here", - "index": 0, - "teaser_de": "answer questions regarding a person here", - "public_name_en": "the person", - "description_en": "person_questionnaire description", - "obsolete": false, - "name_de": "person_questionnaire", - "description_de": "person_questionnaire description", - "name_en": "person_questionnaire" - } -}, -{ - "pk": 2, - "model": "evaluation.questionnaire", - "fields": { - "public_name_de": "the course", - "is_for_contributors": false, - "teaser_en": "answer questions regarding a course here", - "index": 0, - "teaser_de": "answer questions regarding a course here", - "public_name_en": "the course", - "description_en": "course_questionnaire description", - "obsolete": false, - "name_de": "course_questionnaire", - "description_de": "course_questionnaire description", - "name_en": "course_questionnaire" - } -}, -{ - "pk": 3, - "model": "evaluation.questionnaire", - "fields": { - "public_name_de": "unused", - "is_for_contributors": false, - "teaser_en": "answer questions regarding a course here", - "index": 0, - "teaser_de": "answer questions regarding a course here", - "public_name_en": "unused", - "description_en": "course_questionnaire description", - "obsolete": false, - "name_de": "unused", - "description_de": "course_questionnaire description", - "name_en": "unused" - } -}, -{ - "pk": 4, - "model": "evaluation.questionnaire", - "fields": { - "public_name_de": "unused_obsolete", - "is_for_contributors": false, - "teaser_en": "answer questions regarding a course here", - "index": 0, - "teaser_de": "answer questions regarding a course here", - "public_name_en": "unused_obsolete", - "description_en": "course_questionnaire description", - "obsolete": true, - "name_de": "unused_obsolete", - "description_de": "course_questionnaire description", - "name_en": "unused_obsolete" - } -}, -{ - "pk":5, - "model":"evaluation.questionnaire", - "fields":{ - "name_de": "Einzelergebnis", - "name_en": "Single result", - "index": 0, - "is_for_contributors": true, - "obsolete": true - } -}, -{ - "pk": 1, - "model": "evaluation.question", - "fields": { - "questionnaire": 1, - "text_en": "how?", - "text_de": "how?", - "type": "T" - } -}, -{ - "pk": 2, - "model": "evaluation.question", - "fields": { - "questionnaire": 1, - "text_en": "how much?", - "text_de": "how much?", - "type": "L" - } -}, -{ - "pk": 3, - "model": "evaluation.question", - "fields": { - "questionnaire": 2, - "text_en": "how?", - "text_de": "how?", - "type": "T" - } -}, -{ - "pk": 4, - "model": "evaluation.question", - "fields": { - "questionnaire": 2, - "text_en": "how much?", - "text_de": "how much?", - "type": "L" - } -}, -{ - "pk": 5, - "model": "evaluation.question", - "fields": { - "questionnaire": 2, - "text_en": "your grade", - "text_de": "your grade", - "type": "G" - } -}, -{ - "pk": 6, - "model": "evaluation.question", - "fields": { - "questionnaire": 3, - "text_en": "your grade", - "text_de": "your grade", - "type": "G" - } -}, -{ - "pk": 7, - "model": "evaluation.question", - "fields": { - "questionnaire": 5, - "text_en": "single result", - "text_de": "single result", - "type": "G" - } -}, -{ - "pk": 1, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 18, - "question": 2, - "answer": 1, - "count": 1 - } -}, -{ - "pk": 2, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 17, - "question": 4, - "answer": 1, - "count": 1 - } -}, -{ - "pk": 3, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 20, - "question": 2, - "answer": 1, - "count": 1 - } -}, -{ - "pk": 4, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 22, - "question": 2, - "answer": 1, - "count": 1 - } -}, -{ - "pk": 5, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 21, - "question": 4, - "answer": 1, - "count": 1 - } -}, -{ - "pk": 6, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 24, - "question": 2, - "answer": 1, - "count": 1 - } -}, -{ - "pk": 7, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 26, - "question": 2, - "answer": 1, - "count": 1 - } -}, -{ - "pk": 8, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 25, - "question": 4, - "answer": 1, - "count": 1 - } -}, -{ - "pk": 9, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 28, - "question": 2, - "answer": 1, - "count": 1 - } -}, -{ - "pk": 10, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 30, - "question": 2, - "answer": 1, - "count": 1 - } -}, -{ - "pk": 11, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 29, - "question": 4, - "answer": 1, - "count": 1 - } -}, -{ - "pk": 12, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 32, - "question": 2, - "answer": 1, - "count": 1 - } -}, -{ - "pk": 13, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 17, - "question": 5, - "answer": 2, - "count": 1 - } -}, -{ - "pk": 14, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 21, - "question": 5, - "answer": 2, - "count": 1 - } -}, -{ - "pk": 15, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 25, - "question": 5, - "answer": 2, - "count": 1 - } -}, -{ - "pk": 16, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 29, - "question": 5, - "answer": 2, - "count": 1 - } -}, -{ - "pk": 17, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 40, - "question": 7, - "answer": 1, - "count": 5 - } -}, -{ - "pk": 18, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 40, - "question": 7, - "answer": 2, - "count": 1 - } -}, -{ - "pk": 19, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 40, - "question": 7, - "answer": 3, - "count": 1 - } -}, -{ - "pk": 20, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 40, - "question": 7, - "answer": 4, - "count": 1 - } -}, -{ - "pk": 21, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 40, - "question": 7, - "answer": 5, - "count": 1 - } -}, -{ - "pk": 22, - "model": "evaluation.ratinganswercounter", - "fields": { - "contribution": 40, - "question": 7, - "answer": 6, - "count": 1 - } -}, -{ - "pk": 1, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": null, - "question": 1, - "original_answer": "sdfg", - "contribution": 18, - "state": "NR" - } -}, -{ - "pk": 2, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": "censored!", - "question": 3, - "original_answer": "asdf", - "contribution": 17, - "state": "PU" - } -}, -{ - "pk": 3, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": null, - "question": 1, - "original_answer": "sdfg", - "contribution": 19, - "state": "HI" - } -}, -{ - "pk": 4, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": null, - "question": 1, - "original_answer": "sdfg", - "contribution": 20, - "state": "NR" - } -}, -{ - "pk": 5, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": null, - "question": 1, - "original_answer": "sdfg", - "contribution": 22, - "state": "NR" - } -}, -{ - "pk": 6, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": "censored!", - "question": 3, - "original_answer": "asdf", - "contribution": 21, - "state": "PU" - } -}, -{ - "pk": 7, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": null, - "question": 1, - "original_answer": "sdfg", - "contribution": 23, - "state": "HI" - } -}, -{ - "pk": 8, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": null, - "question": 1, - "original_answer": "mfj49s1my.45j", - "contribution": 24, - "state": "NR" - } -}, -{ - "pk": 9, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": null, - "question": 1, - "original_answer": "sdfg", - "contribution": 26, - "state": "PU" - } -}, -{ - "pk": 10, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": "censored!", - "question": 3, - "original_answer": "asdf", - "contribution": 25, - "state": "PU" - } -}, -{ - "pk": 11, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": null, - "question": 1, - "original_answer": "sdfg", - "contribution": 27, - "state": "HI" - } -}, -{ - "pk": 12, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": null, - "question": 1, - "original_answer": "sdfg", - "contribution": 28, - "state": "PU" - } -}, -{ - "pk": 13, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": null, - "question": 1, - "original_answer": "sdfg", - "contribution": 30, - "state": "PU" - } -}, -{ - "pk": 14, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": "censored!", - "question": 3, - "original_answer": "asdf", - "contribution": 29, - "state": "PU" - } -}, -{ - "pk": 15, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": null, - "question": 1, - "original_answer": "sdfg", - "contribution": 31, - "state": "HI" - } -}, -{ - "pk": 16, - "model": "evaluation.textanswer", - "fields": { - "reviewed_answer": null, - "question": 1, - "original_answer": "sdfg", - "contribution": 32, - "state": "PU" - } -}, -{ - "pk": 1, - "model": "evaluation.emailtemplate", - "fields": { - "body": "", - "name": "Editor Review Notice", - "subject": "[EvaP] New Course ready for approval" - } -}, -{ - "pk": 2, - "model": "evaluation.emailtemplate", - "fields": { - "body": "", - "name": "Student Reminder", - "subject": "[EvaP] Only 2 days left to evaluate" - } -}, -{ - "pk": 3, - "model": "evaluation.emailtemplate", - "fields": { - "body": "", - "name": "Publishing Notice", - "subject": "[EvaP] A course has been published" - } -}, -{ - "pk": 4, - "model": "evaluation.emailtemplate", - "fields": { - "body": "", - "name": "Login Key Created", - "subject": "[EvaP] A login key was created" - } -}, -{ - "pk": 1, - "model": "evaluation.userprofile", - "fields": { - "username": "evap", - "first_name": "", - "last_name": "", - "last_login": "2014-09-16T22:50:49.207", - "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", - "title": "Prof. Dr.", - "cc_users": [ - 4 - ], - "delegates": [ - 3 - ], - "login_key_valid_until": null, - "login_key": null, - "groups": [1] - } -}, -{ - "pk": 2, - "model": "evaluation.userprofile", - "fields": { - "username": "responsible", - "first_name": "responsible", - "last_name": "user", - "last_login": "2014-09-16T22:51:39.584", - "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", - "title": "", - "cc_users": [], - "delegates": [], - "login_key_valid_until": null, - "login_key": null - } -}, -{ - "pk": 3, - "model": "evaluation.userprofile", - "fields": { - "username": "delegate", - "first_name": "delegate", - "last_name": "user", - "last_login": "2014-09-16T22:52:04.981", - "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", - "title": "", - "cc_users": [], - "delegates": [], - "login_key_valid_until": null, - "login_key": null - } -}, -{ - "pk": 4, - "model": "evaluation.userprofile", - "fields": { - "username": "cc_user", - "first_name": "cc", - "last_name": "user", - "last_login": "2014-09-16T22:52:27.021", - "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", - "title": "", - "cc_users": [], - "delegates": [], - "login_key_valid_until": null, - "login_key": null - } -}, -{ - "pk": 5, - "model": "evaluation.userprofile", - "fields": { - "username": "student", - "first_name": "student", - "last_name": "user", - "last_login": "2014-09-16T22:52:46.611", - "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", - "title": "", - "cc_users": [], - "delegates": [], - "login_key_valid_until": null, - "login_key": null - } -}, -{ - "pk": 6, - "model": "evaluation.userprofile", - "fields": { - "username": "contributor", - "first_name": "contributor", - "last_name": "user", - "last_login": "2014-09-16T22:53:02.506", - "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", - "title": "", - "cc_users": [], - "delegates": [], - "login_key_valid_until": null, - "login_key": null - } -}, -{ - "pk": 7, - "model": "evaluation.userprofile", - "fields": { - "username": "editor", - "first_name": "editor", - "last_name": "user", - "last_login": "2014-09-16T22:53:16.207", - "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", - "title": "", - "cc_users": [], - "delegates": [], - "login_key_valid_until": null, - "login_key": null - } -}, -{ - "pk": 8, - "model": "evaluation.userprofile", - "fields": { - "username": "lazy.student", - "first_name": "lazy student", - "last_name": "user", - "last_login": "2014-09-16T23:01:00.878", - "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", - "title": null, - "cc_users": [], - "delegates": [], - "login_key_valid_until": null, - "login_key": null - } -}, -{ - "pk": 9, - "model": "evaluation.userprofile", - "fields": { - "username": "editor_of_course_1", - "first_name": "can only edit course 1", - "last_name": "user", - "last_login": "2014-09-16T23:01:00.878", - "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", - "title": null, - "cc_users": [], - "delegates": [], - "login_key_valid_until": null, - "login_key": null - } -}, -{ - "pk": 1, - "model": "evaluation.contribution", - "fields": { - "contributor": null, - "course": 1, - "responsible": false, - "questionnaires": [ - 2 - ], - "can_edit": false - } -}, -{ - "pk": 2, - "model": "evaluation.contribution", - "fields": { - "contributor": 2, - "course": 1, - "responsible": true, - "questionnaires": [ - 1 - ], - "can_edit": true, - "comment_visibility": "ALL" - } -}, -{ - "pk": 3, - "model": "evaluation.contribution", - "fields": { - "contributor": 7, - "course": 1, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": true - } -}, -{ - "pk": 4, - "model": "evaluation.contribution", - "fields": { - "contributor": 6, - "course": 1, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": false - } -}, -{ - "pk": 5, - "model": "evaluation.contribution", - "fields": { - "contributor": null, - "course": 2, - "responsible": false, - "questionnaires": [ - 2 - ], - "can_edit": false - } -}, -{ - "pk": 6, - "model": "evaluation.contribution", - "fields": { - "contributor": 2, - "course": 2, - "responsible": true, - "questionnaires": [ - 1 - ], - "can_edit": true, - "comment_visibility": "ALL" - } -}, -{ - "pk": 7, - "model": "evaluation.contribution", - "fields": { - "contributor": 7, - "course": 2, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": true - } -}, -{ - "pk": 8, - "model": "evaluation.contribution", - "fields": { - "contributor": 6, - "course": 2, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": false - } -}, -{ - "pk": 9, - "model": "evaluation.contribution", - "fields": { - "contributor": null, - "course": 3, - "responsible": false, - "questionnaires": [ - 2 - ], - "can_edit": false - } -}, -{ - "pk": 10, - "model": "evaluation.contribution", - "fields": { - "contributor": 2, - "course": 3, - "responsible": true, - "questionnaires": [ - 1 - ], - "can_edit": true, - "comment_visibility": "ALL" - } -}, -{ - "pk": 11, - "model": "evaluation.contribution", - "fields": { - "contributor": 7, - "course": 3, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": true - } -}, -{ - "pk": 12, - "model": "evaluation.contribution", - "fields": { - "contributor": 6, - "course": 3, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": false - } -}, -{ - "pk": 13, - "model": "evaluation.contribution", - "fields": { - "contributor": null, - "course": 4, - "responsible": false, - "questionnaires": [ - 2 - ], - "can_edit": false - } -}, -{ - "pk": 14, - "model": "evaluation.contribution", - "fields": { - "contributor": 2, - "course": 4, - "responsible": true, - "questionnaires": [ - 1 - ], - "can_edit": true, - "comment_visibility": "ALL" - } -}, -{ - "pk": 15, - "model": "evaluation.contribution", - "fields": { - "contributor": 7, - "course": 4, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": true - } -}, -{ - "pk": 16, - "model": "evaluation.contribution", - "fields": { - "contributor": 6, - "course": 4, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": false - } -}, -{ - "pk": 17, - "model": "evaluation.contribution", - "fields": { - "contributor": null, - "course": 5, - "responsible": false, - "questionnaires": [ - 2 - ], - "can_edit": false - } -}, -{ - "pk": 18, - "model": "evaluation.contribution", - "fields": { - "contributor": 2, - "course": 5, - "responsible": true, - "questionnaires": [ - 1 - ], - "can_edit": true, - "comment_visibility": "ALL" - } -}, -{ - "pk": 19, - "model": "evaluation.contribution", - "fields": { - "contributor": 7, - "course": 5, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": true - } -}, -{ - "pk": 20, - "model": "evaluation.contribution", - "fields": { - "contributor": 6, - "course": 5, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": false - } -}, -{ - "pk": 21, - "model": "evaluation.contribution", - "fields": { - "contributor": null, - "course": 6, - "responsible": false, - "questionnaires": [ - 2 - ], - "can_edit": false - } -}, -{ - "pk": 22, - "model": "evaluation.contribution", - "fields": { - "contributor": 2, - "course": 6, - "responsible": true, - "questionnaires": [ - 1 - ], - "can_edit": true, - "comment_visibility": "ALL" - } -}, -{ - "pk": 23, - "model": "evaluation.contribution", - "fields": { - "contributor": 7, - "course": 6, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": true - } -}, -{ - "pk": 24, - "model": "evaluation.contribution", - "fields": { - "contributor": 6, - "course": 6, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": false - } -}, -{ - "pk": 25, - "model": "evaluation.contribution", - "fields": { - "contributor": null, - "course": 7, - "responsible": false, - "questionnaires": [ - 2 - ], - "can_edit": false - } -}, -{ - "pk": 26, - "model": "evaluation.contribution", - "fields": { - "contributor": 2, - "course": 7, - "responsible": true, - "questionnaires": [ - 1 - ], - "can_edit": true, - "comment_visibility": "ALL" - } -}, -{ - "pk": 27, - "model": "evaluation.contribution", - "fields": { - "contributor": 7, - "course": 7, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": true - } -}, -{ - "pk": 28, - "model": "evaluation.contribution", - "fields": { - "contributor": 6, - "course": 7, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": false - } -}, -{ - "pk": 29, - "model": "evaluation.contribution", - "fields": { - "contributor": null, - "course": 8, - "responsible": false, - "questionnaires": [ - 2 - ], - "can_edit": false - } -}, -{ - "pk": 30, - "model": "evaluation.contribution", - "fields": { - "contributor": 2, - "course": 8, - "responsible": true, - "questionnaires": [ - 1 - ], - "can_edit": true, - "comment_visibility": "ALL" - } -}, -{ - "pk": 31, - "model": "evaluation.contribution", - "fields": { - "contributor": 7, - "course": 8, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": true - } -}, -{ - "pk": 32, - "model": "evaluation.contribution", - "fields": { - "contributor": 6, - "course": 8, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": false - } -}, -{ - "pk": 33, - "model": "evaluation.contribution", - "fields": { - "contributor": 9, - "course": 1, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": true - } -}, -{ - "pk": 34, - "model": "evaluation.contribution", - "fields": { - "contributor": 9, - "course": 9, - "responsible": false, - "questionnaires": [ - 1 - ], - "can_edit": true - } -}, -{ - "pk": 35, - "model": "evaluation.contribution", - "fields": { - "contributor": null, - "course": 9, - "responsible": false, - "questionnaires": [ - 2 - ], - "can_edit": false - } -}, -{ - "pk": 36, - "model": "evaluation.contribution", - "fields": { - "contributor": 2, - "course": 9, - "responsible": true, - "questionnaires": [ - 1 - ], - "can_edit": true, - "comment_visibility": "ALL" - } -}, -{ - "pk": 37, - "model": "evaluation.contribution", - "fields": { - "contributor": null, - "course": 10, - "responsible": false, - "questionnaires": [ - 2 - ], - "can_edit": false - } -}, -{ - "pk": 38, - "model": "evaluation.contribution", - "fields": { - "contributor": 2, - "course": 10, - "responsible": true, - "questionnaires": [ - 1 - ], - "can_edit": true, - "comment_visibility": "ALL" - } -}, -{ - "pk": 39, - "model": "evaluation.contribution", - "fields": { - "contributor": null, - "course": 11, - "responsible": false, - "questionnaires": [ - 2 - ], - "can_edit": false - } -}, -{ - "pk": 40, - "model": "evaluation.contribution", - "fields": { - "contributor": 9, - "course": 11, - "responsible": true, - "questionnaires": [ - 5 - ], - "can_edit": true, - "comment_visibility": "ALL" - } -}, -{ - "pk": 1, - "model": "evaluation.degree", - "fields": { - "name_de": "a degree", - "name_en": "a degree" - } -}, -{ - "pk": 1, - "model": "evaluation.coursetype", - "fields": { - "name_de": "a type", - "name_en": "a type" - } -}, -{ - "pk": 2, - "model": "evaluation.coursetype", - "fields": { - "name_de": "Masterprojekt", - "name_en": "Master project" - } -}, -{ - "pk": 3, - "model": "evaluation.coursetype", - "fields": { - "name_de": "Obsoleter Kurstyp", - "name_en": "Obsolete course type" - } -}, -{ - "pk": 1, - "model": "evaluation.course", - "fields": { - "name_de": "a new course", - "_participant_count": null, - "degrees": [1], - "voters": [], - "semester": 1, - "last_modified_time": "2014-09-16T23:01:13.059", - "_voter_count": null, - "state": "new", - "last_modified_user": 1, - "participants": [ - 5, - 8 - ], - "vote_end_date": "2099-12-31", - "name_en": "a course", - "type": 1, - "vote_start_datetime": "2014-09-10" - } -}, -{ - "pk": 2, - "model": "evaluation.course", - "fields": { - "name_de": "a prepared course", - "_participant_count": null, - "degrees": [1], - "voters": [], - "semester": 1, - "last_modified_time": "2014-09-16T23:01:13.059", - "_voter_count": null, - "state": "prepared", - "last_modified_user": 1, - "participants": [ - 5, - 8 - ], - "vote_end_date": "2014-09-30", - "name_en": "a prepared course", - "type": 1, - "vote_start_datetime": "2014-09-10" - } -}, -{ - "pk": 3, - "model": "evaluation.course", - "fields": { - "name_de": "an editor approved course", - "_participant_count": null, - "degrees": [1], - "voters": [], - "semester": 1, - "last_modified_time": "2014-09-16T23:01:13.059", - "_voter_count": null, - "state": "editor_approved", - "last_modified_user": 1, - "participants": [ - 5, - 8 - ], - "vote_end_date": "2014-09-30", - "name_en": "an editor approved course", - "type": 1, - "vote_start_datetime": "2014-09-10" - } -}, -{ - "pk": 4, - "model": "evaluation.course", - "fields": { - "name_de": "an approved course", - "_participant_count": null, - "degrees": [1], - "voters": [], - "semester": 1, - "last_modified_time": "2014-09-16T23:01:13.059", - "_voter_count": null, - "state": "approved", - "last_modified_user": 1, - "participants": [ - 5, - 8 - ], - "vote_end_date": "2014-09-30", - "name_en": "an approved course", - "type": 1, - "vote_start_datetime": "2014-09-10" - } -}, -{ - "pk": 5, - "model": "evaluation.course", - "fields": { - "name_de": "an in evaluation course", - "_participant_count": null, - "degrees": [1], - "voters": [ - 5 - ], - "semester": 1, - "last_modified_time": "2014-09-16T23:01:13.059", - "_voter_count": null, - "state": "in_evaluation", - "last_modified_user": 1, - "participants": [ - 5, - 8 - ], - "vote_end_date": "2099-09-30", - "name_en": "an in evaluation course", - "type": 1, - "vote_start_datetime": "2014-09-10" - } -}, -{ - "pk": 6, - "model": "evaluation.course", - "fields": { - "name_de": "an evaluated course", - "_participant_count": null, - "degrees": [1], - "voters": [ - 5 - ], - "semester": 1, - "last_modified_time": "2014-09-16T23:01:13.059", - "_voter_count": null, - "state": "evaluated", - "last_modified_user": 1, - "participants": [ - 5, - 8 - ], - "vote_end_date": "2014-09-30", - "name_en": "an evaluated course", - "type": 1, - "vote_start_datetime": "2014-09-10" - } -}, -{ - "pk": 7, - "model": "evaluation.course", - "fields": { - "name_de": "a reviewed course", - "_participant_count": null, - "degrees": [1], - "voters": [ - 5 - ], - "semester": 1, - "last_modified_time": "2014-09-16T23:01:13.059", - "_voter_count": null, - "state": "reviewed", - "last_modified_user": 1, - "participants": [ - 5, - 8 - ], - "vote_end_date": "2014-09-30", - "name_en": "a reviewed course", - "type": 1, - "vote_start_datetime": "2014-09-10" - } -}, -{ - "pk": 8, - "model": "evaluation.course", - "fields": { - "name_de": "a published course", - "_participant_count": null, - "degrees": [1], - "voters": [ - 5 - ], - "semester": 1, - "last_modified_time": "2014-09-16T23:01:13.059", - "_voter_count": null, - "state": "published", - "last_modified_user": 1, - "participants": [ - 5, - 8 - ], - "vote_end_date": "2014-09-30", - "name_en": "a published course", - "type": 1, - "vote_start_datetime": "2014-09-10" - } -}, -{ - "pk": 9, - "model": "evaluation.course", - "fields": { - "name_de": "dasdadsadas", - "_participant_count": null, - "degrees": [1], - "voters": [], - "semester": 3, - "last_modified_time": "2014-11-16T17:28:28.457", - "_voter_count": null, - "state": "in_evaluation", - "last_modified_user": 1, - "participants": [5], - "vote_end_date": "2099-11-20", - "name_en": "dadas", - "type": 3, - "vote_start_datetime": "2014-11-07" - } -}, -{ - "pk": 10, - "model": "evaluation.course", - "fields": { - "name_de": "another new course", - "_participant_count": null, - "degrees": [1], - "voters": [], - "semester": 1, - "last_modified_time": "2014-09-16T23:01:13.059", - "_voter_count": null, - "state": "new", - "last_modified_user": 1, - "participants": [ - 5, - 8 - ], - "vote_end_date": "2099-12-31", - "name_en": "another new course", - "type": 1, - "vote_start_datetime": "2014-09-10" - } -}, -{ - "pk": 11, - "model": "evaluation.course", - "fields": { - "name_de": "single result course", - "_participant_count": null, - "degrees": [1], - "voters": [], - "semester": 1, - "last_modified_time": "2014-09-16T23:01:13.059", - "_voter_count": null, - "state": "reviewed", - "last_modified_user": 1, - "participants": [], - "vote_end_date": "2014-09-10", - "name_en": "single result course", - "type": 1, - "vote_start_datetime": "2014-09-10" - } -}, -{ - "pk": 1, - "model": "evaluation.faqsection", - "fields": { - "order": 0, - "title_de": "testsection", - "title_en": "testsection" - } -}, -{ - "pk": 1, - "model": "evaluation.faqquestion", - "fields": { - "section": 1, - "order": 0, - "question_de": "testquestion", - "question_en": "testquestion", - "answer_de": "testanswer", - "answer_en": "testanswer" - } -}, -{ - "pk": 1, - "model": "auth.Group", - "fields": { - "name": "Staff" - } -}, -{ - "pk": 2, - "model": "auth.Group", - "fields": { - "name": "Reviewer" - } -}, -{ - "pk": 3, - "model": "auth.Group", - "fields": { - "name": "Grade publisher" - } -}, -{ - "pk": 1, - "model": "rewards.rewardpointredemptionevent", - "fields": { - "date": "2099-12-19", - "redeem_end_date": "2099-12-10", - "name": "TestEvent" - } -}, -{ - "pk": 1, - "model": "rewards.rewardpointgranting", - "fields": { - "user_profile": 5, - "semester": 1, - "granting_time": "2014-11-15", - "value": 5 - } -}, -{ - "pk": 1, - "model": "rewards.RewardPointRedemptionEvent", - "fields": { - "name": "TestEvent", - "date": "2015-01-01", - "redeem_end_date": "2099-12-10" - } -}, - { - "pk": 2, - "model": "rewards.RewardPointRedemptionEvent", - "fields": { - "name": "TestEvent_canDelete", - "date": "2015-01-01", - "redeem_end_date": "2099-12-10" - } -}, -{ - "pk": 1, - "model": "rewards.rewardpointredemption", - "fields": { - "user_profile": 5, - "redemption_time": "2014-11-16", - "value": 2, - "event": 1 - } -}, -{ - "pk": 1, - "model": "rewards.semesteractivation", - "fields": { - "semester": 3, - "is_active": false - } -} -] diff --git a/evap/student/tests/test_views.py b/evap/student/tests/test_views.py --- a/evap/student/tests/test_views.py +++ b/evap/student/tests/test_views.py @@ -1,9 +1,11 @@ +from django.contrib.auth.models import Group from django.test.utils import override_settings from django.urls import reverse from model_mommy import mommy -from evap.evaluation.models import UserProfile, Course, Questionnaire, Question, Contribution +from evap.evaluation.models import UserProfile, Course, Questionnaire, Question, Contribution, TextAnswer, RatingAnswerCounter from evap.evaluation.tests.tools import WebTest, ViewTest +from evap.student.tools import question_id class TestStudentIndexView(ViewTest): @@ -17,64 +19,125 @@ def setUp(self): @override_settings(INSTITUTION_EMAIL_DOMAINS=["example.com"]) -class TestVoteView(WebTest): - fixtures = ['minimal_test_data'] +class TestVoteView(ViewTest): + url = '/student/vote/1' - def test_complete_vote_usecase(self): + @classmethod + def setUpTestData(cls): + cls.voting_user1 = mommy.make(UserProfile) + cls.voting_user2 = mommy.make(UserProfile) + cls.contributor1 = mommy.make(UserProfile) + cls.contributor2 = mommy.make(UserProfile) + + cls.course = mommy.make(Course, pk=1, participants=[cls.voting_user1, cls.voting_user2, cls.contributor1], state="in_evaluation") + + cls.general_questionnaire = mommy.make(Questionnaire) + cls.contributor_questionnaire = mommy.make(Questionnaire) + + cls.contributor_text_question = mommy.make(Question, questionnaire=cls.contributor_questionnaire, type="T") + cls.contributor_likert_question = mommy.make(Question, questionnaire=cls.contributor_questionnaire, type="L") + cls.general_text_question = mommy.make(Question, questionnaire=cls.general_questionnaire, type="T") + cls.general_likert_question = mommy.make(Question, questionnaire=cls.general_questionnaire, type="L") + cls.general_grade_question = mommy.make(Question, questionnaire=cls.general_questionnaire, type="G") + + cls.contribution1 = mommy.make(Contribution, contributor=cls.contributor1, questionnaires=[cls.contributor_questionnaire], + course=cls.course) + cls.contribution2 = mommy.make(Contribution, contributor=cls.contributor2, questionnaires=[cls.contributor_questionnaire], + course=cls.course) + + cls.course.general_contribution.questionnaires.set([cls.general_questionnaire]) + + def fill_form(self, form, fill_complete): + form[question_id(self.course.general_contribution, self.general_questionnaire, self.general_text_question)] = "some text" + form[question_id(self.course.general_contribution, self.general_questionnaire, self.general_grade_question)] = 3 + form[question_id(self.course.general_contribution, self.general_questionnaire, self.general_likert_question)] = 1 + + form[question_id(self.contribution1, self.contributor_questionnaire, self.contributor_text_question)] = "some other text" + form[question_id(self.contribution1, self.contributor_questionnaire, self.contributor_likert_question)] = 4 + + form[question_id(self.contribution2, self.contributor_questionnaire, self.contributor_text_question)] = "some more text" + + if fill_complete: + form[question_id(self.contribution2, self.contributor_questionnaire, self.contributor_likert_question)] = 2 + + def test_incomplete_form(self): """ Submits a student vote, verifies that an error message is displayed if not all rating questions have been answered and that all - given answers stay selected/filled and that the student cannot vote on - the course a second time. + given answers stay selected/filled. """ - page = self.get_assert_200("/student/vote/5", user="lazy.student") + page = self.get_assert_200(self.url, user=self.voting_user1.username) form = page.forms["student-vote-form"] - form["question_17_2_3"] = "some text" - form["question_17_2_4"] = 1 - form["question_17_2_5"] = 6 - form["question_18_1_1"] = "some other text" - form["question_18_1_2"] = 1 - form["question_19_1_1"] = "some more text" - form["question_19_1_2"] = 1 - form["question_20_1_1"] = "and the last text" + self.fill_form(form, fill_complete=False) response = form.submit() self.assertIn("vote for all rating questions", response) + form = page.forms["student-vote-form"] - self.assertEqual(form["question_17_2_3"].value, "some text") - self.assertEqual(form["question_17_2_4"].value, "1") - self.assertEqual(form["question_17_2_5"].value, "6") - self.assertEqual(form["question_18_1_1"].value, "some other text") - self.assertEqual(form["question_18_1_2"].value, "1") - self.assertEqual(form["question_19_1_1"].value, "some more text") - self.assertEqual(form["question_19_1_2"].value, "1") - self.assertEqual(form["question_20_1_1"].value, "and the last text") - form["question_20_1_2"] = 1 # give missing answer + self.assertEqual(form[question_id(self.course.general_contribution, self.general_questionnaire, self.general_text_question)].value, "some text") + self.assertEqual(form[question_id(self.course.general_contribution, self.general_questionnaire, self.general_likert_question)].value, "1") + self.assertEqual(form[question_id(self.course.general_contribution, self.general_questionnaire, self.general_grade_question)].value, "3") + + self.assertEqual(form[question_id(self.contribution1, self.contributor_questionnaire, self.contributor_text_question)].value, "some other text") + self.assertEqual(form[question_id(self.contribution1, self.contributor_questionnaire, self.contributor_likert_question)].value, "4") + + self.assertEqual(form[question_id(self.contribution2, self.contributor_questionnaire, self.contributor_text_question)].value, "some more text") + + def test_answer(self): + page = self.get_assert_200(self.url, user=self.voting_user1.username) + form = page.forms["student-vote-form"] + self.fill_form(form, fill_complete=True) form.submit() - self.get_assert_403("/student/vote/5", user="lazy.student") + page = self.get_assert_200(self.url, user=self.voting_user2.username) + form = page.forms["student-vote-form"] + self.fill_form(form, fill_complete=True) + form.submit() + self.assertEqual(len(TextAnswer.objects.all()), 6) + self.assertEqual(len(RatingAnswerCounter.objects.all()), 4) - def test_user_cannot_vote_for_themselves(self): - contributor1 = mommy.make(UserProfile) - contributor2 = mommy.make(UserProfile) - student = mommy.make(UserProfile) + self.assertEqual(RatingAnswerCounter.objects.filter(question=self.general_likert_question).count(), 1) + self.assertEqual(RatingAnswerCounter.objects.get(question=self.general_likert_question).answer, 1) + + self.assertEqual(RatingAnswerCounter.objects.filter(question=self.general_grade_question).count(), 1) + self.assertEqual(RatingAnswerCounter.objects.get(question=self.general_grade_question).answer, 3) + + self.assertEqual(RatingAnswerCounter.objects.filter(question=self.contributor_likert_question).count(), 2) + self.assertEqual(RatingAnswerCounter.objects.filter(question=self.contributor_likert_question)[0].answer, 4) + self.assertEqual(RatingAnswerCounter.objects.filter(question=self.contributor_likert_question)[1].answer, 2) + self.assertEqual(RatingAnswerCounter.objects.filter(question=self.contributor_likert_question)[0].contribution, self.contribution1) + self.assertEqual(RatingAnswerCounter.objects.filter(question=self.contributor_likert_question)[1].contribution, self.contribution2) + + self.assertEqual(TextAnswer.objects.filter(question=self.general_text_question).count(), 2) + self.assertEqual(TextAnswer.objects.filter(question=self.contributor_text_question).count(), 4) - course = mommy.make(Course, state='in_evaluation', participants=[student, contributor1]) - course.general_contribution.questionnaires.set([mommy.make(Questionnaire)]) - questionnaire = mommy.make(Questionnaire) - mommy.make(Question, questionnaire=questionnaire, type="G") - mommy.make(Contribution, contributor=contributor1, course=course, questionnaires=[questionnaire]) - mommy.make(Contribution, contributor=contributor2, course=course, questionnaires=[questionnaire]) + self.assertEqual(TextAnswer.objects.filter(question=self.general_text_question)[0].contribution, self.course.general_contribution) + self.assertEqual(TextAnswer.objects.filter(question=self.general_text_question)[1].contribution, self.course.general_contribution) + self.assertEqual(TextAnswer.objects.filter(question=self.contributor_text_question)[0].contribution, self.contribution1) + self.assertEqual(TextAnswer.objects.filter(question=self.contributor_text_question)[1].contribution, self.contribution2) + self.assertEqual(TextAnswer.objects.filter(question=self.contributor_text_question)[2].contribution, self.contribution1) + self.assertEqual(TextAnswer.objects.filter(question=self.contributor_text_question)[3].contribution, self.contribution2) - def get_vote_page(user): - return self.app.get(reverse('student:vote', kwargs={'course_id': course.id}), user=user) + self.assertEqual(TextAnswer.objects.filter(question=self.contributor_text_question)[0].answer, "some other text") + self.assertEqual(TextAnswer.objects.filter(question=self.contributor_text_question)[1].answer, "some more text") + self.assertEqual(TextAnswer.objects.filter(question=self.general_text_question)[0].answer, "some text") - response = get_vote_page(contributor1) + + def test_user_cannot_vote_multiple_times(self): + page = self.get_assert_200(self.url, user=self.voting_user1.username) + form = page.forms["student-vote-form"] + self.fill_form(form, True) + form.submit() + + self.get_assert_403(self.url, user=self.voting_user1.username) + + def test_user_cannot_vote_for_themselves(self): + response = self.get_assert_200(self.url, user=self.contributor1) for contributor, _, _, _ in response.context['contributor_form_groups']: - self.assertNotEqual(contributor, contributor1, "Contributor should not see the questionnaire about themselves") + self.assertNotEqual(contributor, self.contributor1, "Contributor should not see the questionnaire about themselves") - response = get_vote_page(student) - self.assertTrue(any(contributor == contributor1 for contributor, _, _, _ in response.context['contributor_form_groups']), + response = self.get_assert_200(self.url, user=self.voting_user1) + self.assertTrue(any(contributor == self.contributor1 for contributor, _, _, _ in response.context['contributor_form_groups']), "Regular students should see the questionnaire about a contributor")
Test student voting From a quick search, the voting process has exactly one test, which is not much for the primary feature of the platform.
2017-09-04T17:48:56
e-valuation/EvaP
1,008
e-valuation__EvaP-1008
[ "1007" ]
2b629ba0bf675630918686d9a9b1097ade1e32d8
diff --git a/evap/evaluation/auth.py b/evap/evaluation/auth.py --- a/evap/evaluation/auth.py +++ b/evap/evaluation/auth.py @@ -52,6 +52,10 @@ def process_request(self, request): # We are seeing this user for the first time in this session, attempt to authenticate the user. user = auth.authenticate(request, key=key) + if user and not user.is_active: + messages.error(request, _("Inactive users are not allowed to login.")) + return + # If we already have an authenticated user don't try to login a new user. Show an error message if another user # tries to login with a URL in this situation. if request.user.is_authenticated: diff --git a/evap/evaluation/forms.py b/evap/evaluation/forms.py --- a/evap/evaluation/forms.py +++ b/evap/evaluation/forms.py @@ -72,6 +72,9 @@ def clean_email(self): except UserProfile.DoesNotExist: raise forms.ValidationError(_("No user with this email address was found. Please make sure to enter the email address already known to the university office.")) + if not user.is_active: + raise forms.ValidationError(_("Inactive users cannot request login keys.")) + return email def get_user(self): diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -919,6 +919,8 @@ def can_staff_mark_inactive(self): return False if any(not course.is_archived for course in self.courses_participating_in.all()): return False + if any(not contribution.course.is_archived for contribution in self.contributions.all()): + return False return True @property
diff --git a/evap/evaluation/tests/test_auth.py b/evap/evaluation/tests/test_auth.py --- a/evap/evaluation/tests/test_auth.py +++ b/evap/evaluation/tests/test_auth.py @@ -13,6 +13,8 @@ class LoginTests(WebTest): def setUpTestData(cls): cls.external_user = mommy.make(UserProfile, email="[email protected]") cls.external_user.generate_login_key() + cls.inactive_external_user = mommy.make(UserProfile, email="[email protected]", is_active=False) + cls.inactive_external_user.generate_login_key() def test_login_url_works(self): self.assertRedirects(self.app.get(reverse("results:index")), "/?next=/results/") @@ -31,3 +33,8 @@ def test_login_key_valid_only_once(self): self.external_user.refresh_from_db() page = self.app.get(reverse("results:index") + "?loginkey=%s" % self.external_user.login_key) self.assertContains(page, 'Logged in as ' + self.external_user.full_name) + + def test_inactive_external_users_can_not_login(self): + page = self.app.get(reverse("results:index") + "?loginkey=%s" % self.inactive_external_user.login_key).follow() + self.assertContains(page, "Inactive users are not allowed to login") + self.assertNotContains(page, "Logged in") diff --git a/evap/evaluation/tests/test_forms.py b/evap/evaluation/tests/test_forms.py new file mode 100644 --- /dev/null +++ b/evap/evaluation/tests/test_forms.py @@ -0,0 +1,23 @@ +from django.test import TestCase + +from model_mommy import mommy + +from evap.evaluation.models import UserProfile +from evap.evaluation.forms import NewKeyForm + + +class TestNewKeyForm(TestCase): + @classmethod + def setUpTestData(cls): + cls.inactive_external_user = mommy.make(UserProfile, email="[email protected]", is_active=False) + + def test_inactive_external_users_can_not_request_login_key(self): + data = { + "submit_type": "new_key", + "email": "[email protected]" + } + + form = NewKeyForm(data) + self.assertFalse(form.is_valid()) + self.assertIn("Inactive users cannot request login keys.", form.errors["email"]) + diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -21,6 +21,7 @@ def helper_delete_all_import_files(user_id): for filename in glob.glob(file_filter): os.remove(filename) + # Staff - Sample Files View class TestDownloadSampleXlsView(ViewTest): test_users = ['staff'] @@ -188,8 +189,12 @@ def test_testrun_deletes_no_users(self): def test_deletes_users(self): mommy.make(UserProfile, username='testuser1') mommy.make(UserProfile, username='testuser2') - contribution = mommy.make(Contribution) - mommy.make(UserProfile, username='contributor', contributions=[contribution]) + contribution1 = mommy.make(Contribution) + semester = mommy.make(Semester, is_archived=True) + course = mommy.make(Course, semester=semester, _participant_count=0, _voter_count=0) + contribution2 = mommy.make(Contribution, course=course) + mommy.make(UserProfile, username='contributor1', contributions=[contribution1]) + mommy.make(UserProfile, username='contributor2', contributions=[contribution2]) page = self.app.get(self.url, user='staff') form = page.forms["user-bulk-delete-form"] @@ -208,8 +213,10 @@ def test_deletes_users(self): self.assertFalse(UserProfile.objects.filter(username='testuser2').exists()) self.assertTrue(UserProfile.objects.filter(username='staff').exists()) - self.assertTrue(UserProfile.objects.filter(username='contributor').exists()) - self.assertFalse(UserProfile.objects.exclude_inactive_users().filter(username='contributor').exists()) + self.assertTrue(UserProfile.objects.filter(username='contributor1').exists()) + self.assertTrue(UserProfile.objects.exclude_inactive_users().filter(username='contributor1').exists()) + self.assertTrue(UserProfile.objects.filter(username='contributor2').exists()) + self.assertFalse(UserProfile.objects.exclude_inactive_users().filter(username='contributor2').exists()) self.assertEqual(UserProfile.objects.count(), user_count_before - 1) self.assertEqual(UserProfile.objects.exclude_inactive_users().count(), user_count_before - 2)
Deactivation of external users follow-up to #950 external users should not be marked as inactive when they are participants or contributors in any un-archived semester. inactive users should not be able to log in or to request a login key.
2017-09-11T16:15:33
e-valuation/EvaP
1,020
e-valuation__EvaP-1020
[ "1018" ]
41213fd71903358af35b3afd6c7e51d548ef97b9
diff --git a/evap/evaluation/auth.py b/evap/evaluation/auth.py --- a/evap/evaluation/auth.py +++ b/evap/evaluation/auth.py @@ -68,14 +68,14 @@ def process_request(self, request): request.user = user auth.login(request, user) messages.success(request, _("Logged in as %s.") % user.full_name) - # Invalidate the login key (set to yesterday). + # Invalidate the login key, but keep it stored so we can later identify the user that is trying to login and send a new link user.login_key_valid_until = date.today() - timedelta(1) user.save() elif user: # A user exists, but the login key is not valid anymore. Send the user a new one. - user.generate_login_key() + user.ensure_valid_login_key() EmailTemplate.send_login_url_to_user(user) - messages.warning(request, _("The login URL was already used. We sent you a new one to your email address.")) + messages.warning(request, _("The login URL is not valid anymore. We sent you a new one to your email address.")) else: messages.warning(request, _("Invalid login URL. Please request a new one below.")) diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -1004,7 +1004,10 @@ def email_needs_login_key(cls, email): def needs_login_key(self): return UserProfile.email_needs_login_key(self.email) - def generate_login_key(self): + def ensure_valid_login_key(self): + if self.login_key and self.login_key_valid_until > date.today(): + return + while True: key = random.randrange(0, UserProfile.MAX_LOGIN_KEY) if not UserProfile.objects.filter(login_key=key).exists(): @@ -1138,7 +1141,7 @@ def send_to_user(cls, user, template, subject_params, body_params, use_cc, reque send_separate_login_url = False body_params['login_url'] = "" if user.needs_login_key: - user.generate_login_key() + user.ensure_valid_login_key() if not cc_addresses: body_params['login_url'] = user.login_url else: diff --git a/evap/evaluation/views.py b/evap/evaluation/views.py --- a/evap/evaluation/views.py +++ b/evap/evaluation/views.py @@ -36,7 +36,7 @@ def index(request): if new_key_form.is_valid(): # user wants a new login key profile = new_key_form.get_user() - profile.generate_login_key() + profile.ensure_valid_login_key() profile.save() EmailTemplate.send_login_url_to_user(new_key_form.get_user())
diff --git a/evap/evaluation/tests/test_auth.py b/evap/evaluation/tests/test_auth.py --- a/evap/evaluation/tests/test_auth.py +++ b/evap/evaluation/tests/test_auth.py @@ -8,13 +8,14 @@ class LoginTests(WebTest): + csrf_checks = False @classmethod def setUpTestData(cls): cls.external_user = mommy.make(UserProfile, email="[email protected]") - cls.external_user.generate_login_key() + cls.external_user.ensure_valid_login_key() cls.inactive_external_user = mommy.make(UserProfile, email="[email protected]", is_active=False) - cls.inactive_external_user.generate_login_key() + cls.inactive_external_user.ensure_valid_login_key() def test_login_url_works(self): self.assertRedirects(self.app.get(reverse("results:index")), "/?next=/results/") @@ -28,7 +29,7 @@ def test_login_key_valid_only_once(self): page = self.app.get(reverse("django-auth-logout")).follow() self.assertContains(page, 'Not logged in') page = self.app.get(reverse("results:index") + "?loginkey=%s" % self.external_user.login_key).follow() - self.assertContains(page, 'The login URL was already used') + self.assertContains(page, 'The login URL is not valid anymore.') self.assertEqual(len(mail.outbox), 1) # a new login key was sent self.external_user.refresh_from_db() page = self.app.get(reverse("results:index") + "?loginkey=%s" % self.external_user.login_key) @@ -38,3 +39,13 @@ def test_inactive_external_users_can_not_login(self): page = self.app.get(reverse("results:index") + "?loginkey=%s" % self.inactive_external_user.login_key).follow() self.assertContains(page, "Inactive users are not allowed to login") self.assertNotContains(page, "Logged in") + + def test_login_key_resend_if_still_valid(self): + old_key = self.external_user.login_key + page = self.app.post("/", params={"submit_type": "new_key", "email": self.external_user.email}).follow() + new_key = UserProfile.objects.get(id=self.external_user.id).login_key + + self.assertEqual(old_key, new_key) + self.assertEqual(len(mail.outbox), 1) # a login key was sent + self.assertContains(page, "We sent you an email with a one-time login URL. Please check your inbox.") + diff --git a/evap/evaluation/tests/test_models.py b/evap/evaluation/tests/test_models.py --- a/evap/evaluation/tests/test_models.py +++ b/evap/evaluation/tests/test_models.py @@ -310,7 +310,7 @@ class TestLoginUrlEmail(TestCase): def setUpTestData(cls): cls.other_user = mommy.make(UserProfile, email="[email protected]") cls.user = mommy.make(UserProfile, email="[email protected]") - cls.user.generate_login_key() + cls.user.ensure_valid_login_key() cls.course = mommy.make(Course) mommy.make(Contribution, course=cls.course, contributor=cls.user, responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS) diff --git a/evap/evaluation/tests/test_tools.py b/evap/evaluation/tests/test_tools.py --- a/evap/evaluation/tests/test_tools.py +++ b/evap/evaluation/tests/test_tools.py @@ -20,7 +20,7 @@ def test_signal_sets_language_if_none(self): translation.activate('de') user = mommy.make(UserProfile, language=None) - user.generate_login_key() + user.ensure_valid_login_key() set_or_get_language(None, user, None) @@ -33,7 +33,7 @@ def test_signal_doesnt_set_language(self): """ translation.activate('en') user = mommy.make(UserProfile, language='de') - user.generate_login_key() + user.ensure_valid_login_key() self.app.get(reverse("results:index") + "?loginkey=%s" % user.login_key)
Resend old login key if unused When a user requests a new login key or receives one because of a course transaction, a new key should only be generated, if the previous one was not already used. An email should still be sent, but include the same key as before. There should also be a test testing that behavior.
Assign please
2017-09-25T17:01:24
e-valuation/EvaP
1,022
e-valuation__EvaP-1022
[ "1017" ]
41213fd71903358af35b3afd6c7e51d548ef97b9
diff --git a/evap/results/tools.py b/evap/results/tools.py --- a/evap/results/tools.py +++ b/evap/results/tools.py @@ -19,6 +19,8 @@ 5: (235, 89, 90), } +COMMENT_STATES_REQUIRED_FOR_VISIBILITY = [TextAnswer.PRIVATE, TextAnswer.PUBLISHED] + # see calculate_results ResultSection = namedtuple('ResultSection', ('questionnaire', 'contributor', 'label', 'results', 'warning')) @@ -151,8 +153,7 @@ def _calculate_results_impl(course): results.append(RatingResult(question, total_count, average, deviation, counts, warning)) elif question.is_text_question: - allowed_states = [TextAnswer.PRIVATE, TextAnswer.PUBLISHED] - answers = get_textanswers(contribution, question, allowed_states) + answers = get_textanswers(contribution, question, COMMENT_STATES_REQUIRED_FOR_VISIBILITY) results.append(TextResult(question=question, answers=answers)) section_warning = questionnaire_max_answers[(questionnaire, contribution)] < questionnaire_warning_thresholds[questionnaire] diff --git a/evap/results/views.py b/evap/results/views.py --- a/evap/results/views.py +++ b/evap/results/views.py @@ -5,7 +5,7 @@ from django.contrib.auth.decorators import login_required from evap.evaluation.models import Semester, Degree, Contribution -from evap.results.tools import calculate_results, calculate_average_grades_and_deviation, TextResult, RatingResult +from evap.results.tools import calculate_results, calculate_average_grades_and_deviation, TextResult, RatingResult, COMMENT_STATES_REQUIRED_FOR_VISIBILITY @login_required @@ -125,12 +125,20 @@ def course_detail(request, semester_id, course_id): def user_can_see_text_answer(user, represented_users, text_answer, public_view=False): if public_view: return False + if text_answer.state not in COMMENT_STATES_REQUIRED_FOR_VISIBILITY: + return False if user.is_reviewer: return True + contributor = text_answer.contribution.contributor + if text_answer.is_private: return contributor == user + if text_answer.is_published: + if text_answer.contribution.responsible: + return contributor == user or user in contributor.delegates.all() + if contributor in represented_users: return True if text_answer.contribution.course.contributions.filter(
diff --git a/evap/results/fixtures/minimal_test_data_results.json b/evap/results/fixtures/minimal_test_data_results.json --- a/evap/results/fixtures/minimal_test_data_results.json +++ b/evap/results/fixtures/minimal_test_data_results.json @@ -214,6 +214,61 @@ "state": "PR" } }, +{ + "pk": 11, + "model": "evaluation.textanswer", + "fields": { + "reviewed_answer": null, + "question": 1, + "original_answer": ".other_responsible_orig_published.", + "contribution": 6, + "state": "PU" + } +}, +{ + "pk": 12, + "model": "evaluation.textanswer", + "fields": { + "reviewed_answer": null, + "question": 1, + "original_answer": ".other_responsible_orig_hidden.", + "contribution": 6, + "state": "HI" + } +}, +{ + "pk": 13, + "model": "evaluation.textanswer", + "fields": { + "reviewed_answer": ".other_responsible_changed_published.", + "question": 1, + "original_answer": ".other_responsible_orig_published_changed.", + "contribution": 6, + "state": "PU" + } +}, +{ + "pk": 14, + "model": "evaluation.textanswer", + "fields": { + "reviewed_answer": null, + "question": 1, + "original_answer": ".other_responsible_orig_private.", + "contribution": 6, + "state": "PR" + } +}, +{ + "pk": 15, + "model": "evaluation.textanswer", + "fields": { + "reviewed_answer": null, + "question": 1, + "original_answer": ".other_responsible_orig_notreviewed.", + "contribution": 6, + "state": "NR" + } +}, { "pk": 2, "model": "evaluation.userprofile", @@ -333,6 +388,23 @@ "login_key": null } }, +{ + "pk": 9, + "model": "evaluation.userprofile", + "fields": { + "username": "other_responsible", + "first_name": "other_responsible", + "last_name": "user", + "last_login": "2014-09-16T22:51:39.584", + "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", + "email": "[email protected]", + "title": "", + "cc_users": [], + "delegates": [], + "login_key_valid_until": null, + "login_key": null + } +}, { "pk": 1, "model": "evaluation.contribution", @@ -403,6 +475,20 @@ "comment_visibility": "ALL" } }, +{ + "pk": 6, + "model": "evaluation.contribution", + "fields": { + "contributor": 9, + "course": 1, + "responsible": true, + "questionnaires": [ + 1 + ], + "can_edit": true, + "comment_visibility": "ALL" + } +}, { "pk": 1, "model": "evaluation.coursetype", diff --git a/evap/results/tests/test_views.py b/evap/results/tests/test_views.py --- a/evap/results/tests/test_views.py +++ b/evap/results/tests/test_views.py @@ -66,12 +66,14 @@ def test_private_course(self): student = UserProfile.objects.get(username="student") contributor = UserProfile.objects.get(username="contributor") responsible = UserProfile.objects.get(username="responsible") + other_responsible = UserProfile.objects.get(username="other_responsible") test1 = mommy.make(UserProfile, username="test1") test2 = mommy.make(UserProfile, username="test2") mommy.make(UserProfile, username="random") degree = mommy.make(Degree) private_course = mommy.make(Course, state='published', is_private=True, semester=self.semester, participants=[student, test1, test2], voters=[test1, test2], degrees=[degree]) mommy.make(Contribution, course=private_course, contributor=responsible, can_edit=True, responsible=True, comment_visibility=Contribution.ALL_COMMENTS) + mommy.make(Contribution, course=private_course, contributor=other_responsible, can_edit=True, responsible=True, comment_visibility=Contribution.ALL_COMMENTS) mommy.make(Contribution, course=private_course, contributor=contributor, can_edit=True) url = '/results/semester/%s' % (self.semester.id) @@ -81,6 +83,8 @@ def test_private_course(self): self.assertIn(private_course.name, page) page = self.app.get(url, user='responsible') self.assertIn(private_course.name, page) + page = self.app.get(url, user='other_responsible') + self.assertIn(private_course.name, page) page = self.app.get(url, user='contributor') self.assertIn(private_course.name, page) page = self.app.get(url, user='evap') @@ -90,6 +94,7 @@ def test_private_course(self): self.get_assert_403(url, "random") self.get_assert_200(url, "student") self.get_assert_200(url, "responsible") + self.get_assert_200(url, "other_responsible") self.get_assert_200(url, "contributor") self.get_assert_200(url, "evap") @@ -107,6 +112,33 @@ def test_textanswer_visibility_for_responsible(self): self.assertNotIn(".responsible_orig_notreviewed.", page) self.assertIn(".contributor_orig_published.", page) self.assertNotIn(".contributor_orig_private.", page) # private comment not visible + self.assertNotIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertNotIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) + + def test_textanswer_visibility_for_other_responsible(self): + page = self.app.get("/results/semester/1/course/1", user='other_responsible') + self.assertIn(".course_orig_published.", page) + self.assertNotIn(".course_orig_hidden.", page) + self.assertNotIn(".course_orig_published_changed.", page) + self.assertIn(".course_changed_published.", page) + self.assertNotIn(".responsible_orig_published.", page) + self.assertNotIn(".responsible_orig_hidden.", page) + self.assertNotIn(".responsible_orig_published_changed.", page) + self.assertNotIn(".responsible_changed_published.", page) + self.assertNotIn(".responsible_orig_private.", page) + self.assertNotIn(".responsible_orig_notreviewed.", page) + self.assertIn(".contributor_orig_published.", page) + self.assertNotIn(".contributor_orig_private.", page) # private comment not visible + self.assertIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertIn(".other_responsible_changed_published.", page) + self.assertIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) def test_textanswer_visibility_for_delegate_for_responsible(self): page = self.app.get("/results/semester/1/course/1", user='delegate_for_responsible') @@ -122,6 +154,12 @@ def test_textanswer_visibility_for_delegate_for_responsible(self): self.assertNotIn(".responsible_orig_notreviewed.", page) self.assertIn(".contributor_orig_published.", page) self.assertNotIn(".contributor_orig_private.", page) # private comment not visible + self.assertNotIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertNotIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) def test_textanswer_visibility_for_contributor(self): page = self.app.get("/results/semester/1/course/1", user='contributor') @@ -137,6 +175,12 @@ def test_textanswer_visibility_for_contributor(self): self.assertNotIn(".responsible_orig_notreviewed.", page) self.assertIn(".contributor_orig_published.", page) self.assertIn(".contributor_orig_private.", page) + self.assertNotIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertNotIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) def test_textanswer_visibility_for_delegate_for_contributor(self): page = self.app.get("/results/semester/1/course/1", user='delegate_for_contributor') @@ -152,6 +196,12 @@ def test_textanswer_visibility_for_delegate_for_contributor(self): self.assertNotIn(".responsible_orig_notreviewed.", page) self.assertIn(".contributor_orig_published.", page) self.assertNotIn(".contributor_orig_private.", page) + self.assertNotIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertNotIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) def test_textanswer_visibility_for_contributor_course_comments(self): page = self.app.get("/results/semester/1/course/1", user='contributor_course_comments') @@ -167,6 +217,12 @@ def test_textanswer_visibility_for_contributor_course_comments(self): self.assertNotIn(".responsible_orig_notreviewed.", page) self.assertNotIn(".contributor_orig_published.", page) self.assertNotIn(".contributor_orig_private.", page) + self.assertNotIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertNotIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) def test_textanswer_visibility_for_contributor_all_comments(self): page = self.app.get("/results/semester/1/course/1", user='contributor_all_comments') @@ -174,14 +230,20 @@ def test_textanswer_visibility_for_contributor_all_comments(self): self.assertNotIn(".course_orig_hidden.", page) self.assertNotIn(".course_orig_published_changed.", page) self.assertIn(".course_changed_published.", page) - self.assertIn(".responsible_orig_published.", page) + self.assertNotIn(".responsible_orig_published.", page) self.assertNotIn(".responsible_orig_hidden.", page) self.assertNotIn(".responsible_orig_published_changed.", page) - self.assertIn(".responsible_changed_published.", page) + self.assertNotIn(".responsible_changed_published.", page) self.assertNotIn(".responsible_orig_private.", page) self.assertNotIn(".responsible_orig_notreviewed.", page) self.assertIn(".contributor_orig_published.", page) self.assertNotIn(".contributor_orig_private.", page) + self.assertNotIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertNotIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) def test_textanswer_visibility_for_student(self): page = self.app.get("/results/semester/1/course/1", user='student') @@ -197,3 +259,9 @@ def test_textanswer_visibility_for_student(self): self.assertNotIn(".responsible_orig_notreviewed.", page) self.assertNotIn(".contributor_orig_published.", page) self.assertNotIn(".contributor_orig_private.", page) + self.assertNotIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertNotIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page)
Don't show a responsible's comments to other responsibles If a course has multiple responsibles, each of them should not be able to see the comments about the other responsibles of this course. In general a user who can see `ALL` comments cannot see the comments about other responsible users. Comments about responsible users can only be seen by themselves and their delegates (and reviewers).
2017-09-25T19:15:21
e-valuation/EvaP
1,026
e-valuation__EvaP-1026
[ "990" ]
69f0b1ac79724c97fe66b9dbc871957a66f62f37
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -20,7 +20,7 @@ # see evaluation.meta for the use of Translate in this file from evap.evaluation.meta import LocalizeModelBase, Translate from evap.evaluation.tools import date_to_datetime -from evap.settings import EVALUATION_END_OFFSET_HOURS +from evap.settings import EVALUATION_END_OFFSET_HOURS, EVALUATION_END_WARNING_PERIOD logger = logging.getLogger(__name__) @@ -262,7 +262,7 @@ def save(self, *args, **kw): self.contributions.create(contributor=None) del self.general_contribution # invalidate cached property - assert self.vote_end_date >= self.vote_end_date + assert self.vote_end_date >= self.vote_start_datetime.date() @property def is_fully_reviewed(self): @@ -421,6 +421,13 @@ def responsible_contributors(self): def days_left_for_evaluation(self): return (self.vote_end_date - date.today()).days + @property + def time_left_for_evaluation(self): + return self.vote_end_datetime - datetime.now() + + def evaluation_ends_soon(self): + return self.time_left_for_evaluation.total_seconds() < EVALUATION_END_WARNING_PERIOD * 3600 + @property def days_until_evaluation(self): return (self.vote_start_datetime.date() - date.today()).days diff --git a/evap/settings.py b/evap/settings.py --- a/evap/settings.py +++ b/evap/settings.py @@ -272,6 +272,9 @@ # Specify an offset that will be added to the evaluation end date (e.g. 3: If the end date is 01.01., the evaluation will end at 02.01. 03:00.). EVALUATION_END_OFFSET_HOURS = 3 +# Amount of hours in which participant will be warned +EVALUATION_END_WARNING_PERIOD = 5 + ### Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.7/howto/static-files/ diff --git a/evap/student/views.py b/evap/student/views.py --- a/evap/student/views.py +++ b/evap/student/views.py @@ -63,6 +63,7 @@ def vote(request, course_id): if not course.can_user_vote(request.user): raise PermissionDenied + # prevent a user from voting on themselves. contributions_to_vote_on = course.contributions.exclude(contributor=request.user).all() form_groups = helper_create_voting_form_groups(request, contributions_to_vote_on) @@ -80,7 +81,11 @@ def vote(request, course_id): contributor_form_groups=contributor_form_groups, course=course, participants_warning=course.num_participants <= 5, - preview=False) + preview=False, + vote_end_datetime=course.vote_end_datetime, + hours_left_for_evaluation=course.time_left_for_evaluation.seconds//3600, + minutes_left_for_evaluation=(course.time_left_for_evaluation.seconds//60)%60, + evaluation_ends_soon=course.evaluation_ends_soon()) return render(request, "student_vote.html", template_data) # all forms are valid, begin vote operation
diff --git a/evap/evaluation/tests/test_models.py b/evap/evaluation/tests/test_models.py --- a/evap/evaluation/tests/test_models.py +++ b/evap/evaluation/tests/test_models.py @@ -1,6 +1,7 @@ from datetime import datetime, timedelta, date from unittest.mock import patch, Mock +from django.conf import settings from django.test import TestCase, override_settings from django.core.cache import cache from django.core import mail @@ -10,9 +11,10 @@ from evap.evaluation.models import (Contribution, Course, CourseType, EmailTemplate, NotArchiveable, Questionnaire, RatingAnswerCounter, Semester, UserProfile) from evap.results.tools import calculate_average_grades_and_deviation +from evap.settings import EVALUATION_END_OFFSET_HOURS, EVALUATION_END_WARNING_PERIOD -@override_settings(EVALUATION_END_OFFSET=0) +@override_settings(EVALUATION_END_OFFSET_HOURS=0) class TestCourses(TestCase): def test_approved_to_in_evaluation(self): @@ -29,7 +31,8 @@ def test_approved_to_in_evaluation(self): self.assertEqual(course.state, 'in_evaluation') def test_in_evaluation_to_evaluated(self): - course = mommy.make(Course, state='in_evaluation', vote_end_date=date.today() - timedelta(days=1)) + course = mommy.make(Course, state='in_evaluation', vote_start_datetime=datetime.now() - timedelta(days=2), + vote_end_date=date.today() - timedelta(days=1)) with patch('evap.evaluation.models.Course.is_fully_reviewed') as mock: mock.__get__ = Mock(return_value=False) @@ -40,7 +43,8 @@ def test_in_evaluation_to_evaluated(self): def test_in_evaluation_to_reviewed(self): # Course is "fully reviewed" as no open text_answers are present by default, - course = mommy.make(Course, state='in_evaluation', vote_end_date=date.today() - timedelta(days=1)) + course = mommy.make(Course, state='in_evaluation', vote_start_datetime=datetime.now() - timedelta(days=2), + vote_end_date=date.today() - timedelta(days=1)) Course.update_courses() @@ -49,7 +53,8 @@ def test_in_evaluation_to_reviewed(self): def test_in_evaluation_to_published(self): # Course is "fully reviewed" and not graded, thus gets published immediately. - course = mommy.make(Course, state='in_evaluation', vote_end_date=date.today() - timedelta(days=1), + course = mommy.make(Course, state='in_evaluation', vote_start_datetime=datetime.now() - timedelta(days=2), + vote_end_date=date.today() - timedelta(days=1), is_graded=False) with patch('evap.evaluation.tools.send_publish_notifications') as mock: @@ -60,11 +65,26 @@ def test_in_evaluation_to_published(self): course = Course.objects.get(pk=course.pk) self.assertEqual(course.state, 'published') + @override_settings(EVALUATION_END_WARNING_PERIOD=24) + def test_evaluation_ends_soon(self): + course = mommy.make(Course, state='in_evaluation', vote_start_datetime=datetime.now() - timedelta(days=2), + vote_end_date=date.today() - timedelta(hours=24), is_graded=False) + + Course.update_courses() + self.assertTrue(course.evaluation_ends_soon()) + + @override_settings(EVALUATION_END_WARNING_PERIOD=24) + def test_evaluation_doesnt_end_soon(self): + course = mommy.make(Course, state='in_evaluation', vote_start_datetime=datetime.now() - timedelta(days=5), + vote_end_date=date.today() - timedelta(hours=24), is_graded=False) + def test_evaluation_ended(self): # Course is out of evaluation period. - mommy.make(Course, state='in_evaluation', vote_end_date=date.today() - timedelta(days=1), is_graded=False) + mommy.make(Course, state='in_evaluation', vote_start_datetime=datetime.now() - timedelta(days=2), + vote_end_date=date.today() - timedelta(days=1), is_graded=False) # This course is not. - mommy.make(Course, state='in_evaluation', vote_end_date=date.today(), is_graded=False) + mommy.make(Course, state='in_evaluation', vote_start_datetime=datetime.now() - timedelta(days=2), + vote_end_date=date.today(), is_graded=False) with patch('evap.evaluation.models.Course.evaluation_end') as mock: Course.update_courses() diff --git a/evap/grades/tests.py b/evap/grades/tests.py --- a/evap/grades/tests.py +++ b/evap/grades/tests.py @@ -1,4 +1,4 @@ -from datetime import datetime, timedelta +from datetime import date, datetime, timedelta from django.core import mail from django.contrib.auth.models import Group @@ -24,14 +24,14 @@ def setUpTestData(cls): cls.course = mommy.make( Course, name_en="Test", - vote_start_datetime=datetime.now() - timedelta(10), - vote_end_date=datetime.now() + timedelta(10), + vote_start_datetime=datetime.now() - timedelta(days=10), + vote_end_date=date.today() + timedelta(days=10), participants=[cls.student, cls.student2, cls.student3], voters=[cls.student, cls.student2], ) - contribution = Contribution(course=cls.course, contributor=responsible, responsible=True, can_edit=True, - comment_visibility=Contribution.ALL_COMMENTS) - contribution.save() + + contribution = mommy.make(Contribution, course=cls.course, contributor=responsible, responsible=True, + can_edit=True, comment_visibility=Contribution.ALL_COMMENTS) contribution.questionnaires.set([mommy.make(Questionnaire, is_for_contributors=True)]) cls.course.general_contribution.questionnaires.set([mommy.make(Questionnaire)]) diff --git a/evap/staff/tests/test_importers.py b/evap/staff/tests/test_importers.py --- a/evap/staff/tests/test_importers.py +++ b/evap/staff/tests/test_importers.py @@ -1,5 +1,5 @@ import os -from datetime import datetime +from datetime import date, datetime from django.test import TestCase, override_settings from django.conf import settings from model_mommy import mommy @@ -126,8 +126,8 @@ class TestEnrollmentImporter(TestCase): def test_valid_file_import(self): semester = mommy.make(Semester) - vote_start_date = datetime(2017, 1, 10) - vote_end_date = datetime(2017, 3, 10) + vote_start_datetime = datetime(2017, 1, 10) + vote_end_date = date(2017, 3, 10) mommy.make(CourseType, name_de="Seminar") mommy.make(CourseType, name_de="Vorlesung") @@ -141,7 +141,7 @@ def test_valid_file_import(self): self.assertEqual(errors, []) self.assertEqual(warnings, {}) - success_messages, warnings, errors = EnrollmentImporter.process(excel_content, semester, vote_start_date, vote_end_date, test_run=False) + success_messages, warnings, errors = EnrollmentImporter.process(excel_content, semester, vote_start_datetime, vote_end_date, test_run=False) self.assertIn("Successfully created 23 course(s), 6 student(s) and 17 contributor(s):", "".join(success_messages)) self.assertIn("Ferdi Itaque (ferdi.itaque)", "".join(success_messages)) self.assertEqual(errors, [])
End of evaluation warning When opening an evaluation questionnaire after the last day of evaluation (in the X hour period in which the evaluation is still possible), an information about the exact end of the evaluation should be shown on top of the page (or maybe in a modal).
2017-10-09T18:20:53
e-valuation/EvaP
1,029
e-valuation__EvaP-1029
[ "1016" ]
d6fb422a516c2927f65512fd2dbe7ba7337a3cf2
diff --git a/evap/results/views.py b/evap/results/views.py --- a/evap/results/views.py +++ b/evap/results/views.py @@ -58,7 +58,10 @@ def course_detail(request, semester_id, course_id): sections = calculate_results(course) - public_view = request.GET.get('public_view') == 'true' # if parameter is not given, show own view. + if request.user.is_staff or request.user.is_reviewer: + public_view = request.GET.get('public_view') != 'false' # if parameter is not given, show public view. + else: + public_view = request.GET.get('public_view') == 'true' # if parameter is not given, show own view. represented_users = list(request.user.represented_users.all()) represented_users.append(request.user)
diff --git a/evap/results/tests/test_views.py b/evap/results/tests/test_views.py --- a/evap/results/tests/test_views.py +++ b/evap/results/tests/test_views.py @@ -57,6 +57,16 @@ def test_single_result_course(self): user = 'evap' self.get_assert_200(url, user) + def test_default_view_is_public(self): + url = '/results/semester/%s' % (self.semester.id) + page_without_get_parameter = self.app.get(url, user='evap') + url = '/results/semester/%s?public_view=true' % (self.semester.id) + page_with_get_parameter = self.app.get(url, user='evap') + url = '/results/semester/%s?public_view=asdf' % (self.semester.id) + page_with_random_get_parameter = self.app.get(url, user='evap') + self.assertEqual(page_without_get_parameter.body, page_with_get_parameter.body) + self.assertEqual(page_without_get_parameter.body, page_with_random_get_parameter.body) + def test_wrong_state(self): course = mommy.make(Course, state='reviewed', semester=self.semester) url = '/results/semester/%s/course/%s' % (self.semester.id, course.id)
Staff users should see the public view of results by default Staff users should by default see the public view of results pages. It shows less data (primarily no comments), which is good, and random people looking over one's shoulder won't ask "omg you see more stuff here why is that"
2017-10-23T19:32:06
e-valuation/EvaP
1,043
e-valuation__EvaP-1043
[ "1038" ]
8532aeb90cc9fc9225373b28b4ce39cb9cadfc8b
diff --git a/evap/staff/importers.py b/evap/staff/importers.py --- a/evap/staff/importers.py +++ b/evap/staff/importers.py @@ -208,15 +208,22 @@ def _create_user_string(user): return "{} ({} {} {}, {})".format(user.username, user.title or "", user.first_name, user.last_name, user.email or "") @staticmethod - def _create_user_data_mismatch_warning(user, user_data): - return (mark_safe(_("The existing user would be overwritten with the following data:") + + def _create_user_data_mismatch_warning(user, user_data, test_run): + if test_run: + msg = "The existing user would be overwritten with the following data:" + else: + msg = "The existing user was overwritten with the following data:" + return (mark_safe(_(msg) + "<br> - " + ExcelImporter._create_user_string(user) + _(" (existing)") + "<br> - " + ExcelImporter._create_user_string(user_data) + _(" (new)"))) @staticmethod - def _create_user_inactive_warning(user): - return mark_safe(_("The following user is currently marked inactive and will be marked active upon importing:") + " " - + ExcelImporter._create_user_string(user)) + def _create_user_inactive_warning(user, test_run): + if test_run: + msg = "The following user is currently marked inactive and will be marked active upon importing:" + else: + msg = "The following user was previously marked inactive and is now marked active upon importing:" + return mark_safe(_(msg) + " " + ExcelImporter._create_user_string(user)) def _create_user_name_collision_warning(self, user_data, users_with_same_names): warningstring = _("An existing user has the same first and last name as a new user:") @@ -225,18 +232,18 @@ def _create_user_name_collision_warning(self, user_data, users_with_same_names): warningstring += "<br> - " + self._create_user_string(user_data) + _(" (new)") self.warnings[self.W_DUPL].append(mark_safe(warningstring)) - def check_user_data_sanity(self): + def check_user_data_sanity(self, test_run): for user_data in self.users.values(): try: user = UserProfile.objects.get(username=user_data.username) if user.email != user_data.email: - self.warnings[self.W_EMAIL].append(self._create_user_data_mismatch_warning(user, user_data)) + self.warnings[self.W_EMAIL].append(self._create_user_data_mismatch_warning(user, user_data, test_run)) if ((user.title is not None and user.title != user_data.title) or user.first_name != user_data.first_name or user.last_name != user_data.last_name): - self.warnings[self.W_NAME].append(self._create_user_data_mismatch_warning(user, user_data)) + self.warnings[self.W_NAME].append(self._create_user_data_mismatch_warning(user, user_data, test_run)) if not user.is_active: - self.warnings[self.W_INACTIVE].append(self._create_user_inactive_warning(user)) + self.warnings[self.W_INACTIVE].append(self._create_user_inactive_warning(user, test_run)) except UserProfile.DoesNotExist: pass @@ -376,7 +383,7 @@ def process(cls, excel_content, semester, vote_start_datetime, vote_end_date, te importer.check_user_data_correctness() importer.check_course_data_correctness(semester) importer.check_enrollment_data_sanity() - importer.check_user_data_sanity() + importer.check_user_data_sanity(test_run) if importer.errors: importer.errors.append(_("Errors occurred while parsing the input data. No data was imported.")) @@ -467,7 +474,7 @@ def process(cls, excel_content, test_run): importer.consolidate_user_data() importer.generate_external_usernames_if_external() importer.check_user_data_correctness() - importer.check_user_data_sanity() + importer.check_user_data_sanity(test_run) if importer.errors: importer.errors.append(_("Errors occurred while parsing the input data. No data was imported."))
Importer warnings wording After importing courses for a semester, the warnings state that, e.g., an existing user *would* be overwritten with other data, although at this moment the data already *was* overwritten.
2017-12-11T18:30:35
e-valuation/EvaP
1,058
e-valuation__EvaP-1058
[ "1057" ]
c74e98322c9359c18b3636943174eecf7ffe440b
diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -422,8 +422,10 @@ def handle_deleted_and_added_contributions(self): for form_with_errors in self.forms: if not form_with_errors.errors: continue + if 'contributor' not in form_with_errors.cleaned_data: + continue for deleted_form in self.forms: - if not deleted_form.cleaned_data or not deleted_form.cleaned_data.get('DELETE'): + if not deleted_form.cleaned_data or 'contributor' not in deleted_form.cleaned_data or not deleted_form.cleaned_data.get('DELETE'): continue if not deleted_form.cleaned_data['contributor'] == form_with_errors.cleaned_data['contributor']: continue
diff --git a/evap/staff/tests/test_forms.py b/evap/staff/tests/test_forms.py --- a/evap/staff/tests/test_forms.py +++ b/evap/staff/tests/test_forms.py @@ -230,6 +230,48 @@ def test_dont_validate_deleted_contributions(self): formset = contribution_formset(instance=course, form_kwargs={'course': course}, data=data) self.assertTrue(formset.is_valid()) + def test_deleted_empty_contribution_does_not_crash(self): + """ + When removing the empty extra contribution formset, validating the form should not crash. + Similarly, when removing the contribution formset of an existing contributor, and entering some data in the extra formset, it should not crash. + Regression test for #1057 + """ + course = mommy.make(Course) + user1 = mommy.make(UserProfile) + questionnaire = mommy.make(Questionnaire, is_for_contributors=True) + + contribution_formset = inlineformset_factory(Course, Contribution, formset=ContributionFormSet, form=ContributionForm, extra=0) + + data = to_querydict({ + 'contributions-TOTAL_FORMS': 2, + 'contributions-INITIAL_FORMS': 0, + 'contributions-MAX_NUM_FORMS': 5, + 'contributions-0-course': course.pk, + 'contributions-0-questionnaires': questionnaire.pk, + 'contributions-0-order': 0, + 'contributions-0-responsibility': "RESPONSIBLE", + 'contributions-0-comment_visibility': "ALL", + 'contributions-0-contributor': user1.pk, + 'contributions-1-course': course.pk, + 'contributions-1-questionnaires': "", + 'contributions-1-order': -1, + 'contributions-1-responsibility': "CONTRIBUTOR", + 'contributions-1-comment_visibility': "OWN", + 'contributions-1-contributor': "", + }) + + # delete extra formset + data['contributions-1-DELETE'] = 'on' + formset = contribution_formset(instance=course, form_kwargs={'course': course}, data=data) + formset.is_valid() + data['contributions-1-DELETE'] = '' + + # delete first, change data in extra formset + data['contributions-0-DELETE'] = 'on' + data['contributions-1-responsibility'] = 'RESPONSIBLE' + formset = contribution_formset(instance=course, form_kwargs={'course': course}, data=data) + formset.is_valid() + def test_take_deleted_contributions_into_account(self): """ Tests whether contributions marked for deletion are properly taken into account @@ -364,7 +406,7 @@ def test_extra_form(self): # make sure nothing crashes when an extra form is present. self.data['contributions-0-contributor'] = self.user2.pk self.data['contributions-1-contributor'] = self.user1.pk - self.data['contributions-2-TOTAL_FORMS'] = 3 + self.data['contributions-TOTAL_FORMS'] = 3 self.data['contributions-2-id'] = "" self.data['contributions-2-order'] = -1 self.data['contributions-2-responsibility'] = "CONTRIBUTOR"
Removing empty contributor field throws KeyError When removing the empty contributor field at the end of a course form (as an editor or staff member) and saving the course, a `KeyError` is thrown.
2017-12-13T17:53:41
e-valuation/EvaP
1,076
e-valuation__EvaP-1076
[ "1061" ]
5cc46824516514d4b16964d641b7660ea13f725d
diff --git a/evap/contributor/views.py b/evap/contributor/views.py --- a/evap/contributor/views.py +++ b/evap/contributor/views.py @@ -71,6 +71,9 @@ def course_view(request, course_id): if not (course.is_user_editor_or_delegate(user) and course.state in ['prepared', 'editor_approved', 'approved', 'in_evaluation', 'evaluated', 'reviewed']): raise PermissionDenied + if course.is_user_editor_or_delegate(user): + messages.info(request, _('You cannot edit this course because it has already been approved.')) + InlineContributionFormset = inlineformset_factory(Course, Contribution, formset=ContributionFormSet, form=EditorContributionForm, extra=0) form = CourseForm(request.POST or None, instance=course)
diff --git a/evap/contributor/tests/test_views.py b/evap/contributor/tests/test_views.py --- a/evap/contributor/tests/test_views.py +++ b/evap/contributor/tests/test_views.py @@ -1,7 +1,7 @@ from model_mommy import mommy from evap.evaluation.models import Course, UserProfile -from evap.evaluation.tests.tools import ViewTest, course_with_responsible_and_editor +from evap.evaluation.tests.tools import ViewTest, create_course_with_responsible_and_editor TESTING_COURSE_ID = 2 @@ -12,7 +12,7 @@ class TestContributorView(ViewTest): @classmethod def setUpTestData(cls): - course_with_responsible_and_editor() + create_course_with_responsible_and_editor() class TestContributorSettingsView(ViewTest): @@ -21,7 +21,7 @@ class TestContributorSettingsView(ViewTest): @classmethod def setUpTestData(cls): - course_with_responsible_and_editor() + create_course_with_responsible_and_editor() def test_save_settings(self): user = mommy.make(UserProfile) @@ -39,12 +39,21 @@ class TestContributorCourseView(ViewTest): @classmethod def setUpTestData(cls): - cls.course = course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) - + create_course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) + + def setUp(self): + self.course = Course.objects.get(pk=TESTING_COURSE_ID) + def test_wrong_state(self): self.course.revert_to_new() self.course.save() self.get_assert_403(self.url, 'responsible') + + def test_information_message(self): + self.course.editor_approve() + self.course.save() + page = self.app.get(self.url, user='editor') + self.assertContains(page, "You cannot edit this course because it has already been approved") class TestContributorCoursePreviewView(ViewTest): @@ -53,7 +62,7 @@ class TestContributorCoursePreviewView(ViewTest): @classmethod def setUpTestData(cls): - cls.course = course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) + cls.course = create_course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) def setUp(self): self.course = Course.objects.get(pk=TESTING_COURSE_ID) @@ -70,7 +79,7 @@ class TestContributorCourseEditView(ViewTest): @classmethod def setUpTestData(cls): - cls.course = course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) + cls.course = create_course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) def setUp(self): self.course = Course.objects.get(pk=TESTING_COURSE_ID) diff --git a/evap/evaluation/tests/tools.py b/evap/evaluation/tests/tools.py --- a/evap/evaluation/tests/tools.py +++ b/evap/evaluation/tests/tools.py @@ -75,7 +75,7 @@ def get_form_data_from_instance(FormClass, instance): return {field.html_name: field.value() for field in form} -def course_with_responsible_and_editor(course_id=None): +def create_course_with_responsible_and_editor(course_id=None): contributor = mommy.make(UserProfile, username='responsible') editor = mommy.make(UserProfile, username='editor') diff --git a/evap/staff/tests/test_forms.py b/evap/staff/tests/test_forms.py --- a/evap/staff/tests/test_forms.py +++ b/evap/staff/tests/test_forms.py @@ -4,7 +4,7 @@ from evap.evaluation.models import UserProfile, CourseType, Course, Questionnaire, \ Contribution, Semester, Degree, EmailTemplate -from evap.evaluation.tests.tools import get_form_data_from_instance, course_with_responsible_and_editor, to_querydict +from evap.evaluation.tests.tools import get_form_data_from_instance, create_course_with_responsible_and_editor, to_querydict from evap.staff.forms import UserForm, SingleResultForm, ContributionFormSet, ContributionForm, CourseForm, \ CourseEmailForm from evap.contributor.forms import CourseForm as ContributorCourseForm @@ -16,7 +16,7 @@ def test_course_email_form(self): """ Tests the CourseEmailForm with one valid and one invalid input dataset. """ - course = course_with_responsible_and_editor() + course = create_course_with_responsible_and_editor() mommy.make(Contribution, course=course) data = {"body": "wat", "subject": "some subject", "recipients": [EmailTemplate.DUE_PARTICIPANTS]} form = CourseEmailForm(course=course, data=data)
Add information message on deactivated course page for editors Editors can open a course's edit page after they approved the course, however the form will then be disabled. A message on top of the page should explain this to the user.
2018-01-08T19:13:37
e-valuation/EvaP
1,085
e-valuation__EvaP-1085
[ "1031" ]
9ab7a717ac4dc5090ff7a4706a8c34ed9bb09578
diff --git a/evap/evaluation/auth.py b/evap/evaluation/auth.py --- a/evap/evaluation/auth.py +++ b/evap/evaluation/auth.py @@ -118,6 +118,15 @@ def _wrapped_view(request, *args, **kwargs): return decorator +def internal_required(view_func): + """ + Decorator for views that checks that the user is logged in and not an external user + """ + def check_user(user): + return not user.is_external + return user_passes_test(check_user)(view_func) + + def staff_required(view_func): """ Decorator for views that checks that the user is logged in and a staff member diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -299,7 +299,11 @@ def can_user_see_course(self, user): return True if self.is_user_contributor_or_delegate(user): return True - if self.is_private and user not in self.participants.all(): + if user in self.participants.all(): + return True + if self.is_private: + return False + if user.is_external: return False return True diff --git a/evap/results/views.py b/evap/results/views.py --- a/evap/results/views.py +++ b/evap/results/views.py @@ -5,17 +5,18 @@ from django.contrib.auth.decorators import login_required from evap.evaluation.models import Semester, Degree, Contribution +from evap.evaluation.auth import internal_required from evap.results.tools import calculate_results, calculate_average_grades_and_deviation, TextResult, RatingResult, COMMENT_STATES_REQUIRED_FOR_VISIBILITY -@login_required +@internal_required def index(request): semesters = Semester.get_all_with_published_courses() return render(request, "results_index.html", dict(semesters=semesters)) -@login_required +@internal_required def semester_detail(request, semester_id): semester = get_object_or_404(Semester, id=semester_id) if request.user.is_reviewer:
diff --git a/evap/evaluation/tests/test_auth.py b/evap/evaluation/tests/test_auth.py --- a/evap/evaluation/tests/test_auth.py +++ b/evap/evaluation/tests/test_auth.py @@ -3,7 +3,7 @@ from model_mommy import mommy -from evap.evaluation.models import UserProfile +from evap.evaluation.models import Contribution, Course, UserProfile from evap.evaluation.tests.tools import WebTest @@ -16,27 +16,30 @@ def setUpTestData(cls): cls.external_user.ensure_valid_login_key() cls.inactive_external_user = mommy.make(UserProfile, email="[email protected]", is_active=False) cls.inactive_external_user.ensure_valid_login_key() + course = mommy.make(Course, state='published') + mommy.make(Contribution, course=course, contributor=cls.external_user, can_edit=True, responsible=True, comment_visibility=Contribution.ALL_COMMENTS) + mommy.make(Contribution, course=course, contributor=cls.inactive_external_user, can_edit=True, responsible=False, comment_visibility=Contribution.ALL_COMMENTS) def test_login_url_works(self): - self.assertRedirects(self.app.get(reverse("results:index")), "/?next=/results/") + self.assertRedirects(self.app.get(reverse("contributor:index")), "/?next=/contributor/") - url_with_key = reverse("results:index") + "?loginkey=%s" % self.external_user.login_key + url_with_key = reverse("contributor:index") + "?loginkey=%s" % self.external_user.login_key self.app.get(url_with_key) def test_login_key_valid_only_once(self): - page = self.app.get(reverse("results:index") + "?loginkey=%s" % self.external_user.login_key) + page = self.app.get(reverse("contributor:index") + "?loginkey=%s" % self.external_user.login_key) self.assertContains(page, 'Logged in as ' + self.external_user.full_name) page = self.app.get(reverse("django-auth-logout")).follow() self.assertContains(page, 'Not logged in') - page = self.app.get(reverse("results:index") + "?loginkey=%s" % self.external_user.login_key).follow() + page = self.app.get(reverse("contributor:index") + "?loginkey=%s" % self.external_user.login_key).follow() self.assertContains(page, 'The login URL is not valid anymore.') self.assertEqual(len(mail.outbox), 1) # a new login key was sent self.external_user.refresh_from_db() - page = self.app.get(reverse("results:index") + "?loginkey=%s" % self.external_user.login_key) + page = self.app.get(reverse("contributor:index") + "?loginkey=%s" % self.external_user.login_key) self.assertContains(page, 'Logged in as ' + self.external_user.full_name) def test_inactive_external_users_can_not_login(self): - page = self.app.get(reverse("results:index") + "?loginkey=%s" % self.inactive_external_user.login_key).follow() + page = self.app.get(reverse("contributor:index") + "?loginkey=%s" % self.inactive_external_user.login_key).follow() self.assertContains(page, "Inactive users are not allowed to login") self.assertNotContains(page, "Logged in") diff --git a/evap/evaluation/tests/test_tools.py b/evap/evaluation/tests/test_tools.py --- a/evap/evaluation/tests/test_tools.py +++ b/evap/evaluation/tests/test_tools.py @@ -19,7 +19,7 @@ def test_signal_sets_language_if_none(self): """ translation.activate('de') - user = mommy.make(UserProfile, language=None) + user = mommy.make(UserProfile, language=None, email="[email protected]") user.ensure_valid_login_key() set_or_get_language(None, user, None) @@ -32,7 +32,7 @@ def test_signal_doesnt_set_language(self): Activate 'en' as langauge and check, that user does not get this langauge as he has one. """ translation.activate('en') - user = mommy.make(UserProfile, language='de') + user = mommy.make(UserProfile, language='de', email="[email protected]") user.ensure_valid_login_key() self.app.get(reverse("results:index") + "?loginkey=%s" % user.login_key) diff --git a/evap/results/fixtures/minimal_test_data_results.json b/evap/results/fixtures/minimal_test_data_results.json --- a/evap/results/fixtures/minimal_test_data_results.json +++ b/evap/results/fixtures/minimal_test_data_results.json @@ -278,7 +278,7 @@ "last_name": "user", "last_login": "2014-09-16T22:51:39.584", "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", + "email": "[email protected]", "title": "", "cc_users": [], "delegates": [3], @@ -295,7 +295,7 @@ "last_name": "user", "last_login": "2014-09-16T22:52:04.981", "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", + "email": "[email protected]", "title": "", "cc_users": [], "delegates": [], @@ -312,7 +312,7 @@ "last_name": "user", "last_login": "2014-09-16T22:52:27.021", "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", + "email": "[email protected]", "title": "", "cc_users": [], "delegates": [], @@ -329,7 +329,7 @@ "last_name": "user", "last_login": "2014-09-16T22:52:46.611", "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", + "email": "[email protected]", "title": "", "cc_users": [], "delegates": [], @@ -346,7 +346,7 @@ "last_name": "user", "last_login": "2014-09-16T22:53:02.506", "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", + "email": "[email protected]", "title": "", "cc_users": [], "delegates": [4], @@ -363,7 +363,7 @@ "last_name": "user", "last_login": "2014-09-16T22:53:02.506", "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", + "email": "[email protected]", "title": "", "cc_users": [], "delegates": [], @@ -380,7 +380,7 @@ "last_name": "user", "last_login": "2014-09-16T22:53:02.506", "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", + "email": "[email protected]", "title": "", "cc_users": [], "delegates": [], @@ -397,7 +397,24 @@ "last_name": "user", "last_login": "2014-09-16T22:51:39.584", "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", - "email": "[email protected]", + "email": "[email protected]", + "title": "", + "cc_users": [], + "delegates": [], + "login_key_valid_until": null, + "login_key": null + } +}, +{ + "pk": 10, + "model": "evaluation.userprofile", + "fields": { + "username": "student_external", + "first_name": "student_external", + "last_name": "user", + "last_login": "2014-09-16T22:52:46.611", + "password": "pbkdf2_sha256$12000$oyxddVrECuLk$ayPgZNkTANvBcWbTvPGaR4NBlqPELpElG7C4M1UN210=", + "email": "[email protected]", "title": "", "cc_users": [], "delegates": [], diff --git a/evap/results/tests/test_views.py b/evap/results/tests/test_views.py --- a/evap/results/tests/test_views.py +++ b/evap/results/tests/test_views.py @@ -11,7 +11,7 @@ class TestResultsView(ViewTest): @classmethod def setUpTestData(cls): - mommy.make(UserProfile, username='evap') + mommy.make(UserProfile, username='evap', email="[email protected]") class TestResultsSemesterDetailView(ViewTest): @@ -20,7 +20,7 @@ class TestResultsSemesterDetailView(ViewTest): @classmethod def setUpTestData(cls): - mommy.make(UserProfile, username='evap') + mommy.make(UserProfile, username='evap', email="[email protected]") cls.semester = mommy.make(Semester, id=1) @@ -35,7 +35,7 @@ class TestResultsSemesterCourseDetailView(ViewTest): def setUpTestData(cls): cls.semester = mommy.make(Semester, id=2) - mommy.make(UserProfile, username='evap', groups=[Group.objects.get(name='Staff')]) + mommy.make(UserProfile, username='evap', groups=[Group.objects.get(name='Staff')], email="[email protected]") contributor = UserProfile.objects.get(username="contributor") responsible = UserProfile.objects.get(username="responsible") # contributor = mommy.make(UserProfile, username='contributor') # Add again when fixtures are removed @@ -74,14 +74,15 @@ def test_wrong_state(self): def test_private_course(self): student = UserProfile.objects.get(username="student") + student_external = UserProfile.objects.get(username="student_external") contributor = UserProfile.objects.get(username="contributor") responsible = UserProfile.objects.get(username="responsible") other_responsible = UserProfile.objects.get(username="other_responsible") test1 = mommy.make(UserProfile, username="test1") test2 = mommy.make(UserProfile, username="test2") - mommy.make(UserProfile, username="random") + mommy.make(UserProfile, username="random", email="[email protected]") degree = mommy.make(Degree) - private_course = mommy.make(Course, state='published', is_private=True, semester=self.semester, participants=[student, test1, test2], voters=[test1, test2], degrees=[degree]) + private_course = mommy.make(Course, state='published', is_private=True, semester=self.semester, participants=[student, student_external, test1, test2], voters=[test1, test2], degrees=[degree]) mommy.make(Contribution, course=private_course, contributor=responsible, can_edit=True, responsible=True, comment_visibility=Contribution.ALL_COMMENTS) mommy.make(Contribution, course=private_course, contributor=other_responsible, can_edit=True, responsible=True, comment_visibility=Contribution.ALL_COMMENTS) mommy.make(Contribution, course=private_course, contributor=contributor, can_edit=True) @@ -99,6 +100,7 @@ def test_private_course(self): self.assertIn(private_course.name, page) page = self.app.get(url, user='evap') self.assertIn(private_course.name, page) + self.get_assert_403(url, 'student_external') # external users can't see results semester view url = '/results/semester/%s/course/%s' % (self.semester.id, private_course.id) self.get_assert_403(url, "random") @@ -107,6 +109,7 @@ def test_private_course(self): self.get_assert_200(url, "other_responsible") self.get_assert_200(url, "contributor") self.get_assert_200(url, "evap") + self.get_assert_200(url, "student_external") # this external user participates in the course and can see the results def test_textanswer_visibility_for_responsible(self): page = self.app.get("/results/semester/1/course/1", user='responsible') @@ -275,3 +278,7 @@ def test_textanswer_visibility_for_student(self): self.assertNotIn(".other_responsible_changed_published.", page) self.assertNotIn(".other_responsible_orig_private.", page) self.assertNotIn(".other_responsible_orig_notreviewed.", page) + + def test_textanswer_visibility_for_student_external(self): + # the external user does not participate in or contribute to the course and therefore can't see the results + self.get_assert_403("/results/semester/1/course/1", 'student_external')
Restrict result access for external users External users should only be able to see results for courses they participated in or contributed to. This could include completely removing the results pages for those users because own courses can be accessed directly. Internal users should still be able to see the results for all (non-private) courses.
2018-01-15T20:14:12
e-valuation/EvaP
1,089
e-valuation__EvaP-1089
[ "1065" ]
f4b5068b9cf7d79b8f86a4a391beda584262a5ba
diff --git a/evap/grades/forms.py b/evap/grades/forms.py --- a/evap/grades/forms.py +++ b/evap/grades/forms.py @@ -5,6 +5,10 @@ from evap.grades.models import GradeDocument +class GradeDocumentFileWidget(forms.widgets.ClearableFileInput): + template_name = 'grade_document_file_widget.html' + + class GradeDocumentForm(forms.ModelForm): # see CourseForm (staff/forms.py) for details, why the following two fields are needed last_modified_time_2 = forms.DateTimeField(label=_("Last modified"), required=False, localize=True, disabled=True) @@ -13,6 +17,7 @@ class GradeDocumentForm(forms.ModelForm): class Meta: model = GradeDocument fields = ('description_de', 'description_en', 'file', 'last_modified_time_2', 'last_modified_user_2') + widgets = {'file': GradeDocumentFileWidget()} def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) diff --git a/evap/settings.py b/evap/settings.py --- a/evap/settings.py +++ b/evap/settings.py @@ -205,7 +205,6 @@ "django.contrib.auth.context_processors.auth", "django.template.context_processors.debug", "django.template.context_processors.i18n", - "django.template.context_processors.media", "django.template.context_processors.static", "django.template.context_processors.request", "django.contrib.messages.context_processors.messages", @@ -296,9 +295,6 @@ # Absolute filesystem path to the directory that will hold user-uploaded files. MEDIA_ROOT = os.path.join(BASE_DIR, "upload") -# URL that handles the media served from MEDIA_ROOT. -MEDIA_URL = '/media/' - # the backend used for downloading attachments # see https://github.com/johnsensible/django-sendfile for further information SENDFILE_BACKEND = 'sendfile.backends.simple'
Check MEDIA_URL setting We need MEDIA_ROOT since files are uploaded for importing, and also grades. the former are not downloaded at all, the latter are downloaded only via sendfiles. Therefore we probably don't need the MEDIA_URL setting, since no files are directly downloaded. We probably also don't need [this code in the urls.py](https://github.com/fsr-itse/EvaP/blob/master/evap/urls.py#L23). If we do, it should be [updated](https://docs.djangoproject.com/en/2.0/howto/static-files/#serving-files-uploaded-by-a-user-during-development).
The `MEDIA_URL` is currently used when editing an already uploaded grade document. The file field in the form shows the uploaded file with a direct link. So what do you suggest? summary of our discussion: the direct link is not good since it circumvents django permission checking and lets everyone download the grade documents. on production, that part of the server config was disabled for quite some time. we should make this a django view, the only question is how to put that into a form field. and then we can remove the MEDIA_URL setting. the easiest way is probably to override the template of the widget and let that template use the url to our view. the underlying problem is that the default widget for FileFields is the ClearableFileInput widget, which renders a url using the MEDIA_URL setting (at least it looks like that to me). we are not using MEDIA_URL but instead our views with django-sendfile. one could use some mod_wsgi configuration to use MEDIA_URL and let apache and mod_wsgi do the authorization, but i'm not sure how that would work during development without apache and we can simply stick to the existing solution instead.
2018-01-25T19:56:16
e-valuation/EvaP
1,105
e-valuation__EvaP-1105
[ "1100", "1100" ]
10aeb70484f209c8ef96422231f49deccad5fc20
diff --git a/evap/student/views.py b/evap/student/views.py --- a/evap/student/views.py +++ b/evap/student/views.py @@ -3,7 +3,9 @@ from django.contrib import messages from django.core.exceptions import PermissionDenied, SuspiciousOperation from django.db import transaction +from django.http import HttpResponse from django.shortcuts import get_object_or_404, redirect, render +from django.urls import reverse from django.utils.translation import ugettext as _ from evap.evaluation.auth import participant_required @@ -13,6 +15,7 @@ from evap.student.forms import QuestionsForm from evap.student.tools import question_id +SUCCESS_MAGIC_STRING = 'vote submitted successfully' @participant_required def index(request): @@ -58,12 +61,11 @@ def vote_preview(request, course, for_rendering_in_modal=False): @participant_required def vote(request, course_id): - # retrieve course and make sure that the user is allowed to vote + course = get_object_or_404(Course, id=course_id) if not course.can_user_vote(request.user): raise PermissionDenied - # prevent a user from voting on themselves. contributions_to_vote_on = course.contributions.exclude(contributor=request.user).all() form_groups = helper_create_voting_form_groups(request, contributions_to_vote_on) @@ -85,6 +87,8 @@ def vote(request, course_id): vote_end_datetime=course.vote_end_datetime, hours_left_for_evaluation=course.time_left_for_evaluation.seconds//3600, minutes_left_for_evaluation=(course.time_left_for_evaluation.seconds//60)%60, + success_magic_string=SUCCESS_MAGIC_STRING, + success_redirect_url=reverse('student:index'), evaluation_ends_soon=course.evaluation_ends_soon()) return render(request, "student_vote.html", template_data) @@ -121,7 +125,7 @@ def vote(request, course_id): course.course_evaluated.send(sender=Course, request=request, semester=course.semester) messages.success(request, _("Your vote was recorded.")) - return redirect('student:index') + return HttpResponse(SUCCESS_MAGIC_STRING) def helper_create_voting_form_groups(request, contributions):
diff --git a/evap/student/tests/test_views.py b/evap/student/tests/test_views.py --- a/evap/student/tests/test_views.py +++ b/evap/student/tests/test_views.py @@ -6,6 +6,7 @@ from evap.evaluation.models import UserProfile, Course, Questionnaire, Question, Contribution, TextAnswer, RatingAnswerCounter from evap.evaluation.tests.tools import WebTest, ViewTest from evap.student.tools import question_id +from evap.student.views import SUCCESS_MAGIC_STRING class TestStudentIndexView(ViewTest): @@ -73,6 +74,7 @@ def test_incomplete_form(self): self.fill_form(form, fill_complete=False) response = form.submit() + self.assertEqual(response.status_code, 200) self.assertIn("vote for all rating questions", response) form = page.forms["student-vote-form"] @@ -89,12 +91,14 @@ def test_answer(self): page = self.get_assert_200(self.url, user=self.voting_user1.username) form = page.forms["student-vote-form"] self.fill_form(form, fill_complete=True) - form.submit() + response = form.submit() + self.assertEqual(SUCCESS_MAGIC_STRING, response.body.decode()) page = self.get_assert_200(self.url, user=self.voting_user2.username) form = page.forms["student-vote-form"] self.fill_form(form, fill_complete=True) - form.submit() + response = form.submit() + self.assertEqual(SUCCESS_MAGIC_STRING, response.body.decode()) self.assertEqual(len(TextAnswer.objects.all()), 6) self.assertEqual(len(RatingAnswerCounter.objects.all()), 4) @@ -139,3 +143,13 @@ def test_user_cannot_vote_for_themselves(self): response = self.get_assert_200(self.url, user=self.voting_user1) self.assertTrue(any(contributor == self.contributor1 for contributor, _, _, _ in response.context['contributor_form_groups']), "Regular students should see the questionnaire about a contributor") + + def test_user_logged_out(self): + page = self.get_assert_200(self.url, user=self.voting_user1.username) + form = page.forms["student-vote-form"] + self.fill_form(form, fill_complete=True) + page = self.get_assert_302(reverse("django-auth-logout"), user=self.voting_user1.username) + response = form.submit() + self.assertEqual(response.status_code, 302) + self.assertNotIn(SUCCESS_MAGIC_STRING, response) +
Release Sisyphus data only after successful post When a user enters answers on the student vote page and then logs out in another window before submitting the form, Sisyphus releases the form data on the form submit, because a 302 redirect to the login page is not an error case. The data should be kept in browser storage until the vote was successfully counted. Release Sisyphus data only after successful post When a user enters answers on the student vote page and then logs out in another window before submitting the form, Sisyphus releases the form data on the form submit, because a 302 redirect to the login page is not an error case. The data should be kept in browser storage until the vote was successfully counted.
2018-02-12T20:35:36
e-valuation/EvaP
1,110
e-valuation__EvaP-1110
[ "1071" ]
8d68e60504c91620805b0b5d6af0a9463d64f578
diff --git a/evap/results/views.py b/evap/results/views.py --- a/evap/results/views.py +++ b/evap/results/views.py @@ -6,7 +6,8 @@ from evap.evaluation.models import Semester, Degree, Contribution from evap.evaluation.auth import internal_required -from evap.results.tools import calculate_results, calculate_average_grades_and_deviation, TextResult, RatingResult, HeadingResult, COMMENT_STATES_REQUIRED_FOR_VISIBILITY +from evap.results.tools import calculate_results, calculate_average_grades_and_deviation, TextResult, RatingResult, \ + HeadingResult, COMMENT_STATES_REQUIRED_FOR_VISIBILITY, YesNoResult @internal_required @@ -64,9 +65,15 @@ def course_detail(request, semester_id, course_id): else: public_view = request.GET.get('public_view') == 'true' # if parameter is not given, show own view. + # If grades are not published, there is no public view + if not course.can_publish_grades: + public_view = False + represented_users = list(request.user.represented_users.all()) represented_users.append(request.user) + show_grades = request.user.is_reviewer or course.can_publish_grades + # filter text answers for section in sections: results = [] @@ -106,11 +113,13 @@ def course_detail(request, semester_id, course_id): contributor_sections.setdefault(section.contributor, {'total_votes': 0, 'sections': []})['sections'].append(section) - # Sum up all Sections for this contributor. - # If section is not a RatingResult: - # Add 1 as we assume it is a TextResult or something similar that should be displayed. - contributor_sections[section.contributor]['total_votes'] +=\ - sum([s.total_count if isinstance(s, RatingResult) else 1 for s in section.results]) + for result in section.results: + if isinstance(result, TextResult): + contributor_sections[section.contributor]['total_votes'] += 1 + elif isinstance(result, RatingResult) or isinstance(result, YesNoResult): + # Only count rating results if we show the grades. + if show_grades: + contributor_sections[section.contributor]['total_votes'] += result.total_count # Show a warning if course is still in evaluation (for reviewer preview). evaluation_warning = course.state != 'published' @@ -120,8 +129,6 @@ def course_detail(request, semester_id, course_id): # Users who can open the results page see a warning message in this case. sufficient_votes_warning = not course.can_publish_grades - show_grades = request.user.is_reviewer or course.can_publish_grades - course.avg_grade, course.avg_deviation = calculate_average_grades_and_deviation(course) template_data = dict(
Fix results view for courses where results can't be published The results page for a course where the results can't be published because it didn't get enough votes is not displayed correctly: - Contributors can't see any non-text answers (that's correct) - but not all contributor cards are collapsed accordingly. If at least one vote exists, the respective contributor card is open, the warning text is not shown and no useful information is shown inside the card (see screenshot 1). The card should be closed in this case. - Staff users initially see the "public" view and can change the view to `Myself`. On results pages of courses that didn't get enough votes, the `Public` button is missing (that was by design, because a public view does not exist for these courses) - now it's confusing because the initial view is something that's not accessible via the buttons. Screenshot 1 (Contributor): ![cardopen](https://user-images.githubusercontent.com/1781719/34488419-c82cd8d0-efd8-11e7-8f09-0c4ff0f06739.PNG) Screenshot 2 (Staff): ![viewbtn](https://user-images.githubusercontent.com/1781719/34488426-cd684118-efd8-11e7-80ba-c05e1ff34f93.PNG)
2018-02-22T17:48:44
e-valuation/EvaP
1,119
e-valuation__EvaP-1119
[ "1032", "1032" ]
f293c3d9ce5d91b7947d1ddf17833445d42531f1
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -6,6 +6,7 @@ from django.conf import settings from django.contrib import messages from django.contrib.auth.models import AbstractBaseUser, BaseUserManager, Group, PermissionsMixin +from django.core.cache import cache from django.core.exceptions import ValidationError from django.core.mail import EmailMessage from django.db import models, transaction @@ -388,7 +389,8 @@ def publish(self): @transition(field=state, source='published', target='reviewed') def unpublish(self): - pass + from evap.results.tools import get_results_cache_key + cache.delete(get_results_cache_key(self)) @property def student_state(self): diff --git a/evap/results/tools.py b/evap/results/tools.py --- a/evap/results/tools.py +++ b/evap/results/tools.py @@ -99,11 +99,15 @@ def get_counts(question, answer_counters): return counts +def get_results_cache_key(course): + return 'evap.staff.results.tools.calculate_results-{:d}'.format(course.id) + + def calculate_results(course, force_recalculation=False): if course.state != "published": return _calculate_results_impl(course) - cache_key = 'evap.staff.results.tools.calculate_results-{:d}'.format(course.id) + cache_key = get_results_cache_key(course) if force_recalculation: cache.delete(cache_key) return cache.get_or_set(cache_key, partial(_calculate_results_impl, course), None)
diff --git a/evap/results/tests/test_tools.py b/evap/results/tests/test_tools.py --- a/evap/results/tests/test_tools.py +++ b/evap/results/tests/test_tools.py @@ -7,7 +7,7 @@ from model_mommy import mommy from evap.evaluation.models import Contribution, RatingAnswerCounter, Questionnaire, Question, Course, UserProfile -from evap.results.tools import get_answers, get_answers_from_answer_counters, calculate_average_grades_and_deviation, calculate_results +from evap.results.tools import get_answers, get_answers_from_answer_counters, get_results_cache_key, calculate_average_grades_and_deviation, calculate_results from evap.staff.tools import merge_users @@ -15,11 +15,18 @@ class TestCalculateResults(TestCase): def test_caches_published_course(self): course = mommy.make(Course, state='published') - self.assertIsNone(cache.get('evap.staff.results.tools.calculate_results-{:d}'.format(course.id))) + self.assertIsNone(cache.get(get_results_cache_key(course))) calculate_results(course) - self.assertIsNotNone(cache.get('evap.staff.results.tools.calculate_results-{:d}'.format(course.id))) + self.assertIsNotNone(cache.get(get_results_cache_key(course))) + + def test_cache_unpublished_course(self): + course = mommy.make(Course, state='published') + calculate_results(course) + course.unpublish() + + self.assertIsNone(cache.get(get_results_cache_key(course))) def test_calculation_results(self): contributor1 = mommy.make(UserProfile)
Missing cache refresh on course state change You can unpublish a course that is in the state "published". Then, you can change the courses questionnaires. If the course gets published after changing the questionnaires, the old cache will not be invalidated. If someone opens the courses result page, the old questionnaires will still be shown. The cache entry should be deleted when a staff user unpublishes it. Missing cache refresh on course state change You can unpublish a course that is in the state "published". Then, you can change the courses questionnaires. If the course gets published after changing the questionnaires, the old cache will not be invalidated. If someone opens the courses result page, the old questionnaires will still be shown. The cache entry should be deleted when a staff user unpublishes it.
2018-03-02T18:16:49
e-valuation/EvaP
1,120
e-valuation__EvaP-1120
[ "543" ]
e52c4bdc0378548fd169d641ac4f668eb6f956d3
diff --git a/evap/rewards/models.py b/evap/rewards/models.py --- a/evap/rewards/models.py +++ b/evap/rewards/models.py @@ -1,6 +1,7 @@ from collections import OrderedDict from django.utils.translation import ugettext_lazy as _ +from django.dispatch import Signal from django.db import models @@ -46,6 +47,8 @@ class RewardPointGranting(models.Model): granting_time = models.DateTimeField(verbose_name=_("granting time"), auto_now_add=True) value = models.IntegerField(verbose_name=_("value"), default=0) + granted_by_removal = Signal(providing_args=['users']) + class RewardPointRedemption(models.Model): user_profile = models.ForeignKey('evaluation.UserProfile', models.CASCADE, related_name="reward_point_redemptions") diff --git a/evap/rewards/tools.py b/evap/rewards/tools.py --- a/evap/rewards/tools.py +++ b/evap/rewards/tools.py @@ -2,12 +2,12 @@ from django.conf import settings from django.contrib import messages -from django.db import transaction +from django.db import models, transaction from django.utils.translation import ugettext as _ from django.dispatch import receiver from django.contrib.auth.decorators import login_required -from evap.evaluation.models import Course +from evap.evaluation.models import Semester, Course, UserProfile from evap.rewards.models import RewardPointGranting, RewardPointRedemption, RewardPointRedemptionEvent, \ SemesterActivation, NoPointsSelected, NotEnoughPoints, RedemptionEventExpired @@ -59,30 +59,58 @@ def reward_points_of_user(user): def is_semester_activated(semester): return SemesterActivation.objects.filter(semester=semester, is_active=True).exists() - -# Signal handlers - -@receiver(Course.course_evaluated) -def grant_reward_points(sender, **kwargs): +def grant_reward_points(user, semester): # grant reward points if all conditions are fulfilled - request = kwargs['request'] - semester = kwargs['semester'] - if not can_user_use_reward_points(request.user): - return + if not can_user_use_reward_points(user): + return False # has the semester been activated for reward points? if not is_semester_activated(semester): - return + return False # does the user have at least one required course in this semester? - required_courses = Course.objects.filter(participants=request.user, semester=semester, is_required_for_reward=True) + required_courses = Course.objects.filter(participants=user, semester=semester, is_required_for_reward=True) if not required_courses.exists(): - return + return False # does the user not participate in any more required courses in this semester? - if required_courses.exclude(voters=request.user).exists(): - return + if required_courses.exclude(voters=user).exists(): + return False # did the user not already get reward points for this semester? - if RewardPointGranting.objects.filter(user_profile=request.user, semester=semester).exists(): - return + if RewardPointGranting.objects.filter(user_profile=user, semester=semester).exists(): + return False # grant reward points - RewardPointGranting.objects.create(user_profile=request.user, semester=semester, value=settings.REWARD_POINTS_PER_SEMESTER) - messages.success(request, _("You just have earned reward points for this semester because you evaluated all your courses. Thank you very much!")) + RewardPointGranting.objects.create(user_profile=user, semester=semester, value=settings.REWARD_POINTS_PER_SEMESTER) + return True + +# Signal handlers + +@receiver(Course.course_evaluated) +def grant_reward_points_after_evaluate(sender, **kwargs): + request = kwargs['request'] + semester = kwargs['semester'] + + if grant_reward_points(request.user, semester): + messages.success(request, _("You just have earned reward points for this semester because you evaluated all your courses. Thank you very much!")) + +@receiver(models.signals.m2m_changed, sender=Course.participants.through) +def grant_reward_points_after_delete(instance, action, reverse, pk_set, **kwargs): + # if users do not need to evaluate a course anymore, they may have earned reward points + if action == 'post_remove': + affected = [] + + if reverse: + # a course got removed from a participant + user = instance + + for semester in Semester.objects.filter(course__pk__in=pk_set): + if grant_reward_points(user, semester): + affected = [user] + else: + # a participant got removed from a course + course = instance + + for user in UserProfile.objects.filter(pk__in=pk_set): + if grant_reward_points(user, course.semester): + affected.append(user) + + if affected: + RewardPointGranting.granted_by_removal.send(sender=RewardPointGranting, users=affected) diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -7,6 +7,7 @@ from django.conf import settings from django.contrib import messages from django.core.exceptions import PermissionDenied, SuspiciousOperation +from django.dispatch import receiver from django.db import IntegrityError, transaction from django.db.models import BooleanField, Case, Count, ExpressionWrapper, IntegerField, Max, Prefetch, Q, Sum, When from django.forms import formset_factory @@ -569,6 +570,13 @@ def course_edit(request, semester_id, course_id): @staff_required def helper_course_edit(request, semester, course): + @receiver(RewardPointGranting.granted_by_removal) + def notify_reward_points(users, **kwargs): + names = ", ".join('"{}"'.format(user.username) for user in users) + messages.info(request, ungettext("The removal of participants has granted {affected} user reward points: {names}.", + "The removal of participants has granted {affected} users reward points: {names}.", + len(users)).format(affected=len(users), names=names)) + InlineContributionFormset = inlineformset_factory(Course, Contribution, formset=ContributionFormSet, form=ContributionForm, extra=1) form = CourseForm(request.POST or None, instance=course) @@ -1140,6 +1148,10 @@ def user_import(request): @staff_required def user_edit(request, user_id): + @receiver(RewardPointGranting.granted_by_removal) + def notify_reward_points(users, **kwargs): + messages.info(request, _('The removal of courses has granted the user "{}" reward points for the active semester.'.format(users[0].username))) + user = get_object_or_404(UserProfile, id=user_id) form = UserForm(request.POST or None, request.FILES or None, instance=user)
diff --git a/evap/rewards/tests/test_tools.py b/evap/rewards/tests/test_tools.py --- a/evap/rewards/tests/test_tools.py +++ b/evap/rewards/tests/test_tools.py @@ -1,4 +1,5 @@ from django.conf import settings +from django.test import TestCase from django.urls import reverse from model_mommy import mommy @@ -37,7 +38,7 @@ def test_semester_not_activated(self): def test_everything_works(self): SemesterActivation.objects.create(semester=self.course.semester, is_active=True) self.form.submit() - self.assertEqual(settings.REWARD_POINTS_PER_SEMESTER, reward_points_of_user(self.student)) + self.assertEqual(reward_points_of_user(self.student), settings.REWARD_POINTS_PER_SEMESTER) def test_semester_activated_not_all_courses(self): SemesterActivation.objects.create(semester=self.course.semester, is_active=True) @@ -50,3 +51,22 @@ def test_already_got_points(self): mommy.make(RewardPointGranting, user_profile=self.student, value=0, semester=self.course.semester) self.form.submit() self.assertEqual(0, reward_points_of_user(self.student)) + +class TestGrantRewardPointsParticipationChange(TestCase): + @classmethod + def setUpTestData(cls): + cls.course = mommy.make(Course) + already_evaluated = mommy.make(Course, semester=cls.course.semester) + SemesterActivation.objects.create(semester=cls.course.semester, is_active=True) + cls.student = mommy.make(UserProfile, username="student", email="[email protected]", + courses_participating_in=[cls.course, already_evaluated], courses_voted_for=[already_evaluated]) + + def test_participant_removed_from_course(self): + self.course.participants.remove(self.student) + + self.assertEqual(reward_points_of_user(self.student), settings.REWARD_POINTS_PER_SEMESTER) + + def test_course_removed_from_participant(self): + self.student.courses_participating_in.remove(self.course) + + self.assertEqual(reward_points_of_user(self.student), settings.REWARD_POINTS_PER_SEMESTER) diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -13,6 +13,7 @@ Questionnaire, Question, EmailTemplate, Degree, FaqSection, FaqQuestion, \ RatingAnswerCounter from evap.evaluation.tests.tools import FuzzyInt, WebTest, ViewTest +from evap.rewards.models import SemesterActivation from evap.staff.tools import generate_import_filename @@ -139,6 +140,24 @@ def test_questionnaire_edit(self): form.submit() self.assertTrue(UserProfile.objects.filter(username='lfo9e7bmxp1xi').exists()) + def test_reward_points_granting_message(self): + course = mommy.make(Course) + already_evaluated = mommy.make(Course, semester=course.semester) + SemesterActivation.objects.create(semester=course.semester, is_active=True) + student = mommy.make(UserProfile, email="[email protected]", + courses_participating_in=[course, already_evaluated], courses_voted_for=[already_evaluated]) + + page = self.get_assert_200(reverse('staff:user_edit', args=[student.pk]), 'staff') + form = page.forms['user-form'] + form['courses_participating_in'] = [already_evaluated.pk] + + page = form.submit().follow() + # fetch the user name, which became lowercased + student.refresh_from_db() + + self.assertIn("Successfully updated user.", page) + self.assertIn("The removal of courses has granted the user &quot;{}&quot; reward points for the active semester.".format(student.username), page) + class TestUserMergeSelectionView(ViewTest): url = "/staff/user/merge" @@ -886,6 +905,40 @@ def test_remove_responsibility(self): self.assertIn("No responsible contributors found", page) + def test_participant_removal_reward_point_granting_message(self): + already_evaluated = mommy.make(Course, semester=self.course.semester) + SemesterActivation.objects.create(semester=self.course.semester, is_active=True) + other = mommy.make(UserProfile, courses_participating_in=[self.course]) + student = mommy.make(UserProfile, email="[email protected]", + courses_participating_in=[self.course, already_evaluated], courses_voted_for=[already_evaluated]) + + page = self.app.get(reverse('staff:course_edit', args=[self.course.semester.pk, self.course.pk]), user='staff') + + # remove a single participant + form = page.forms['course-form'] + form['participants'] = [other.pk] + page = form.submit('operation', value='save').follow() + + self.assertIn("The removal of participants has granted 1 user reward points: &quot;{}&quot;".format(student.username), page) + + def test_remove_participants(self): + already_evaluated = mommy.make(Course, semester=self.course.semester) + SemesterActivation.objects.create(semester=self.course.semester, is_active=True) + student = mommy.make(UserProfile, courses_participating_in=[self.course]) + + for name in ["a", "b", "c", "d", "e"]: + mommy.make(UserProfile, username=name, email="{}@institution.example.com".format(name), + courses_participating_in=[self.course, already_evaluated], courses_voted_for=[already_evaluated]) + + page = self.app.get(reverse('staff:course_edit', args=[self.course.semester.pk, self.course.pk]), user='staff') + + # remove five participants + form = page.forms['course-form'] + form['participants'] = [student.pk] + page = form.submit('operation', value='save').follow() + + self.assertIn("The removal of participants has granted 5 users reward points: &quot;a&quot;, &quot;b&quot;, &quot;c&quot;, &quot;d&quot;, &quot;e&quot;.", page) + def test_last_modified_user(self): """ Tests whether the button "Save and approve" does only change the
Reward point check on participation change When the participations of users in a course are removed this might qualify them to receive reward points in case all their other participations in the active semester have already been evaluated. This could happen by removing a participant in a course form or removing a course in the user's profile. The platform should check for these cases and grant reward points accordingly.
2018-03-02T18:30:23
e-valuation/EvaP
1,140
e-valuation__EvaP-1140
[ "1124" ]
a31bcc3972802da9ce7e7daf3c52e810834221da
diff --git a/evap/contributor/views.py b/evap/contributor/views.py --- a/evap/contributor/views.py +++ b/evap/contributor/views.py @@ -68,12 +68,9 @@ def course_view(request, course_id): course = get_object_or_404(Course, id=course_id) # check rights - if not (course.is_user_editor_or_delegate(user) and course.state in ['prepared', 'editor_approved', 'approved', 'in_evaluation', 'evaluated', 'reviewed']): + if not course.is_user_editor_or_delegate(user) or course.state not in ['prepared', 'editor_approved', 'approved', 'in_evaluation', 'evaluated', 'reviewed']: raise PermissionDenied - if course.is_user_editor_or_delegate(user): - messages.info(request, _('You cannot edit this course because it has already been approved.')) - InlineContributionFormset = inlineformset_factory(Course, Contribution, formset=ContributionFormSet, form=EditorContributionForm, extra=0) form = CourseForm(request.POST or None, instance=course) @@ -85,7 +82,7 @@ def course_view(request, course_id): field.disabled = True template_data = dict(form=form, formset=formset, course=course, editable=False, - responsibles=[contributor.username for contributor in course.responsible_contributors]) + responsibles=[contributor.username for contributor in course.responsible_contributors]) return render(request, "contributor_course_form.html", template_data)
diff --git a/evap/contributor/tests/test_views.py b/evap/contributor/tests/test_views.py --- a/evap/contributor/tests/test_views.py +++ b/evap/contributor/tests/test_views.py @@ -52,8 +52,10 @@ def test_wrong_state(self): def test_information_message(self): self.course.editor_approve() self.course.save() + page = self.app.get(self.url, user='editor') self.assertContains(page, "You cannot edit this course because it has already been approved") + self.assertNotContains(page, "Please review the course's details below, add all contributors and select suitable questionnaires. Once everything is okay, please approve the course on the bottom of the page.") class TestContributorCoursePreviewView(ViewTest): @@ -166,3 +168,7 @@ def test_contact_modal_escape(self): self.assertIn("Adam &amp; Eve", page) self.assertNotIn("Adam & Eve", page) + def test_information_message(self): + page = self.app.get(self.url, user='editor') + self.assertNotContains(page, "You cannot edit this course because it has already been approved") + self.assertContains(page, "Please review the course's details below, add all contributors and select suitable questionnaires. Once everything is okay, please approve the course on the bottom of the page.")
Misguiding messages on contributor's course edit page When a course is already approved, the contributor course edit page shows a message saying you can't edit this course anymore (introduced in #1076). Also, a message instructing the user to edit the data is shown. This is misleading. The second message shouldn't be there. ![grafik](https://user-images.githubusercontent.com/13838962/37304966-601f88f0-2633-11e8-8ca8-e49b3c07dc29.png) @janno42 please make sure I'm not missing out anything here.
Correct, this message should be removed for courses already approved by an editor.
2018-03-26T18:14:47
e-valuation/EvaP
1,154
e-valuation__EvaP-1154
[ "1094" ]
0ee39650b11a603e1d9afd506dbd5ead0a5914d3
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -820,6 +820,10 @@ def is_private(self): def is_published(self): return self.state == self.PUBLISHED + @property + def is_reviewed(self): + return self.state != self.NOT_REVIEWED + def save(self, *args, **kwargs): super().save(*args, **kwargs) assert self.answer != self.original_answer diff --git a/evap/staff/tools.py b/evap/staff/tools.py --- a/evap/staff/tools.py +++ b/evap/staff/tools.py @@ -9,11 +9,12 @@ from django.core.cache.utils import make_template_fragment_key from django.core.exceptions import SuspiciousOperation from django.db import transaction +from django.db.models import Count from django.conf import settings from django.utils.translation import ugettext_lazy as _ from django.utils.safestring import mark_safe -from evap.evaluation.models import UserProfile, Course, Contribution +from evap.evaluation.models import UserProfile, Course, Contribution, TextAnswer from evap.grades.models import GradeDocument from evap.results.tools import collect_results @@ -183,3 +184,12 @@ def merge_users(main_user, other_user, preview=False): other_user.delete() return merged_user, errors, warnings + + +def find_next_unreviewed_course(semester, excluded): + return semester.course_set.exclude(pk__in=excluded) \ + .exclude(state='published') \ + .exclude(can_publish_text_results=False) \ + .filter(contributions__textanswer_set__state=TextAnswer.NOT_REVIEWED) \ + .annotate(num_unreviewed_textanswers=Count("contributions__textanswer_set")) \ + .order_by('vote_end_date', '-num_unreviewed_textanswers').first() diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -34,7 +34,7 @@ from evap.staff.importers import EnrollmentImporter, UserImporter, PersonImporter from evap.staff.tools import (bulk_delete_users, custom_redirect, delete_import_file, delete_navbar_cache_for_users, forward_messages, get_import_file_content_or_raise, import_file_exists, merge_users, - save_import_file, get_parameter_from_url_or_session) + save_import_file, get_parameter_from_url_or_session, find_next_unreviewed_course) from evap.student.forms import QuestionnaireVotingForm from evap.student.views import get_valid_form_groups_or_render_vote_page @@ -796,7 +796,8 @@ def course_comments(request, semester_id, course_id): if not course.can_publish_text_results: raise PermissionDenied - filter_comments = get_parameter_from_url_or_session(request, "filter_comments") + view = request.GET.get('view', 'quick') + filter_comments = view == "unreviewed" CommentSection = namedtuple('CommentSection', ('questionnaire', 'contributor', 'label', 'is_responsible', 'results')) course_sections = [] @@ -815,9 +816,23 @@ def course_comments(request, semester_id, course_id): section_list = course_sections if contribution.is_general else contributor_sections section_list.append(CommentSection(questionnaire, contribution.contributor, contribution.label, contribution.responsible, text_results)) - template_data = dict(semester=semester, course=course, course_sections=course_sections, - contributor_sections=contributor_sections, filter_comments=filter_comments) - return render(request, "staff_course_comments.html", template_data) + template_data = dict(semester=semester, course=course, view=view) + + if view == 'quick': + visited = request.session.get('review-visited', set()) + visited.add(course.pk) + next_course = find_next_unreviewed_course(semester, visited) + if not next_course and len(visited) > 1: + visited = {course.pk} + next_course = find_next_unreviewed_course(semester, visited) + request.session['review-visited'] = visited + + sections = course_sections + contributor_sections + template_data.update(dict(sections=sections, next_course=next_course)) + return render(request, "staff_course_comments_quick.html", template_data) + else: + template_data.update(dict(course_sections=course_sections, contributor_sections=contributor_sections)) + return render(request, "staff_course_comments_full.html", template_data) @require_POST
diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -1311,14 +1311,13 @@ def setUpTestData(cls): top_course_questionnaire = mommy.make(Questionnaire, type=Questionnaire.TOP) mommy.make(Question, questionnaire=top_course_questionnaire, type="L") cls.course.general_contribution.questionnaires.set([top_course_questionnaire]) - - def test_comments_showing_up(self): questionnaire = mommy.make(Questionnaire) question = mommy.make(Question, questionnaire=questionnaire, type='T') - contribution = mommy.make(Contribution, course=self.course, contributor=mommy.make(UserProfile), questionnaires=[questionnaire]) - answer = 'should show up' - mommy.make(TextAnswer, contribution=contribution, question=question, answer=answer) + contribution = mommy.make(Contribution, course=cls.course, contributor=mommy.make(UserProfile), questionnaires=[questionnaire]) + cls.answer = 'should show up' + mommy.make(TextAnswer, contribution=contribution, question=question, answer=cls.answer) + def test_comments_showing_up(self): # in a course with only one voter the view should not be available self.app.get(self.url, user='staff', status=403) @@ -1326,8 +1325,17 @@ def test_comments_showing_up(self): self.let_user_vote_for_course(self.student2, self.course) # now it should work + self.app.get(self.url, user='staff', status=200) + + def test_comments_quick_view(self): + self.let_user_vote_for_course(self.student2, self.course) page = self.app.get(self.url, user='staff', status=200) - self.assertContains(page, answer) + self.assertContains(page, self.answer) + + def test_comments_full_view(self): + self.let_user_vote_for_course(self.student2, self.course) + page = self.app.get(self.url + '?view=full', user='staff', status=200) + self.assertContains(page, self.answer) class TestCourseCommentEditView(ViewTest):
Continuous text answer review When reviewing text answers, it should be possible to faster approve individual answers. Currently two ideas exist for the reviewing UI: - Either approved answers are removed so that the next answer and its yes and no buttons move up to the exact same position where the old answer was. This allows to approve answers without moving the mouse every time. - Another possibility (which would be even better) is to only show a single text answer at a time and to approve/hide it by pressing a key on the keyboard. After each choice the next answer is shown. Additionally, after all text answers for a course have been reviewed, it should be possible to easily switch to the next course (e.g. navigation button to "next course" or another hotkey).
@janno42, @pixunil you guys keep in mind that #1130 needs to be integrated somehow?
2018-04-13T20:13:35
e-valuation/EvaP
1,156
e-valuation__EvaP-1156
[ "1150" ]
9231fe2ad772c429e004c94395c1ad208fa3150a
diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -119,9 +119,10 @@ def __init__(self): stats.num_comments_reviewed += course.num_reviewed_textanswers if course.state in ['evaluated', 'reviewed', 'published']: stats.num_courses_evaluated += 1 - stats.num_courses += 1 - stats.first_start = min(stats.first_start, course.vote_start_datetime) - stats.last_end = max(stats.last_end, course.vote_end_date) + if course.state != 'new': + stats.num_courses += 1 + stats.first_start = min(stats.first_start, course.vote_start_datetime) + stats.last_end = max(stats.last_end, course.vote_end_date) degree_stats = OrderedDict(sorted(degree_stats.items(), key=lambda x: x[0].order)) degree_stats['total'] = total_stats
Clean up semester statistics The semester statistics on top of the staff semester view should not include courses which are in state `new`. Some courses are created but are never evaluated and do currently influence the participation percentage although they shouldn't.
2018-04-23T19:02:45
e-valuation/EvaP
1,157
e-valuation__EvaP-1157
[ "1151" ]
4219d3dc4570e967c1309c16c64135503cb6dd0f
diff --git a/evap/rewards/models.py b/evap/rewards/models.py --- a/evap/rewards/models.py +++ b/evap/rewards/models.py @@ -41,6 +41,12 @@ def redemptions_by_user(self): return redemptions_dict + +""" +The two following objects handle reward point amounts. As reward points might be connected to monetary transactions, +these objects may not be altered or deleted after creation. +""" + class RewardPointGranting(models.Model): user_profile = models.ForeignKey('evaluation.UserProfile', models.CASCADE, related_name="reward_point_grantings") semester = models.ForeignKey('evaluation.Semester', models.PROTECT, related_name="reward_point_grantings") @@ -60,3 +66,4 @@ class RewardPointRedemption(models.Model): class SemesterActivation(models.Model): semester = models.OneToOneField('evaluation.Semester', models.CASCADE, related_name='rewards_active') is_active = models.BooleanField(default=False) + diff --git a/evap/rewards/tools.py b/evap/rewards/tools.py --- a/evap/rewards/tools.py +++ b/evap/rewards/tools.py @@ -3,7 +3,9 @@ from django.conf import settings from django.contrib import messages from django.db import models, transaction +from django.db.models import Sum from django.utils.translation import ugettext as _ +from django.utils.translation import ngettext from django.dispatch import receiver from django.contrib.auth.decorators import login_required @@ -59,27 +61,27 @@ def reward_points_of_user(user): def is_semester_activated(semester): return SemesterActivation.objects.filter(semester=semester, is_active=True).exists() -def grant_reward_points(user, semester): - # grant reward points if all conditions are fulfilled +def grant_reward_points_if_eligible(user, semester): if not can_user_use_reward_points(user): - return False - # has the semester been activated for reward points? + return 0, False if not is_semester_activated(semester): - return False + return 0, False # does the user have at least one required course in this semester? required_courses = Course.objects.filter(participants=user, semester=semester, is_required_for_reward=True) if not required_courses.exists(): - return False - # does the user not participate in any more required courses in this semester? - if required_courses.exclude(voters=user).exists(): - return False - # did the user not already get reward points for this semester? - if RewardPointGranting.objects.filter(user_profile=user, semester=semester).exists(): - return False - # grant reward points - RewardPointGranting.objects.create(user_profile=user, semester=semester, value=settings.REWARD_POINTS_PER_SEMESTER) - return True + return 0, False + + # How many points have been granted to this user vs how many should they have (this semester) + granted_points = RewardPointGranting.objects.filter(user_profile=user, semester=semester).aggregate(Sum('value'))['value__sum'] or 0 + progress = float(required_courses.filter(voters=user).count()) / float(required_courses.count()) + target_points = max([points for threshold, points in settings.REWARD_POINTS if threshold <= progress], default=0) + missing_points = target_points - granted_points + + if missing_points > 0: + RewardPointGranting.objects.create(user_profile=user, semester=semester, value=missing_points) + return missing_points, progress >= 1.0 + return 0, False # Signal handlers @@ -88,8 +90,18 @@ def grant_reward_points_after_evaluate(sender, **kwargs): request = kwargs['request'] semester = kwargs['semester'] - if grant_reward_points(request.user, semester): - messages.success(request, _("You just have earned reward points for this semester because you evaluated all your courses. Thank you very much!")) + points_granted, completed_evaluation = grant_reward_points_if_eligible(request.user, semester) + if points_granted: + message = ngettext("You just earned {count} reward point for this semester.", + "You just earned {count} reward points for this semester.", points_granted).format(count=points_granted) + + if completed_evaluation: + message += " " + _("Thank you very much for evaluating all your courses.") + elif Course.objects.filter(participants=request.user, semester=semester, is_required_for_reward=True).exclude(state__in=['evaluated', 'reviewed', 'published'], voters=request.user).exists(): + # at least one course exists that the user hasn't evaluated and is not past its evaluation period + message += " " + _("We're looking forward to receiving feedback for your other courses as well.") + + messages.success(request, message) @receiver(models.signals.m2m_changed, sender=Course.participants.through) def grant_reward_points_after_delete(instance, action, reverse, pk_set, **kwargs): @@ -102,15 +114,16 @@ def grant_reward_points_after_delete(instance, action, reverse, pk_set, **kwargs user = instance for semester in Semester.objects.filter(course__pk__in=pk_set): - if grant_reward_points(user, semester): + if grant_reward_points_if_eligible(user, semester): affected = [user] else: # a participant got removed from a course course = instance for user in UserProfile.objects.filter(pk__in=pk_set): - if grant_reward_points(user, course.semester): + if grant_reward_points_if_eligible(user, course.semester): affected.append(user) if affected: RewardPointGranting.granted_by_removal.send(sender=RewardPointGranting, users=affected) + diff --git a/evap/settings.py b/evap/settings.py --- a/evap/settings.py +++ b/evap/settings.py @@ -45,8 +45,12 @@ GRADE_PERCENTAGE = 0.8 CONTRIBUTION_PERCENTAGE = 0.5 -# number of reward points to be given to a student once all courses of a semester have been voted for -REWARD_POINTS_PER_SEMESTER = 3 +# number of reward points a student should have for a semester after evaluating the given fraction of courses. +REWARD_POINTS = [ + (1.0/3.0, 1), + (2.0/3.0, 2), + (3.0/3.0, 3), +] # days before end date to send reminder REMIND_X_DAYS_AHEAD_OF_END_DATE = [2, 0]
diff --git a/evap/rewards/tests/test_tools.py b/evap/rewards/tests/test_tools.py --- a/evap/rewards/tests/test_tools.py +++ b/evap/rewards/tests/test_tools.py @@ -1,5 +1,5 @@ from django.conf import settings -from django.test import TestCase +from django.test import TestCase, override_settings from django.urls import reverse from model_mommy import mommy @@ -11,6 +11,11 @@ from evap.rewards.tools import reward_points_of_user +@override_settings(REWARD_POINTS=[ + (1.0/3.0, 1), + (2.0/3.0, 2), + (3.0/3.0, 3), +]) class TestGrantRewardPoints(WebTest): csrf_checks = False @@ -38,20 +43,34 @@ def test_semester_not_activated(self): def test_everything_works(self): SemesterActivation.objects.create(semester=self.course.semester, is_active=True) self.form.submit() - self.assertEqual(reward_points_of_user(self.student), settings.REWARD_POINTS_PER_SEMESTER) + self.assertEqual(reward_points_of_user(self.student), 3) def test_semester_activated_not_all_courses(self): SemesterActivation.objects.create(semester=self.course.semester, is_active=True) mommy.make(Course, semester=self.course.semester, participants=[self.student]) self.form.submit() - self.assertEqual(0, reward_points_of_user(self.student)) + self.assertEqual(1, reward_points_of_user(self.student)) - def test_already_got_points(self): + def test_already_got_grant_objects_but_points_missing(self): SemesterActivation.objects.create(semester=self.course.semester, is_active=True) mommy.make(RewardPointGranting, user_profile=self.student, value=0, semester=self.course.semester) self.form.submit() - self.assertEqual(0, reward_points_of_user(self.student)) + self.assertEqual(3, reward_points_of_user(self.student)) + self.assertEqual(2, RewardPointGranting.objects.filter(user_profile=self.student, semester=self.course.semester).count()) + def test_already_got_enough_points(self): + SemesterActivation.objects.create(semester=self.course.semester, is_active=True) + mommy.make(RewardPointGranting, user_profile=self.student, value=3, semester=self.course.semester) + self.form.submit() + self.assertEqual(3, reward_points_of_user(self.student)) + self.assertEqual(1, RewardPointGranting.objects.filter(user_profile=self.student, semester=self.course.semester).count()) + + +@override_settings(REWARD_POINTS=[ + (1.0/3.0, 1), + (2.0/3.0, 2), + (3.0/3.0, 3), +]) class TestGrantRewardPointsParticipationChange(TestCase): @classmethod def setUpTestData(cls): @@ -64,9 +83,10 @@ def setUpTestData(cls): def test_participant_removed_from_course(self): self.course.participants.remove(self.student) - self.assertEqual(reward_points_of_user(self.student), settings.REWARD_POINTS_PER_SEMESTER) + self.assertEqual(reward_points_of_user(self.student), 3) def test_course_removed_from_participant(self): self.student.courses_participating_in.remove(self.course) - self.assertEqual(reward_points_of_user(self.student), settings.REWARD_POINTS_PER_SEMESTER) + self.assertEqual(reward_points_of_user(self.student), 3) +
Proportional rewards Students should get a reward even if they missed an evaluation to still motivate them to finish the other evaluations. - Once students have evaluated all courses they participated in, they receive `REWARD_POINTS_FULLY_EVALUATED` (default: 3) reward points (already implemented, setting is currently called `REWARD_POINTS_PER_SEMESTER`). - If students didn't evaluate all their courses, they can still receive reward points once for all courses they participated in either the evaluation period ended or they already submitted their evaluation for the course. - They receive `REWARD_POINTS_TWO_THIRDS` (default: 2) reward points if they evaluated at least 66% of their courses. - They receive `REWARD_POINTS_ONE_THIRD` (default: 1) reward points if they evaluated at least 33% of their courses.
so, basically, `floor(evaluated_courses / total_courses * REWARD_POINTS_PER_SEMESTER)`? if anything more elaborate is needed, i would propose something like `round(evaluated_courses / total_courses * REWARD_POINTS_PER_SEMESTER) + BONUS_WHEN_FULLY_EVALUATED`, gradually giving more points for more evaluated courses and a bonus for 100%ing the evaluation, or, for total freedom, a list of tuples like ``` # list of (fraction, points): when user evaluaties `fraction` of their courses, they get `points` points REWARD_POINTS = [ (1.0/3.0, 1), (2.0/3.0, 2), (3.0/3.0, 3), ] ``` so the user can do whatever they want to do. having exactly three tiers seems both restricted and a bit arbitrary to me. it's not really simpler for the user and also not simpler in the code. tuples are a perfectly customizable solution 👍
2018-04-23T19:03:48
e-valuation/EvaP
1,158
e-valuation__EvaP-1158
[ "1155" ]
e199f4caf40267ae6deaec2b018bd8e78282af4e
diff --git a/evap/staff/urls.py b/evap/staff/urls.py --- a/evap/staff/urls.py +++ b/evap/staff/urls.py @@ -19,6 +19,7 @@ path("semester/<int:semester_id>/participation_export", views.semester_participation_export, name="semester_participation_export"), path("semester/<int:semester_id>/assign", views.semester_questionnaire_assign, name="semester_questionnaire_assign"), path("semester/<int:semester_id>/todo", views.semester_todo, name="semester_todo"), + path("semester/<int:semester_id>/grade_reminder", views.semester_grade_reminder, name="semester_grade_reminder"), path("semester/<int:semester_id>/course/create", views.course_create, name="course_create"), path("semester/<int:semester_id>/course/<int:course_id>/edit", views.course_edit, name="course_edit"), path("semester/<int:semester_id>/course/<int:course_id>/email", views.course_email, name="course_email"), diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -489,6 +489,23 @@ def semester_todo(request, semester_id): template_data = dict(semester=semester, responsible_list=responsible_list) return render(request, "staff_semester_todo.html", template_data) +@staff_required +def semester_grade_reminder(request, semester_id): + semester = get_object_or_404(Semester, id=semester_id) + + courses = semester.course_set.filter(state__in=['evaluated', 'reviewed', 'published'], is_graded=True, gets_no_grade_documents=False).all() + courses = [course for course in courses if not course.final_grade_documents.exists()] + + responsibles = (contributor for course in courses for contributor in course.responsible_contributors) + responsibles = list(set(responsibles)) + responsibles.sort(key=lambda responsible: (responsible.last_name, responsible.first_name)) + + responsible_list = [(responsible, [course for course in courses if responsible in course.responsible_contributors]) + for responsible in responsibles] + + template_data = dict(semester=semester, responsible_list=responsible_list) + return render(request, "staff_semester_grade_reminder.html", template_data) + @staff_required def send_reminder(request, semester_id, responsible_id):
List of unpublished courses Staff users should get a new view with an overview of all graded courses in a semester where the evaluation period ended and no grade information was uploaded yet. The list should be grouped by responsible contributor and should include the course types. This allows them to remind about missing grade uploads. The resulting text should be optimized for copy paste. Example: --- **Prof. Dr. Always Late** - Random stuff (Bachelor's Project) **Prof. Dr. Responsible** - Interesting course (Seminar) - Something strange (Lecture)
Button "Grade Publish Reminder" on staff overview page
2018-04-23T20:35:43
e-valuation/EvaP
1,165
e-valuation__EvaP-1165
[ "1142" ]
d9ddea7d3c9a60fad68a43a078d9b257e740ef5f
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -21,7 +21,6 @@ # see evaluation.meta for the use of Translate in this file from evap.evaluation.meta import LocalizeModelBase, Translate from evap.evaluation.tools import date_to_datetime, get_due_courses_for_user -from evap.settings import EVALUATION_END_OFFSET_HOURS, EVALUATION_END_WARNING_PERIOD logger = logging.getLogger(__name__) @@ -272,7 +271,7 @@ def is_fully_reviewed(self): @property def vote_end_datetime(self): # The evaluation ends at EVALUATION_END_OFFSET_HOURS:00 of the day AFTER self.vote_end_date. - return date_to_datetime(self.vote_end_date) + timedelta(hours=24 + EVALUATION_END_OFFSET_HOURS) + return date_to_datetime(self.vote_end_date) + timedelta(hours=24 + settings.EVALUATION_END_OFFSET_HOURS) @property def is_in_evaluation_period(self): @@ -436,7 +435,7 @@ def time_left_for_evaluation(self): return self.vote_end_datetime - datetime.now() def evaluation_ends_soon(self): - return self.time_left_for_evaluation.total_seconds() < EVALUATION_END_WARNING_PERIOD * 3600 + return self.time_left_for_evaluation.total_seconds() < settings.EVALUATION_END_WARNING_PERIOD * 3600 @property def days_until_evaluation(self):
diff --git a/evap/evaluation/tests/test_models.py b/evap/evaluation/tests/test_models.py --- a/evap/evaluation/tests/test_models.py +++ b/evap/evaluation/tests/test_models.py @@ -11,7 +11,6 @@ from evap.evaluation.models import (Contribution, Course, CourseType, EmailTemplate, NotArchiveable, Questionnaire, RatingAnswerCounter, Semester, UserProfile) from evap.results.tools import calculate_average_grades_and_deviation -from evap.settings import EVALUATION_END_OFFSET_HOURS, EVALUATION_END_WARNING_PERIOD @override_settings(EVALUATION_END_OFFSET_HOURS=0)
Test failure depending on time of day We currently have 4 tests that fail if your system time is between 00:00 and 00:00 + EVALUATION_END_OFFSET_HOURS: - evap.evaluation.tests.test_models.TestCourses:test_evaluation_ended - evap.evaluation.tests.test_models.TestCourses:test_in_evaluation_to_evalued - evap.evaluation.tests.test_models.TestCourses:test_in_evaluation_to_published - evap.evaluation.tests.test_models.TestCourses:test_in_evaluation_to_reviewed
I'll work on this now.
2018-04-30T17:52:50
e-valuation/EvaP
1,172
e-valuation__EvaP-1172
[ "1160" ]
7be5505f2bc87658a8118257c16a58c9009545ca
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -519,6 +519,9 @@ def is_user_contributor_or_delegate(self, user): return False return self.contributions.filter(Q(contributor=user) | Q(contributor__in=user.represented_users.all())).exists() + def is_user_contributor(self, user): + return self.contributions.filter(contributor=user).exists() + @property def textanswer_set(self): return TextAnswer.objects.filter(contribution__course=self) diff --git a/evap/results/views.py b/evap/results/views.py --- a/evap/results/views.py +++ b/evap/results/views.py @@ -11,7 +11,7 @@ from django.contrib.auth.decorators import login_required from django.utils import translation -from evap.evaluation.models import Semester, Degree, Contribution, Course, CourseType +from evap.evaluation.models import Semester, Degree, Contribution, Course, CourseType, UserProfile from evap.evaluation.auth import internal_required from evap.results.tools import collect_results, calculate_average_distribution, distribution_to_grade, \ TextAnswer, TextResult, HeadingResult, get_single_result_rating_result @@ -108,21 +108,26 @@ def course_detail(request, semester_id, course_id): course_result = collect_results(course) if request.user.is_reviewer: - public_view = request.GET.get('public_view') != 'false' # if parameter is not given, show public view. + view = request.GET.get('view', 'public') # if parameter is not given, show public view. else: - public_view = request.GET.get('public_view') == 'true' # if parameter is not given, show own view. + view = request.GET.get('view', 'full') # if parameter is not given, show own view. - # redirect to non-public view if there is none because the results have not been published - if not course.can_publish_rating_results: - public_view = False + view_as_user = request.user + if view == 'export' and request.user.is_staff: + view_as_user = UserProfile.objects.get(id=int(request.GET.get('contributor_id', request.user.id))) - represented_users = list(request.user.represented_users.all()) + [request.user] + represented_users = [view_as_user] + if view != 'export': + represented_users += list(view_as_user.represented_users.all()) + # redirect to non-public view if there is none because the results have not been published + if not course.can_publish_rating_results and view == 'public': + view = 'full' # remove text answers if the user may not see them for questionnaire_result in course_result.questionnaire_results: for question_result in questionnaire_result.question_results: if isinstance(question_result, TextResult): - question_result.answers = [answer for answer in question_result.answers if user_can_see_text_answer(request.user, represented_users, answer, public_view)] + question_result.answers = [answer for answer in question_result.answers if user_can_see_text_answer(view_as_user, represented_users, answer, view)] # remove empty TextResults questionnaire_result.question_results = [result for result in questionnaire_result.question_results if not isinstance(result, TextResult) or len(result.answers) > 0] @@ -155,7 +160,7 @@ def course_detail(request, semester_id, course_id): course_questionnaire_results_bottom.append(questionnaire_result) else: course_questionnaire_results_top.append(questionnaire_result) - else: + elif view != 'export' or view_as_user.id == contribution_result.contributor.id: contributor_contribution_results.append(contribution_result) if not contributor_contribution_results: @@ -165,15 +170,23 @@ def course_detail(request, semester_id, course_id): course.distribution = calculate_average_distribution(course) course.avg_grade = distribution_to_grade(course.distribution) + other_contributors = [] + if view == 'export': + other_contributors = [contribution_result.contributor for contribution_result in course_result.contribution_results if contribution_result.contributor not in [None, view_as_user]] + template_data = dict( - course=course, - course_questionnaire_results_top=course_questionnaire_results_top, - course_questionnaire_results_bottom=course_questionnaire_results_bottom, - contributor_contribution_results=contributor_contribution_results, - reviewer=request.user.is_reviewer, - contributor=course.is_user_contributor_or_delegate(request.user), - can_download_grades=request.user.can_download_grades, - public_view=public_view) + course=course, + course_questionnaire_results_top=course_questionnaire_results_top, + course_questionnaire_results_bottom=course_questionnaire_results_bottom, + contributor_contribution_results=contributor_contribution_results, + is_reviewer=view_as_user.is_reviewer, + is_contributor=course.is_user_contributor(view_as_user), + is_contributor_or_delegate=course.is_user_contributor_or_delegate(view_as_user), + can_download_grades=view_as_user.can_download_grades, + view=view, + view_as_user=view_as_user, + other_contributors=other_contributors, + ) return render(request, "results_course_detail.html", template_data) @@ -200,16 +213,20 @@ def add_warnings(course, course_result): rating_result.warning = questionnaire_result.warning or rating_result.has_answers and rating_result.count_sum < questionnaire_warning_thresholds[questionnaire_result.questionnaire] -def user_can_see_text_answer(user, represented_users, text_answer, public_view=False): +def user_can_see_text_answer(user, represented_users, text_answer, view): assert text_answer.state in [TextAnswer.PRIVATE, TextAnswer.PUBLISHED] + contributor = text_answer.contribution.contributor - if public_view: + if view == 'public': return False - if user.is_reviewer: + elif view == 'export': + if text_answer.is_private: + return False + if not text_answer.contribution.is_general and contributor != user: + return False + elif user.is_reviewer: return True - contributor = text_answer.contribution.contributor - if text_answer.is_private: return contributor == user diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -1262,7 +1262,8 @@ def notify_reward_points(grantings, **_kwargs): user = get_object_or_404(UserProfile, id=user_id) form = UserForm(request.POST or None, request.FILES or None, instance=user) - courses_contributing_to = Course.objects.filter(semester=Semester.active_semester(), contributions__contributor=user) + semesters_with_courses = Semester.objects.filter(course__contributions__contributor=user).distinct() + courses_contributing_to = [(semester, Course.objects.filter(semester=semester, contributions__contributor=user)) for semester in semesters_with_courses] if form.is_valid(): form.save()
diff --git a/evap/results/tests/test_views.py b/evap/results/tests/test_views.py --- a/evap/results/tests/test_views.py +++ b/evap/results/tests/test_views.py @@ -2,7 +2,8 @@ from django.test.testcases import TestCase from model_mommy import mommy -from evap.evaluation.models import Semester, UserProfile, Course, Contribution, Questionnaire, Degree, Question, RatingAnswerCounter +from evap.evaluation.models import Contribution, Course, Degree, Question, Questionnaire, RatingAnswerCounter, \ + Semester, UserProfile from evap.evaluation.tests.tools import ViewTest, WebTest from evap.results.views import get_courses_with_prefetched_data @@ -140,7 +141,7 @@ def test_default_view_is_public(self): url = '/results/semester/%s/course/%s' % (self.semester.id, self.course.id) random.seed(42) # use explicit seed to always choose the same "random" slogan page_without_get_parameter = self.app.get(url, user='manager') - url = '/results/semester/%s/course/%s?public_view=true' % (self.semester.id, self.course.id) + url = '/results/semester/%s/course/%s?view=public' % (self.semester.id, self.course.id) random.seed(42) page_with_get_parameter = self.app.get(url, user='manager') url = '/results/semester/%s/course/%s?public_view=asdf' % (self.semester.id, self.course.id) @@ -277,7 +278,7 @@ def test_textanswer_visibility_for_manager_before_publish(self): course.unpublish() course.save() - page = self.app.get("/results/semester/1/course/1?public_view=false", user='manager') + page = self.app.get("/results/semester/1/course/1?view=full", user='manager') self.assertIn(".course_orig_published.", page) self.assertNotIn(".course_orig_hidden.", page) self.assertNotIn(".course_orig_published_changed.", page) @@ -298,7 +299,7 @@ def test_textanswer_visibility_for_manager_before_publish(self): self.assertNotIn(".other_responsible_orig_notreviewed.", page) def test_textanswer_visibility_for_manager(self): - page = self.app.get("/results/semester/1/course/1?public_view=false", user='manager') + page = self.app.get("/results/semester/1/course/1?view=full", user='manager') self.assertIn(".course_orig_published.", page) self.assertNotIn(".course_orig_hidden.", page) self.assertNotIn(".course_orig_published_changed.", page) @@ -495,6 +496,219 @@ def test_textanswer_visibility_for_student_external(self): self.app.get("/results/semester/1/course/1", user='student_external', status=403) +class TestResultsOtherContributorsListOnExportView(WebTest): + @classmethod + def setUpTestData(cls): + cls.semester = mommy.make(Semester, id=2) + cls.course = mommy.make(Course, id=21, state='published', semester=cls.semester) + + questionnaire = mommy.make(Questionnaire) + mommy.make(Question, questionnaire=questionnaire, type="L") + cls.course.general_contribution.questionnaires.set([questionnaire]) + + responsible = mommy.make(UserProfile, username='responsible') + mommy.make(Contribution, course=cls.course, contributor=responsible, questionnaires=[questionnaire], can_edit=True, responsible=True, comment_visibility=Contribution.ALL_COMMENTS) + cls.other_contributor_1 = mommy.make(UserProfile, username='other contributor 1') + mommy.make(Contribution, course=cls.course, contributor=cls.other_contributor_1, questionnaires=[questionnaire], comment_visibility=Contribution.OWN_COMMENTS) + cls.other_contributor_2 = mommy.make(UserProfile, username='other contributor 2') + mommy.make(Contribution, course=cls.course, contributor=cls.other_contributor_2, questionnaires=[questionnaire], comment_visibility=Contribution.OWN_COMMENTS) + + def test_contributor_list(self): + url = '/results/semester/{}/course/{}?view=export'.format(self.semester.id, self.course.id) + page = self.app.get(url, user='responsible') + self.assertIn("<li>{}</li>".format(self.other_contributor_1.username), page) + self.assertIn("<li>{}</li>".format(self.other_contributor_2.username), page) + + +class TestResultsTextanswerVisibilityForExportView(WebTest): + fixtures = ['minimal_test_data_results'] + + @classmethod + def setUpTestData(cls): + manager_group = Group.objects.get(name="Manager") + cls.manager = mommy.make(UserProfile, username="manager", groups=[manager_group]) + + def test_textanswer_visibility_for_responsible(self): + page = self.app.get("/results/semester/1/course/1?view=export", user='responsible') + + self.assertIn(".course_orig_published.", page) + self.assertNotIn(".course_orig_hidden.", page) + self.assertNotIn(".course_orig_published_changed.", page) + self.assertIn(".course_changed_published.", page) + self.assertIn(".responsible_orig_published.", page) + self.assertNotIn(".responsible_orig_hidden.", page) + self.assertNotIn(".responsible_orig_published_changed.", page) + self.assertIn(".responsible_changed_published.", page) + self.assertNotIn(".responsible_orig_private.", page) + self.assertNotIn(".responsible_orig_notreviewed.", page) + self.assertNotIn(".contributor_orig_published.", page) + self.assertNotIn(".contributor_orig_private.", page) + self.assertNotIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertNotIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) + + def test_textanswer_visibility_for_other_responsible(self): + page = self.app.get("/results/semester/1/course/1?view=export", user='other_responsible') + + self.assertIn(".course_orig_published.", page) + self.assertNotIn(".course_orig_hidden.", page) + self.assertNotIn(".course_orig_published_changed.", page) + self.assertIn(".course_changed_published.", page) + self.assertNotIn(".responsible_orig_published.", page) + self.assertNotIn(".responsible_orig_hidden.", page) + self.assertNotIn(".responsible_orig_published_changed.", page) + self.assertNotIn(".responsible_changed_published.", page) + self.assertNotIn(".responsible_orig_private.", page) + self.assertNotIn(".responsible_orig_notreviewed.", page) + self.assertNotIn(".contributor_orig_published.", page) + self.assertNotIn(".contributor_orig_private.", page) + self.assertIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) + + def test_textanswer_visibility_for_contributor(self): + page = self.app.get("/results/semester/1/course/1?view=export", user='contributor') + + self.assertNotIn(".course_orig_published.", page) + self.assertNotIn(".course_orig_hidden.", page) + self.assertNotIn(".course_orig_published_changed.", page) + self.assertNotIn(".course_changed_published.", page) + self.assertNotIn(".responsible_orig_published.", page) + self.assertNotIn(".responsible_orig_hidden.", page) + self.assertNotIn(".responsible_orig_published_changed.", page) + self.assertNotIn(".responsible_changed_published.", page) + self.assertNotIn(".responsible_orig_private.", page) + self.assertNotIn(".responsible_orig_notreviewed.", page) + self.assertIn(".contributor_orig_published.", page) + self.assertNotIn(".contributor_orig_private.", page) + self.assertNotIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertNotIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) + + def test_textanswer_visibility_for_contributor_course_comments(self): + page = self.app.get("/results/semester/1/course/1?view=export", user='contributor_course_comments') + + self.assertIn(".course_orig_published.", page) + self.assertNotIn(".course_orig_hidden.", page) + self.assertNotIn(".course_orig_published_changed.", page) + self.assertIn(".course_changed_published.", page) + self.assertNotIn(".responsible_orig_published.", page) + self.assertNotIn(".responsible_orig_hidden.", page) + self.assertNotIn(".responsible_orig_published_changed.", page) + self.assertNotIn(".responsible_changed_published.", page) + self.assertNotIn(".responsible_orig_private.", page) + self.assertNotIn(".responsible_orig_notreviewed.", page) + self.assertNotIn(".contributor_orig_published.", page) + self.assertNotIn(".contributor_orig_private.", page) + self.assertNotIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertNotIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) + + def test_textanswer_visibility_for_contributor_all_comments(self): + page = self.app.get("/results/semester/1/course/1?view=export", user='contributor_all_comments') + + self.assertIn(".course_orig_published.", page) + self.assertNotIn(".course_orig_hidden.", page) + self.assertNotIn(".course_orig_published_changed.", page) + self.assertIn(".course_changed_published.", page) + self.assertNotIn(".responsible_orig_published.", page) + self.assertNotIn(".responsible_orig_hidden.", page) + self.assertNotIn(".responsible_orig_published_changed.", page) + self.assertNotIn(".responsible_changed_published.", page) + self.assertNotIn(".responsible_orig_private.", page) + self.assertNotIn(".responsible_orig_notreviewed.", page) + self.assertNotIn(".contributor_orig_published.", page) + self.assertNotIn(".contributor_orig_private.", page) + self.assertNotIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertNotIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) + + def test_textanswer_visibility_for_student(self): + page = self.app.get("/results/semester/1/course/1?view=export", user='student') + + self.assertNotIn(".course_orig_published.", page) + self.assertNotIn(".course_orig_hidden.", page) + self.assertNotIn(".course_orig_published_changed.", page) + self.assertNotIn(".course_changed_published.", page) + self.assertNotIn(".responsible_orig_published.", page) + self.assertNotIn(".responsible_orig_hidden.", page) + self.assertNotIn(".responsible_orig_published_changed.", page) + self.assertNotIn(".responsible_changed_published.", page) + self.assertNotIn(".responsible_orig_private.", page) + self.assertNotIn(".responsible_orig_notreviewed.", page) + self.assertNotIn(".contributor_orig_published.", page) + self.assertNotIn(".contributor_orig_private.", page) + self.assertNotIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertNotIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) + + def test_textanswer_visibility_for_manager(self): + contributor_id = UserProfile.objects.get(username="responsible").id + page = self.app.get("/results/semester/1/course/1?view=export&contributor_id={}".format(contributor_id), user='manager') + + self.assertIn(".course_orig_published.", page) + self.assertNotIn(".course_orig_hidden.", page) + self.assertNotIn(".course_orig_published_changed.", page) + self.assertIn(".course_changed_published.", page) + self.assertIn(".responsible_orig_published.", page) + self.assertNotIn(".responsible_orig_hidden.", page) + self.assertNotIn(".responsible_orig_published_changed.", page) + self.assertIn(".responsible_changed_published.", page) + self.assertNotIn(".responsible_orig_private.", page) + self.assertNotIn(".responsible_orig_notreviewed.", page) + self.assertNotIn(".contributor_orig_published.", page) + self.assertNotIn(".contributor_orig_private.", page) + self.assertNotIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertNotIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) + + def test_textanswer_visibility_for_manager_contributor(self): + manager_group = Group.objects.get(name="Manager") + contributor = UserProfile.objects.get(username="contributor") + contributor.groups.add(manager_group) + page = self.app.get("/results/semester/1/course/1?view=export&contributor_id={}".format(contributor.id), user='contributor') + + self.assertNotIn(".course_orig_published.", page) + self.assertNotIn(".course_orig_hidden.", page) + self.assertNotIn(".course_orig_published_changed.", page) + self.assertNotIn(".course_changed_published.", page) + self.assertNotIn(".responsible_orig_published.", page) + self.assertNotIn(".responsible_orig_hidden.", page) + self.assertNotIn(".responsible_orig_published_changed.", page) + self.assertNotIn(".responsible_changed_published.", page) + self.assertNotIn(".responsible_orig_private.", page) + self.assertNotIn(".responsible_orig_notreviewed.", page) + self.assertIn(".contributor_orig_published.", page) + self.assertNotIn(".contributor_orig_private.", page) + self.assertNotIn(".other_responsible_orig_published.", page) + self.assertNotIn(".other_responsible_orig_hidden.", page) + self.assertNotIn(".other_responsible_orig_published_changed.", page) + self.assertNotIn(".other_responsible_changed_published.", page) + self.assertNotIn(".other_responsible_orig_private.", page) + self.assertNotIn(".other_responsible_orig_notreviewed.", page) + + class TestArchivedResults(WebTest): @classmethod def setUpTestData(cls):
Personal result export On each user profile page the list "Courses contributing to (active semester)" should be extended to hold all courses the user is contributing to, grouped by semester (current semester on top). Each entry has an "Personal export" button that links to this course's results page where - individual cards for all other contributors are not shown (only collapsing is not sufficient because in some situations we have more than 20 contributors and the card headers would still use up too much space) and - only text answers which are visible for this user are shown. This helps to export results for a user as PDF on request. The buttons linking to the personal export view could also be added on the contributor index page.
I would expect this to be easily accessible by the contributors themselves. edit: disregard most of the following, I had "output everything on one page" in mind, which wasn't the intention of @janno42 Of course we can give staff users access to this, but is that really necessary? I'm not directly opposed to that, but would like to avoid to make an "output all information about a user"-feature accessible for more people than necessary. For external users, whose accounts are disabled rather quickly, this might be necessary, but for internal users I think it's perfectly reasonable for staff users to tell them "in your menu, click that button" or "click this link here and login". Of course this would require this page to look ok when printing/exporting to pdf out of the box without additional work, but that would be nice in any case. The results pages should already be optimized for printing. I would expect this feature to just provide links to all relevant results pages which are displayed a little bit filtered as described. The same filtered result view could also be provided to the contributors as a "personal printing view". Other contributors should be shown (e.g. in a comma-separated list)
2018-05-07T18:24:49
e-valuation/EvaP
1,177
e-valuation__EvaP-1177
[ "1176" ]
a7b134164079bf42bcf2bab3a066f4af67ec558e
diff --git a/evap/evaluation/migrations/0067_course_is_midterm_evaluation.py b/evap/evaluation/migrations/0067_course_is_midterm_evaluation.py new file mode 100644 --- /dev/null +++ b/evap/evaluation/migrations/0067_course_is_midterm_evaluation.py @@ -0,0 +1,18 @@ +# Generated by Django 2.0.4 on 2018-05-10 16:46 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('evaluation', '0066_rename_course_is_required_for_reward'), + ] + + operations = [ + migrations.AddField( + model_name='course', + name='is_midterm_evaluation', + field=models.BooleanField(default=False, verbose_name='is midterm evaluation'), + ), + ] diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -251,6 +251,9 @@ class Course(models.Model, metaclass=LocalizeModelBase): # whether participants must vote to qualify for reward points is_rewarded = models.BooleanField(verbose_name=_("is rewarded"), default=True) + # whether the evaluation does take place during the semester, stating that evaluation results will be published while the course is still running + is_midterm_evaluation = models.BooleanField(verbose_name=_("is midterm evaluation"), default=False) + # students that are allowed to vote participants = models.ManyToManyField(settings.AUTH_USER_MODEL, verbose_name=_("participants"), blank=True, related_name='courses_participating_in') _participant_count = models.IntegerField(verbose_name=_("participant count"), blank=True, null=True, default=None) diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -139,8 +139,9 @@ class CourseForm(forms.ModelForm): class Meta: model = Course - fields = ('name_de', 'name_en', 'type', 'degrees', 'is_graded', 'is_private', 'is_rewarded', 'vote_start_datetime', - 'vote_end_date', 'participants', 'general_questions', 'last_modified_time_2', 'last_modified_user_2', 'semester') + fields = ('name_de', 'name_en', 'type', 'degrees', 'is_graded', 'is_private', 'is_rewarded', + 'is_midterm_evaluation', 'vote_start_datetime', 'vote_end_date', 'participants', 'general_questions', + 'last_modified_time_2', 'last_modified_user_2', 'semester') localized_fields = ('vote_start_datetime', 'vote_end_date') field_classes = { 'participants': UserModelMultipleChoiceField,
diff --git a/evap/student/tests/test_views.py b/evap/student/tests/test_views.py --- a/evap/student/tests/test_views.py +++ b/evap/student/tests/test_views.py @@ -193,3 +193,14 @@ def test_user_logged_out(self): response = form.submit() self.assertEqual(response.status_code, 302) self.assertNotIn(SUCCESS_MAGIC_STRING, response) + + def test_midterm_evaluation_warning(self): + evaluation_warning = "The results of this evaluation will be published while the course is still running." + page = self.get_assert_200(self.url, user=self.voting_user1.username) + self.assertNotIn(evaluation_warning, page) + + self.course.is_midterm_evaluation = True + self.course.save() + + page = self.get_assert_200(self.url, user=self.voting_user1.username) + self.assertIn(evaluation_warning, page)
Midterm evaluation message Courses should get an option to be marked as midterm evaluations. For these courses on the student voting page a message will be shown to explain that the evaluation results will be published while the course is still running and before its exam grades are published.
2018-05-10T14:53:59
e-valuation/EvaP
1,179
e-valuation__EvaP-1179
[ "1066" ]
9a86cba68daa3695a8af9ea769b3e2c3cf37fca7
diff --git a/evap/staff/tools.py b/evap/staff/tools.py --- a/evap/staff/tools.py +++ b/evap/staff/tools.py @@ -82,9 +82,9 @@ def custom_redirect(url_name, *args, **kwargs): return HttpResponseRedirect(url + "?%s" % params) -def delete_navbar_cache(): +def delete_navbar_cache_for_users(users): # delete navbar cache from base.html - for user in UserProfile.objects.all(): + for user in users: key = make_template_fragment_key('navbar', [user.username, 'de']) cache.delete(key) key = make_template_fragment_key('navbar', [user.username, 'en']) diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -33,9 +33,9 @@ FaqSectionForm, ImportForm, QuestionForm, QuestionnaireForm, QuestionnairesAssignForm, RemindResponsibleForm, SemesterForm, SingleResultForm, TextAnswerForm, UserBulkDeleteForm, UserForm, UserImportForm, UserMergeSelectionForm) from evap.staff.importers import EnrollmentImporter, UserImporter, PersonImporter -from evap.staff.tools import (bulk_delete_users, custom_redirect, delete_import_file, delete_navbar_cache, forward_messages, - get_import_file_content_or_raise, import_file_exists, merge_users, save_import_file, - raise_permission_denied_if_archived, get_parameter_from_url_or_session) +from evap.staff.tools import (bulk_delete_users, custom_redirect, delete_import_file, delete_navbar_cache_for_users, + forward_messages, get_import_file_content_or_raise, import_file_exists, merge_users, + save_import_file, raise_permission_denied_if_archived, get_parameter_from_url_or_session) from evap.student.forms import QuestionnaireVotingForm from evap.student.views import get_valid_form_groups_or_render_vote_page @@ -293,7 +293,7 @@ def semester_create(request): if form.is_valid(): semester = form.save() - delete_navbar_cache() + delete_navbar_cache_for_users([user for user in UserProfile.objects.all() if user.is_reviewer or user.is_grade_publisher]) messages.success(request, _("Successfully created semester.")) return redirect('staff:semester_view', semester.id) @@ -324,7 +324,7 @@ def semester_delete(request): if not semester.can_staff_delete: raise SuspiciousOperation("Deleting semester not allowed") semester.delete() - delete_navbar_cache() + delete_navbar_cache_for_users([user for user in UserProfile.objects.all() if user.is_reviewer or user.is_grade_publisher]) return HttpResponse() # 200 OK @@ -364,6 +364,7 @@ def semester_import(request, semester_id): success_messages, warnings, __ = EnrollmentImporter.process(file_content, semester, vote_start_datetime, vote_end_date, test_run=False) forward_messages(request, success_messages, warnings) delete_import_file(request.user.id, import_type) + delete_navbar_cache_for_users(UserProfile.objects.all()) return redirect('staff:semester_view', semester_id) test_passed = import_file_exists(request.user.id, import_type) @@ -624,6 +625,9 @@ def notify_reward_points(users, **kwargs): else: messages.success(request, _("Successfully updated course.")) + delete_navbar_cache_for_users(course.participants.all()) + delete_navbar_cache_for_users(UserProfile.objects.filter(contributions__course=course)) + return custom_redirect('staff:semester_view', semester.id) else: if form.errors or formset.errors: @@ -1182,6 +1186,7 @@ def notify_reward_points(users, **kwargs): if form.is_valid(): form.save() + delete_navbar_cache_for_users([user]) messages.success(request, _("Successfully updated user.")) return redirect('staff:user_index') else:
Missing navbar cache refresh on user group change The navbar is cached per user and per language: https://github.com/fsr-itse/EvaP/blob/master/evap/evaluation/templates/base.html#L38 When changing the the permissions of users (e.g. making them grade uploaders or staff members), and they have visited the site in the hour before, it might take up to an hour for them to see the changes. Also, same happens when the first course of a new semester is published. that's a rather unlikely case, but then again, it should be just one line to fix it. Also, when doing the course import for a semester, the navbar cache should be reset for all users, and when saving a course, for all its participants and contributors. ref #733
we don't need to clear the cache when the first course of a new semester is published, because all results will soon be shown on a single results page. staff users and grade publishers are the only users who see semesters in the navbar - for those users the cache was refreshed on semester creation.
2018-05-10T15:31:51
e-valuation/EvaP
1,190
e-valuation__EvaP-1190
[ "1184" ]
a75cc7f0a84275f6215556a710e57388b39dbae7
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -470,7 +470,10 @@ def evaluation_ends_soon(self): @property def days_until_evaluation(self): - return (self.vote_start_datetime.date() - date.today()).days + days_left = (self.vote_start_datetime.date() - date.today()).days + if self.vote_start_datetime < datetime.now(): + days_left -= 1 + return days_left def is_user_editor_or_delegate(self, user): if self.contributions.filter(can_edit=True, contributor=user).exists(): diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -148,7 +148,10 @@ def semester_course_operation(request, semester_id): raise SuspiciousOperation("Unknown target state: " + target_state) course_ids = (request.GET if request.method == 'GET' else request.POST).getlist('course') - courses = Course.objects.filter(id__in=course_ids) + courses = Course.objects.filter(id__in=course_ids).annotate( + midterm_grade_documents_count=Count("grade_documents", filter=Q(grade_documents__type=GradeDocument.MIDTERM_GRADES), distinct=True), + final_grade_documents_count=Count("grade_documents", filter=Q(grade_documents__type=GradeDocument.FINAL_GRADES), distinct=True) + ) if request.method == 'POST': template = None
Line above contribution questionnaires list 3ece634e8fb13450f4a18c0479f241d516acc5ec added a division line between top and bottom course questionnaires. this lead to a wrongly placed line in the contribution form questionnaires list, which should be removed: ![line](https://user-images.githubusercontent.com/1781719/40080067-2823b104-588a-11e8-9e8d-bffd5834a846.PNG)
2018-05-20T18:52:02
e-valuation/EvaP
1,196
e-valuation__EvaP-1196
[ "1195" ]
55fdd928af824fbbe02e99d139ad086d6844b83f
diff --git a/evap/rewards/tools.py b/evap/rewards/tools.py --- a/evap/rewards/tools.py +++ b/evap/rewards/tools.py @@ -64,13 +64,13 @@ def is_semester_activated(semester): def grant_reward_points_if_eligible(user, semester): if not can_user_use_reward_points(user): - return 0, False + return None, False if not is_semester_activated(semester): - return 0, False + return None, False # does the user have at least one required course in this semester? required_courses = Course.objects.filter(participants=user, semester=semester, is_rewarded=True) if not required_courses.exists(): - return 0, False + return None, False # How many points have been granted to this user vs how many should they have (this semester) granted_points = RewardPointGranting.objects.filter(user_profile=user, semester=semester).aggregate(Sum('value'))['value__sum'] or 0 @@ -79,19 +79,19 @@ def grant_reward_points_if_eligible(user, semester): missing_points = target_points - granted_points if missing_points > 0: - RewardPointGranting.objects.create(user_profile=user, semester=semester, value=missing_points) - return missing_points, progress >= 1.0 - return 0, False + granting = RewardPointGranting.objects.create(user_profile=user, semester=semester, value=missing_points) + return granting, progress >= 1.0 + return None, False # Signal handlers @receiver(Course.course_evaluated) def grant_reward_points_after_evaluate(request, semester, **_kwargs): - points_granted, completed_evaluation = grant_reward_points_if_eligible(request.user, semester) - if points_granted: + granting, completed_evaluation = grant_reward_points_if_eligible(request.user, semester) + if granting: message = ngettext("You just earned {count} reward point for this semester.", - "You just earned {count} reward points for this semester.", points_granted).format(count=points_granted) + "You just earned {count} reward points for this semester.", granting.value).format(count=granting.value) if completed_evaluation: message += " " + _("Thank you very much for evaluating all your courses.") @@ -106,22 +106,24 @@ def grant_reward_points_after_evaluate(request, semester, **_kwargs): def grant_reward_points_after_delete(instance, action, reverse, pk_set, **_kwargs): # if users do not need to evaluate a course anymore, they may have earned reward points if action == 'post_remove': - affected = [] + grantings = [] if reverse: # a course got removed from a participant user = instance for semester in Semester.objects.filter(course__pk__in=pk_set): - if grant_reward_points_if_eligible(user, semester): - affected = [user] + granting, __ = grant_reward_points_if_eligible(user, semester) + if granting: + grantings = [granting] else: # a participant got removed from a course course = instance for user in UserProfile.objects.filter(pk__in=pk_set): - if grant_reward_points_if_eligible(user, course.semester): - affected.append(user) + granting, __ = grant_reward_points_if_eligible(user, course.semester) + if granting: + grantings.append(granting) - if affected: - RewardPointGranting.granted_by_removal.send(sender=RewardPointGranting, users=affected) + if grantings: + RewardPointGranting.granted_by_removal.send(sender=RewardPointGranting, grantings=grantings) diff --git a/evap/settings.py b/evap/settings.py --- a/evap/settings.py +++ b/evap/settings.py @@ -45,9 +45,9 @@ # number of reward points a student should have for a semester after evaluating the given fraction of courses. REWARD_POINTS = [ - (1.0/3.0, 1), - (2.0/3.0, 2), - (3.0/3.0, 3), + (1 / 3, 1), + (2 / 3, 2), + (3 / 3, 3), ] # days before end date to send reminder diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -16,7 +16,7 @@ from django.shortcuts import get_object_or_404, redirect, render from django.urls import reverse from django.utils.translation import ugettext as _ -from django.utils.translation import get_language, ungettext +from django.utils.translation import get_language, ungettext, ngettext from django.views.decorators.http import require_POST from evap.evaluation.auth import reviewer_required, staff_required from evap.evaluation.models import (Contribution, Course, CourseType, Degree, EmailTemplate, FaqQuestion, FaqSection, Question, Questionnaire, @@ -593,11 +593,15 @@ def course_edit(request, semester_id, course_id): @staff_required def helper_course_edit(request, semester, course): @receiver(RewardPointGranting.granted_by_removal) - def notify_reward_points(users, **_kwargs): - names = ", ".join('"{}"'.format(user.username) for user in users) - messages.info(request, ungettext("The removal of participants has granted {affected} user reward points: {names}.", - "The removal of participants has granted {affected} users reward points: {names}.", - len(users)).format(affected=len(users), names=names)) + def notify_reward_points(grantings, **_kwargs): + for granting in grantings: + messages.info(request, + ngettext( + 'The removal as participant has granted the user "{granting.user_profile.username}" {granting.value} reward point for the active semester.', + 'The removal as participant has granted the user "{granting.user_profile.username}" {granting.value} reward points for the active semester.', + granting.value + ).format(granting=granting) + ) InlineContributionFormset = inlineformset_factory(Course, Contribution, formset=ContributionFormSet, form=ContributionForm, extra=1) @@ -1187,8 +1191,16 @@ def user_import(request): @staff_required def user_edit(request, user_id): @receiver(RewardPointGranting.granted_by_removal) - def notify_reward_points(users, **_kwargs): - messages.info(request, _('The removal of courses has granted the user "{}" reward points for the active semester.'.format(users[0].username))) + def notify_reward_points(grantings, **_kwargs): + assert len(grantings) == 1 + + messages.info(request, + ngettext( + 'The removal of courses has granted the user "{granting.user_profile.username}" {granting.value} reward point for the active semester.', + 'The removal of courses has granted the user "{granting.user_profile.username}" {granting.value} reward points for the active semester.', + grantings[0].value + ).format(granting=grantings[0]) + ) user = get_object_or_404(UserProfile, id=user_id) form = UserForm(request.POST or None, request.FILES or None, instance=user)
diff --git a/evap/rewards/tests/test_tools.py b/evap/rewards/tests/test_tools.py --- a/evap/rewards/tests/test_tools.py +++ b/evap/rewards/tests/test_tools.py @@ -11,9 +11,9 @@ @override_settings(REWARD_POINTS=[ - (1.0/3.0, 1), - (2.0/3.0, 2), - (3.0/3.0, 3), + (1 / 3, 1), + (2 / 3, 2), + (3 / 3, 3), ]) class TestGrantRewardPoints(WebTest): csrf_checks = False @@ -66,9 +66,9 @@ def test_already_got_enough_points(self): @override_settings(REWARD_POINTS=[ - (1.0/3.0, 1), - (2.0/3.0, 2), - (3.0/3.0, 3), + (1 / 3, 1), + (2 / 3, 2), + (3 / 3, 3), ]) class TestGrantRewardPointsParticipationChange(TestCase): @classmethod diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -6,6 +6,7 @@ from django.contrib.auth.models import Group from django.core import mail from django.urls import reverse +from django.test import override_settings from model_mommy import mommy import xlrd @@ -124,6 +125,11 @@ def test_user_is_created(self): self.assertEqual(UserProfile.objects.order_by("pk").last().username, "mflkd862xmnbo5") +@override_settings(REWARD_POINTS=[ + (1 / 3, 1), + (2 / 3, 2), + (3 / 3, 3), +]) class TestUserEditView(ViewTest): url = "/staff/user/3/edit" test_users = ['staff'] @@ -156,7 +162,7 @@ def test_reward_points_granting_message(self): student.refresh_from_db() self.assertIn("Successfully updated user.", page) - self.assertIn("The removal of courses has granted the user &quot;{}&quot; reward points for the active semester.".format(student.username), page) + self.assertIn("The removal of courses has granted the user &quot;{}&quot; 3 reward points for the active semester.".format(student.username), page) class TestUserMergeSelectionView(ViewTest): @@ -872,6 +878,11 @@ def test_course_create(self): self.assertEqual(Course.objects.get().name_de, "lfo9e7bmxp1xi") +@override_settings(REWARD_POINTS=[ + (1 / 3, 1), + (2 / 3, 2), + (3 / 3, 3), +]) class TestCourseEditView(ViewTest): url = '/staff/semester/1/course/1/edit' test_users = ['staff'] @@ -925,7 +936,7 @@ def test_participant_removal_reward_point_granting_message(self): form['participants'] = [other.pk] page = form.submit('operation', value='save').follow() - self.assertIn("The removal of participants has granted 1 user reward points: &quot;{}&quot;".format(student.username), page) + self.assertIn("The removal as participant has granted the user &quot;{}&quot; 3 reward points for the active semester.".format(student.username), page) def test_remove_participants(self): already_evaluated = mommy.make(Course, semester=self.course.semester) @@ -934,7 +945,7 @@ def test_remove_participants(self): for name in ["a", "b", "c", "d", "e"]: mommy.make(UserProfile, username=name, email="{}@institution.example.com".format(name), - courses_participating_in=[self.course, already_evaluated], courses_voted_for=[already_evaluated]) + courses_participating_in=[self.course, already_evaluated], courses_voted_for=[already_evaluated]) page = self.app.get(reverse('staff:course_edit', args=[self.course.semester.pk, self.course.pk]), user='staff') @@ -943,7 +954,30 @@ def test_remove_participants(self): form['participants'] = [student.pk] page = form.submit('operation', value='save').follow() - self.assertIn("The removal of participants has granted 5 users reward points: &quot;a&quot;, &quot;b&quot;, &quot;c&quot;, &quot;d&quot;, &quot;e&quot;.", page) + for name in ["a", "b", "c", "d", "e"]: + self.assertIn("The removal as participant has granted the user &quot;{}&quot; 3 reward points for the active semester.".format(name), page) + + def test_remove_participants_proportional_reward_points(self): + already_evaluated = mommy.make(Course, semester=self.course.semester) + SemesterActivation.objects.create(semester=self.course.semester, is_active=True) + student = mommy.make(UserProfile, courses_participating_in=[self.course]) + + for name, points_granted in [("a", 0), ("b", 1), ("c", 2), ("d", 3)]: + user = mommy.make(UserProfile, username=name, email="{}@institution.example.com".format(name), + courses_participating_in=[self.course, already_evaluated], courses_voted_for=[already_evaluated]) + RewardPointGranting.objects.create(user_profile=user, semester=self.course.semester, value=points_granted) + + page = self.app.get(reverse('staff:course_edit', args=[self.course.semester.pk, self.course.pk]), user='staff') + + # remove four participants + form = page.forms['course-form'] + form['participants'] = [student.pk] + page = form.submit('operation', value='save').follow() + + self.assertIn("The removal as participant has granted the user &quot;a&quot; 3 reward points for the active semester.", page) + self.assertIn("The removal as participant has granted the user &quot;b&quot; 2 reward points for the active semester.", page) + self.assertIn("The removal as participant has granted the user &quot;c&quot; 1 reward point for the active semester.", page) + self.assertNotIn("The removal as participant has granted the user &quot;d&quot;", page) def test_last_modified_user(self): """
Wrong reward point message when removing participants `grant_reward_points_after_delete` checks for `if grant_reward_points_if_eligible` when collecting user names that should be displayed in a message. This method returns tuples since 2498f15693cd1fabe71e472f57fb57fa5c51fdd8, so the check is always true and all removed participants are shown in the message. The actual granting is checked correctly, but the displayed message is not necessarily correct.
2018-05-27T08:32:59
e-valuation/EvaP
1,212
e-valuation__EvaP-1212
[ "1211" ]
39f39aa080e88b0154946e2a03ac9000a9ddf521
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -582,14 +582,6 @@ def update_courses(cls): logger.info("update_courses finished.") -@receiver(models.signals.m2m_changed, sender=Course.voters.through) -def voters_changed(instance, action, reverse, **kwargs): - if not reverse and action == 'post_add': - if not instance.can_publish_text_results and instance.voters.count() >= 2: - instance.can_publish_text_results = True - instance.save() - - @receiver(post_transition, sender=Course) def log_state_transition(sender, instance, name, source, target, **kwargs): logger.info('Course "{}" (id {}) moved from state "{}" to state "{}", caused by transition "{}".'.format(instance, instance.pk, source, target, name)) diff --git a/evap/student/views.py b/evap/student/views.py --- a/evap/student/views.py +++ b/evap/student/views.py @@ -139,8 +139,8 @@ def vote(request, course_id): answer_counter.save() if not course.can_publish_text_results: - # enable text result publishing if first user confirmed that publishing is okay - if request.POST.get('text_results_publish_confirmation_top') == 'on' or request.POST.get('text_results_publish_confirmation_bottom') == 'on': + # enable text result publishing if first user confirmed that publishing is okay or second user voted + if request.POST.get('text_results_publish_confirmation_top') == 'on' or request.POST.get('text_results_publish_confirmation_bottom') == 'on' or course.voters.count() >= 2: course.can_publish_text_results = True course.save()
diff --git a/evap/evaluation/tests/test_models.py b/evap/evaluation/tests/test_models.py --- a/evap/evaluation/tests/test_models.py +++ b/evap/evaluation/tests/test_models.py @@ -10,11 +10,12 @@ from evap.evaluation.models import (Contribution, Course, CourseType, EmailTemplate, NotArchiveable, Question, Questionnaire, RatingAnswerCounter, Semester, TextAnswer, UserProfile) +from evap.evaluation.tests.tools import WebTest from evap.results.tools import calculate_average_distribution @override_settings(EVALUATION_END_OFFSET_HOURS=0) -class TestCourses(TestCase): +class TestCourses(WebTest): def test_approved_to_in_evaluation(self): course = mommy.make(Course, state='approved', vote_start_datetime=datetime.now()) @@ -188,19 +189,22 @@ def test_single_result_can_be_deleted_only_in_reviewed(self): def test_adding_second_voter_sets_can_publish_text_results_to_true(self): student1 = mommy.make(UserProfile) student2 = mommy.make(UserProfile) - course = mommy.make(Course, participants=[student1, student2], voters=[student1]) + course = mommy.make(Course, participants=[student1, student2], voters=[student1], state="in_evaluation") course.save() + top_course_questionnaire = mommy.make(Questionnaire, type=Questionnaire.TOP) + mommy.make(Question, questionnaire=top_course_questionnaire, type="L") + course.general_contribution.questionnaires.set([top_course_questionnaire]) self.assertFalse(course.can_publish_text_results) - course.voters.add(student2) + self.let_user_vote_for_course(student2, course) course = Course.objects.get(pk=course.pk) self.assertTrue(course.can_publish_text_results) def test_text_answers_get_deleted_if_they_cannot_be_published(self): student = mommy.make(UserProfile) - course = mommy.make(Course, state='reviewed', participants=[student], voters=[student]) + course = mommy.make(Course, state='reviewed', participants=[student], voters=[student], can_publish_text_results=False) questionnaire = mommy.make(Questionnaire, type=Questionnaire.TOP) question = mommy.make(Question, type="T", questionnaire=questionnaire) course.general_contribution.questionnaires.set([questionnaire]) @@ -213,7 +217,7 @@ def test_text_answers_get_deleted_if_they_cannot_be_published(self): def test_text_answers_do_not_get_deleted_if_they_can_be_published(self): student = mommy.make(UserProfile) student2 = mommy.make(UserProfile) - course = mommy.make(Course, state='reviewed', participants=[student, student2], voters=[student, student2]) + course = mommy.make(Course, state='reviewed', participants=[student, student2], voters=[student, student2], can_publish_text_results=True) questionnaire = mommy.make(Questionnaire, type=Questionnaire.TOP) question = mommy.make(Question, type="T", questionnaire=questionnaire) course.general_contribution.questionnaires.set([questionnaire]) @@ -226,7 +230,7 @@ def test_text_answers_do_not_get_deleted_if_they_can_be_published(self): def test_hidden_text_answers_get_deleted_on_publish(self): student = mommy.make(UserProfile) student2 = mommy.make(UserProfile) - course = mommy.make(Course, state='reviewed', participants=[student, student2], voters=[student, student2]) + course = mommy.make(Course, state='reviewed', participants=[student, student2], voters=[student, student2], can_publish_text_results=True) questionnaire = mommy.make(Questionnaire, type=Questionnaire.TOP) question = mommy.make(Question, type="T", questionnaire=questionnaire) course.general_contribution.questionnaires.set([questionnaire]) @@ -242,7 +246,7 @@ def test_hidden_text_answers_get_deleted_on_publish(self): def test_original_text_answers_get_deleted_on_publish(self): student = mommy.make(UserProfile) student2 = mommy.make(UserProfile) - course = mommy.make(Course, state='reviewed', participants=[student, student2], voters=[student, student2]) + course = mommy.make(Course, state='reviewed', participants=[student, student2], voters=[student, student2], can_publish_text_results=True) questionnaire = mommy.make(Questionnaire, type=Questionnaire.TOP) question = mommy.make(Question, type="T", questionnaire=questionnaire) course.general_contribution.questionnaires.set([questionnaire]) diff --git a/evap/evaluation/tests/tools.py b/evap/evaluation/tests/tools.py --- a/evap/evaluation/tests/tools.py +++ b/evap/evaluation/tests/tools.py @@ -5,6 +5,7 @@ from webtest import AppError from evap.evaluation.models import Contribution, Course, UserProfile, Questionnaire, Degree +from evap.student.tools import question_id def to_querydict(dictionary): @@ -53,6 +54,19 @@ def get_submit_assert_200(self, url, user): self.assertEqual(response.status_code, 200, 'url "{}" failed with user "{}"'.format(url, user)) return response + def let_user_vote_for_course(self, user, course): + url = '/student/vote/{}'.format(course.id) + page = self.get_assert_200(url, user=user) + form = page.forms["student-vote-form"] + for contribution in course.contributions.all().prefetch_related("questionnaires", "questionnaires__question_set"): + for questionnaire in contribution.questionnaires.all(): + for question in questionnaire.question_set.all(): + if question.type == "T": + form[question_id(contribution, questionnaire, question)] = "Lorem ispum" + elif question.type in ["L", "G", "P", "N"]: + form[question_id(contribution, questionnaire, question)] = 1 + form.submit() + class ViewTest(WebTest): url = "/" diff --git a/evap/results/tests/test_views.py b/evap/results/tests/test_views.py --- a/evap/results/tests/test_views.py +++ b/evap/results/tests/test_views.py @@ -162,25 +162,24 @@ def setUpTestData(cls): cls.semester = mommy.make(Semester, id=2) mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')], email="[email protected]") responsible = mommy.make(UserProfile, username='responsible') - student1 = mommy.make(UserProfile, username='student') + cls.student1 = mommy.make(UserProfile, username='student') cls.student2 = mommy.make(UserProfile) + students = mommy.make(UserProfile, _quantity=10) + students.extend([cls.student1, cls.student2]) - cls.course = mommy.make(Course, id=22, state='published', semester=cls.semester, participants=[student1, cls.student2], voters=[student1]) + cls.course = mommy.make(Course, id=22, state='in_evaluation', semester=cls.semester, participants=students) questionnaire = mommy.make(Questionnaire) cls.question_grade = mommy.make(Question, questionnaire=questionnaire, type="G") question_likert = mommy.make(Question, questionnaire=questionnaire, type="L") cls.course.general_contribution.questionnaires.set([questionnaire]) cls.responsible_contribution = mommy.make(Contribution, contributor=responsible, course=cls.course, questionnaires=[questionnaire]) - mommy.make(RatingAnswerCounter, question=cls.question_grade, contribution=cls.responsible_contribution, answer=1, count=1) - mommy.make(RatingAnswerCounter, question=question_likert, contribution=cls.responsible_contribution, answer=3, count=1) - cls.course.general_contribution.questionnaires.set([questionnaire]) - mommy.make(RatingAnswerCounter, question=question_likert, contribution=cls.course.general_contribution, answer=5, count=1) + def setUp(self): + self.course = Course.objects.get(pk=self.course.pk) - def helper_test_answer_visibility(self, username, expect_page_not_visible_first=False): - caches["results"].clear() - page = self.app.get("/results/semester/2/course/22", user=username, expect_errors=expect_page_not_visible_first) - if expect_page_not_visible_first: + def helper_test_answer_visibility_one_voter(self, username, expect_page_not_visible=False): + page = self.app.get("/results/semester/2/course/22", user=username, expect_errors=expect_page_not_visible) + if expect_page_not_visible: self.assertEqual(page.status_code, 403) else: self.assertEqual(page.status_code, 200) @@ -191,10 +190,7 @@ def helper_test_answer_visibility(self, username, expect_page_not_visible_first= number_of_disabled_grade_badges = str(page).count("grade-bg-result-bar text-center grade-bg-disabled") self.assertEqual(number_of_disabled_grade_badges, 5) - # add additional voter - self.course.voters.add(self.student2) - - caches["results"].clear() + def helper_test_answer_visibility_two_voters(self, username): page = self.app.get("/results/semester/2/course/22", user=username) number_of_grade_badges = str(page).count("grade-bg-result-bar text-center") self.assertEqual(number_of_grade_badges, 5) # 1 course overview and 4 questions @@ -203,13 +199,30 @@ def helper_test_answer_visibility(self, username, expect_page_not_visible_first= number_of_disabled_grade_badges = str(page).count("grade-bg-result-bar text-center grade-bg-disabled") self.assertEqual(number_of_disabled_grade_badges, 1) - # remove additional voter - self.course.voters.remove(self.student2) - - def test_answer_visibility(self): - self.helper_test_answer_visibility("staff") - self.helper_test_answer_visibility("responsible") - self.helper_test_answer_visibility("student", expect_page_not_visible_first=True) + def test_answer_visibility_one_voter(self): + self.let_user_vote_for_course(self.student1, self.course) + self.course.evaluation_end() + self.course.review_finished() + self.course.publish() + self.course.save() + self.assertEqual(self.course.voters.count(), 1) + self.helper_test_answer_visibility_one_voter("staff") + self.course = Course.objects.get(id=self.course.id) + self.helper_test_answer_visibility_one_voter("responsible") + self.helper_test_answer_visibility_one_voter("student", expect_page_not_visible=True) + + def test_answer_visibility_two_voters(self): + self.let_user_vote_for_course(self.student1, self.course) + self.let_user_vote_for_course(self.student2, self.course) + self.course.evaluation_end() + self.course.review_finished() + self.course.publish() + self.course.save() + self.assertEqual(self.course.voters.count(), 2) + + self.helper_test_answer_visibility_two_voters("staff") + self.helper_test_answer_visibility_two_voters("responsible") + self.helper_test_answer_visibility_two_voters("student") class TestResultsSemesterCourseDetailViewPrivateCourse(WebTest): diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -1243,7 +1243,10 @@ def setUpTestData(cls): semester = mommy.make(Semester, pk=1) student1 = mommy.make(UserProfile) cls.student2 = mommy.make(UserProfile) - cls.course = mommy.make(Course, pk=1, semester=semester, participants=[student1, cls.student2], voters=[student1]) + cls.course = mommy.make(Course, pk=1, semester=semester, participants=[student1, cls.student2], voters=[student1], state="in_evaluation") + top_course_questionnaire = mommy.make(Questionnaire, type=Questionnaire.TOP) + mommy.make(Question, questionnaire=top_course_questionnaire, type="L") + cls.course.general_contribution.questionnaires.set([top_course_questionnaire]) def test_comments_showing_up(self): questionnaire = mommy.make(Questionnaire) @@ -1256,7 +1259,7 @@ def test_comments_showing_up(self): self.get_assert_403(self.url, user='staff') # add additional voter - self.course.voters.add(self.student2) + self.let_user_vote_for_course(self.student2, self.course) # now it should work page = self.get_assert_200(self.url, user='staff') @@ -1272,7 +1275,10 @@ def setUpTestData(cls): semester = mommy.make(Semester, pk=1) student1 = mommy.make(UserProfile) cls.student2 = mommy.make(UserProfile) - cls.course = mommy.make(Course, pk=1, semester=semester, participants=[student1, cls.student2], voters=[student1]) + cls.course = mommy.make(Course, pk=1, semester=semester, participants=[student1, cls.student2], voters=[student1], state="in_evaluation") + top_course_questionnaire = mommy.make(Questionnaire, type=Questionnaire.TOP) + mommy.make(Question, questionnaire=top_course_questionnaire, type="L") + cls.course.general_contribution.questionnaires.set([top_course_questionnaire]) questionnaire = mommy.make(Questionnaire) question = mommy.make(Question, questionnaire=questionnaire, type='T') contribution = mommy.make(Contribution, course=cls.course, contributor=mommy.make(UserProfile), questionnaires=[questionnaire]) @@ -1283,7 +1289,7 @@ def test_comments_showing_up(self): self.get_assert_403(self.url, user='staff') # add additional voter - self.course.voters.add(self.student2) + self.let_user_vote_for_course(self.student2, self.course) # now it should work response = self.app.get(self.url, user='staff') @@ -1590,7 +1596,10 @@ def setUpTestData(cls): mommy.make(UserProfile, username="staff.user", groups=[Group.objects.get(name="Staff")]) cls.student1 = mommy.make(UserProfile) cls.student2 = mommy.make(UserProfile) - cls.course = mommy.make(Course, participants=[cls.student1, cls.student2], voters=[cls.student1]) + cls.course = mommy.make(Course, participants=[cls.student1, cls.student2], voters=[cls.student1], state="in_evaluation") + top_course_questionnaire = mommy.make(Questionnaire, type=Questionnaire.TOP) + mommy.make(Question, questionnaire=top_course_questionnaire, type="L") + cls.course.general_contribution.questionnaires.set([top_course_questionnaire]) def helper(self, old_state, expected_new_state, action, expect_errors=False): textanswer = mommy.make(TextAnswer, state=old_state) @@ -1606,8 +1615,7 @@ def test_review_actions(self): # in a course with only one voter reviewing should fail self.helper(TextAnswer.NOT_REVIEWED, TextAnswer.PUBLISHED, "publish", expect_errors=True) - self.course.voters.add(self.student2) - self.course.save() + self.let_user_vote_for_course(self.student2, self.course) # now reviewing should work self.helper(TextAnswer.NOT_REVIEWED, TextAnswer.PUBLISHED, "publish")
Text results are never published In `student/views.py:vote` voters are added by `course.voters.through.objects.get_or_create`. This doesn't call the `m2m_changed` signal in `evaluation/models.py:voters_changed`. As a consequence, `can_publish_text_results` is not set to `True` by adding the second voter to a course as it should be. Our tests didn't show the issue because we're adding voters by `course.voters.add` there.
2018-06-19T20:14:06
e-valuation/EvaP
1,215
e-valuation__EvaP-1215
[ "1209" ]
1bf7d7ca8df9bdc4b736649033a9acbf35f2ec86
diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -442,7 +442,7 @@ def semester_participation_export(request, semester_id): number_of_required_courses_voted_for = semester.course_set.filter(voters=participant, is_rewarded=True).count() number_of_optional_courses = semester.course_set.filter(participants=participant, is_rewarded=False).count() number_of_optional_courses_voted_for = semester.course_set.filter(voters=participant, is_rewarded=False).count() - earned_reward_points = RewardPointGranting.objects.filter(semester=semester, user_profile=participant).exists() + earned_reward_points = RewardPointGranting.objects.filter(semester=semester, user_profile=participant).aggregate(Sum('value'))['value__sum'] or 0 writer.writerow([ participant.username, can_user_use_reward_points(participant), number_of_required_courses_voted_for, number_of_required_courses, number_of_optional_courses_voted_for, number_of_optional_courses,
diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -13,7 +13,7 @@ Questionnaire, Question, EmailTemplate, Degree, FaqSection, FaqQuestion, \ RatingAnswerCounter from evap.evaluation.tests.tools import FuzzyInt, WebTest, ViewTest -from evap.rewards.models import SemesterActivation +from evap.rewards.models import SemesterActivation, RewardPointGranting from evap.staff.tools import generate_import_filename @@ -695,21 +695,25 @@ class TestSemesterParticipationDataExportView(ViewTest): def setUpTestData(cls): mommy.make(UserProfile, username='staff', groups=[Group.objects.get(name='Staff')]) cls.student_user = mommy.make(UserProfile, username='student') + cls.student_user2 = mommy.make(UserProfile, username='student2') cls.semester = mommy.make(Semester, pk=1) cls.course_type = mommy.make(CourseType, name_en="Type") cls.course1 = mommy.make(Course, type=cls.course_type, semester=cls.semester, participants=[cls.student_user], voters=[cls.student_user], name_de="Veranstaltung 1", name_en="Course 1", is_rewarded=True) - cls.course2 = mommy.make(Course, type=cls.course_type, semester=cls.semester, participants=[cls.student_user], + cls.course2 = mommy.make(Course, type=cls.course_type, semester=cls.semester, participants=[cls.student_user, cls.student_user2], name_de="Veranstaltung 2", name_en="Course 2", is_rewarded=False) mommy.make(Contribution, course=cls.course1, responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS) mommy.make(Contribution, course=cls.course2, responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS) + mommy.make(RewardPointGranting, semester=cls.semester, user_profile=cls.student_user, value=23) + mommy.make(RewardPointGranting, semester=cls.semester, user_profile=cls.student_user, value=42) def test_view_downloads_csv_file(self): response = self.app.get(self.url, user='staff') expected_content = ( "Username;Can use reward points;#Required courses voted for;#Required courses;#Optional courses voted for;" "#Optional courses;Earned reward points\r\n" - "student;False;1;1;0;1;False\r\n") + "student;False;1;1;0;1;65\r\n" + "student2;False;0;0;0;1;0\r\n") self.assertEqual(response.content, expected_content.encode("utf-8"))
Participation export should include number of reward points Instead of stating `True` or `False` whether a user received reward points in the `semester_participation_export`, the respective column should instead show the number of reward points the user received.
2018-06-23T22:00:55
e-valuation/EvaP
1,221
e-valuation__EvaP-1221
[ "1220" ]
ce4b5bef9567cfeab3596a09230fe72871bc7510
diff --git a/evap/evaluation/views.py b/evap/evaluation/views.py --- a/evap/evaluation/views.py +++ b/evap/evaluation/views.py @@ -4,7 +4,7 @@ from django.contrib import messages, auth from django.contrib.auth.decorators import login_required from django.core.mail import EmailMessage -from django.http import HttpResponse +from django.http import HttpResponse, HttpResponseBadRequest from django.shortcuts import redirect, render from django.utils.translation import ugettext as _ from django.views.decorators.http import require_POST @@ -103,11 +103,12 @@ def contact(request): try: mail.send() logger.info('Sent contact email: \n{}\n'.format(mail.message())) + return HttpResponse() except Exception: logger.exception('An exception occurred when sending the following contact email:\n{}\n'.format(mail.message())) raise - return HttpResponse() + return HttpResponseBadRequest() @require_POST
Contact modal broken in Firefox The contact modal does not work in Firefox, because `event` is undefined. Chrome provides this in global scope, that's why it's working there (see https://stackoverflow.com/questions/18274383/ajax-post-working-in-chrome-but-not-in-firefox).
2018-06-30T17:21:33
e-valuation/EvaP
1,226
e-valuation__EvaP-1226
[ "1222" ]
56e7bdd8185f6817923b0c80bc5321364a79e9b6
diff --git a/evap/results/exporters.py b/evap/results/exporters.py --- a/evap/results/exporters.py +++ b/evap/results/exporters.py @@ -133,21 +133,21 @@ def export(self, response, course_types_list, include_not_enough_voters=False, i continue qn_results = results[questionnaire.id] values = [] - total_count = 0 + count_sum = 0 approval_count = 0 for grade_result in qn_results: if grade_result.question.id == question.id: if grade_result.has_answers: - values.append(grade_result.average * grade_result.total_count) - total_count += grade_result.total_count + values.append(grade_result.average * grade_result.count_sum) + count_sum += grade_result.count_sum if grade_result.question.is_yes_no_question: approval_count += grade_result.approval_count if values: - avg = sum(values) / total_count + avg = sum(values) / count_sum if question.is_yes_no_question: - percent_approval = approval_count / total_count if total_count > 0 else 0 + percent_approval = approval_count / count_sum if count_sum > 0 else 0 writec(self, "{:.0%}".format(percent_approval), self.grade_to_style(avg)) else: writec(self, avg, self.grade_to_style(avg)) diff --git a/evap/results/tools.py b/evap/results/tools.py --- a/evap/results/tools.py +++ b/evap/results/tools.py @@ -56,7 +56,7 @@ def __init__(self, question, counts): self.counts = counts @property - def total_count(self): + def count_sum(self): if not self.is_published: return None return sum(self.counts) @@ -72,7 +72,7 @@ def approval_count(self): def average(self): if not self.has_answers: return None - return sum(answer * count for answer, count in enumerate(self.counts, start=1)) / self.total_count + return sum(answer * count for answer, count in enumerate(self.counts, start=1)) / self.count_sum @property def has_answers(self): @@ -147,12 +147,12 @@ def normalized_distribution(distribution): return tuple((value / distribution_sum) for value in distribution) -def avg_distribution(distributions, weights=itertools.repeat(1)): - if all(distribution is None for distribution in distributions): +def avg_distribution(weighted_distributions): + if all(distribution is None for distribution, __ in weighted_distributions): return None summed_distribution = [0, 0, 0, 0, 0] - for distribution, weight in zip(distributions, weights): + for distribution, weight in weighted_distributions: if distribution: for index, value in enumerate(distribution): summed_distribution[index] += weight * value @@ -160,11 +160,15 @@ def avg_distribution(distributions, weights=itertools.repeat(1)): def average_grade_questions_distribution(results): - return avg_distribution([normalized_distribution(result.counts) for result in results if result.question.is_grade_question]) + return avg_distribution( + [(normalized_distribution(result.counts), result.count_sum) for result in results if result.question.is_grade_question] + ) def average_non_grade_rating_questions_distribution(results): - return avg_distribution([normalized_distribution(result.counts) for result in results if result.question.is_non_grade_rating_question]) + return avg_distribution( + [(normalized_distribution(result.counts), result.count_sum) for result in results if result.question.is_non_grade_rating_question], + ) def calculate_average_distribution(course): @@ -180,16 +184,21 @@ def calculate_average_distribution(course): course_results = grouped_results.pop(None, []) average_contributor_distribution = avg_distribution([ - avg_distribution( - [average_grade_questions_distribution(results), average_non_grade_rating_questions_distribution(results)], - [settings.CONTRIBUTOR_GRADE_QUESTIONS_WEIGHT, settings.CONTRIBUTOR_NON_GRADE_RATING_QUESTIONS_WEIGHT] - ) for results in grouped_results.values() + ( + avg_distribution([ + (average_grade_questions_distribution(contributor_results), settings.CONTRIBUTOR_GRADE_QUESTIONS_WEIGHT), + (average_non_grade_rating_questions_distribution(contributor_results), settings.CONTRIBUTOR_NON_GRADE_RATING_QUESTIONS_WEIGHT) + ]), + sum(result.count_sum for result in contributor_results if result.question.is_rating_question) + ) + for contributor_results in grouped_results.values() ]) - return avg_distribution( - [average_grade_questions_distribution(course_results), average_non_grade_rating_questions_distribution(course_results), average_contributor_distribution], - [settings.COURSE_GRADE_QUESTIONS_WEIGHT, settings.COURSE_NON_GRADE_QUESTIONS_WEIGHT, settings.CONTRIBUTIONS_WEIGHT] - ) + return avg_distribution([ + (average_grade_questions_distribution(course_results), settings.COURSE_GRADE_QUESTIONS_WEIGHT), + (average_non_grade_rating_questions_distribution(course_results), settings.COURSE_NON_GRADE_QUESTIONS_WEIGHT), + (average_contributor_distribution, settings.CONTRIBUTIONS_WEIGHT) + ]) def distribution_to_grade(distribution): diff --git a/evap/results/views.py b/evap/results/views.py --- a/evap/results/views.py +++ b/evap/results/views.py @@ -143,7 +143,7 @@ def add_warnings(course, course_result): # calculate the median values of how many people answered a questionnaire across all contributions questionnaire_max_answers = defaultdict(list) for questionnaire_result in course_result.questionnaire_results: - max_answers = max((question_result.total_count for question_result in questionnaire_result.question_results if question_result.question.is_rating_question), default=0) + max_answers = max((question_result.count_sum for question_result in questionnaire_result.question_results if question_result.question.is_rating_question), default=0) questionnaire_max_answers[questionnaire_result.questionnaire].append(max_answers) questionnaire_warning_thresholds = {} @@ -152,11 +152,11 @@ def add_warnings(course, course_result): for questionnaire_result in course_result.questionnaire_results: rating_results = [question_result for question_result in questionnaire_result.question_results if question_result.question.is_rating_question] - max_answers = max((rating_result.total_count for rating_result in rating_results), default=0) + max_answers = max((rating_result.count_sum for rating_result in rating_results), default=0) questionnaire_result.warning = 0 < max_answers < questionnaire_warning_thresholds[questionnaire_result.questionnaire] for rating_result in rating_results: - rating_result.warning = questionnaire_result.warning or rating_result.has_answers and rating_result.total_count < questionnaire_warning_thresholds[questionnaire_result.questionnaire] + rating_result.warning = questionnaire_result.warning or rating_result.has_answers and rating_result.count_sum < questionnaire_warning_thresholds[questionnaire_result.questionnaire] def user_can_see_text_answer(user, represented_users, text_answer, public_view=False):
diff --git a/evap/results/tests/test_tools.py b/evap/results/tests/test_tools.py --- a/evap/results/tests/test_tools.py +++ b/evap/results/tests/test_tools.py @@ -50,7 +50,7 @@ def test_calculation_results(self): self.assertEqual(len(questionnaire_result.question_results), 1) question_result = questionnaire_result.question_results[0] - self.assertEqual(question_result.total_count, 150) + self.assertEqual(question_result.count_sum, 150) self.assertAlmostEqual(question_result.average, float(109) / 30) self.assertEqual(question_result.counts, (5, 15, 40, 60, 30)) @@ -85,6 +85,7 @@ def setUpTestData(cls): cls.questionnaire = mommy.make(Questionnaire) cls.question_grade = mommy.make(Question, questionnaire=cls.questionnaire, type="G") cls.question_likert = mommy.make(Question, questionnaire=cls.questionnaire, type="L") + cls.question_likert_2 = mommy.make(Question, questionnaire=cls.questionnaire, type="L") cls.general_contribution = cls.course.general_contribution cls.general_contribution.questionnaires.set([cls.questionnaire]) cls.contribution1 = mommy.make(Contribution, contributor=mommy.make(UserProfile), course=cls.course, questionnaires=[cls.questionnaire]) @@ -98,71 +99,74 @@ def test_average_grade(self): mommy.make(RatingAnswerCounter, question=self.question_grade, contribution=self.contribution2, answer=4, count=2) mommy.make(RatingAnswerCounter, question=question_grade2, contribution=self.contribution1, answer=1, count=1) mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.contribution1, answer=3, count=4) - mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.general_contribution, answer=5, count=3) + mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.general_contribution, answer=5, count=5) + mommy.make(RatingAnswerCounter, question=self.question_likert_2, contribution=self.general_contribution, answer=3, count=3) contributor_weights_sum = settings.CONTRIBUTOR_GRADE_QUESTIONS_WEIGHT + settings.CONTRIBUTOR_NON_GRADE_RATING_QUESTIONS_WEIGHT - contributor1_average = (settings.CONTRIBUTOR_GRADE_QUESTIONS_WEIGHT * (2 + 1) / 2 + (settings.CONTRIBUTOR_NON_GRADE_RATING_QUESTIONS_WEIGHT) * 3) / contributor_weights_sum # 2.4 + contributor1_average = ((settings.CONTRIBUTOR_GRADE_QUESTIONS_WEIGHT * ((2 * 1) + (1 * 1)) / (1 + 1)) + (settings.CONTRIBUTOR_NON_GRADE_RATING_QUESTIONS_WEIGHT * 3)) / contributor_weights_sum # 2.4 contributor2_average = 4 - contributors_average = (contributor1_average + contributor2_average) / 2 # 3.2 + contributors_average = (((1 + 1 + 4) * contributor1_average) + (2 * contributor2_average)) / (1 + 1 + 4 + 2) # 2.8 - course_non_grade_average = 5 + course_non_grade_average = ((5 * 5) + (3 * 3)) / (5 + 3) # 4.25 contributors_percentage = settings.CONTRIBUTIONS_WEIGHT / (settings.CONTRIBUTIONS_WEIGHT + settings.COURSE_NON_GRADE_QUESTIONS_WEIGHT) # 0.375 course_non_grade_percentage = settings.COURSE_NON_GRADE_QUESTIONS_WEIGHT / (settings.CONTRIBUTIONS_WEIGHT + settings.COURSE_NON_GRADE_QUESTIONS_WEIGHT) # 0.625 - total_grade = contributors_percentage * contributors_average + course_non_grade_percentage * course_non_grade_average # 1.2 + 3.125 = 4.325 + total_grade = contributors_percentage * contributors_average + course_non_grade_percentage * course_non_grade_average # 1.05 + 2.65625 = 3.70625 average_grade = distribution_to_grade(calculate_average_distribution(self.course)) self.assertAlmostEqual(average_grade, total_grade) - self.assertAlmostEqual(average_grade, 4.325) + self.assertAlmostEqual(average_grade, 3.70625) @override_settings(CONTRIBUTOR_GRADE_QUESTIONS_WEIGHT=4, CONTRIBUTOR_NON_GRADE_RATING_QUESTIONS_WEIGHT=6, CONTRIBUTIONS_WEIGHT=3, COURSE_GRADE_QUESTIONS_WEIGHT=2, COURSE_NON_GRADE_QUESTIONS_WEIGHT=5) def test_distribution_without_course_grade_question(self): mommy.make(RatingAnswerCounter, question=self.question_grade, contribution=self.contribution1, answer=1, count=1) mommy.make(RatingAnswerCounter, question=self.question_grade, contribution=self.contribution1, answer=3, count=1) - mommy.make(RatingAnswerCounter, question=self.question_grade, contribution=self.contribution2, answer=4, count=2) - mommy.make(RatingAnswerCounter, question=self.question_grade, contribution=self.contribution2, answer=2, count=2) - mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.contribution1, answer=3, count=4) - mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.contribution1, answer=5, count=4) - mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.general_contribution, answer=5, count=3) + mommy.make(RatingAnswerCounter, question=self.question_grade, contribution=self.contribution2, answer=4, count=1) + mommy.make(RatingAnswerCounter, question=self.question_grade, contribution=self.contribution2, answer=2, count=1) + mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.contribution1, answer=3, count=3) + mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.contribution1, answer=5, count=3) + mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.general_contribution, answer=5, count=5) + mommy.make(RatingAnswerCounter, question=self.question_likert_2, contribution=self.general_contribution, answer=3, count=3) # contribution1: 0.4 * (0.5, 0, 0.5, 0, 0) + 0.6 * (0, 0, 0.5, 0, 0.5) = (0.2, 0, 0.5, 0, 0.3) # contribution2: (0, 0.5, 0, 0.5, 0) - # contributions: (0.1, 0.25, 0.25, 0.25, 0.15) + # contributions: (8 / 10) * (0.2, 0, 0.5, 0, 0.3) + (2 / 10) * (0, 0.5, 0, 0.5, 0) = (0.16, 0.1, 0.4, 0.1, 0.24) - # course_non_grade: (0, 0, 0, 0, 1) + # course_non_grade: (0, 0, 0.375, 0, 0.625) - # total: 0.375 * (0.1, 0.25, 0.25, 0.25, 0.15) + 0.625 * (0, 0, 0, 0, 1) = (0.0375, 0.09375, 0.09375, 0.09375, 0.68125) + # total: 0.375 * (0.16, 0.1, 0.4, 0.1, 0.24) + 0.625 * (0, 0, 0.375, 0, 0.625) = (0.06, 0.0375, 0.384375, 0.0375, 0.480625) distribution = calculate_average_distribution(self.course) - self.assertAlmostEqual(distribution[0], 0.0375) - self.assertAlmostEqual(distribution[1], 0.09375) - self.assertAlmostEqual(distribution[2], 0.09375) - self.assertAlmostEqual(distribution[3], 0.09375) - self.assertAlmostEqual(distribution[4], 0.68125) + self.assertAlmostEqual(distribution[0], 0.06) + self.assertAlmostEqual(distribution[1], 0.0375) + self.assertAlmostEqual(distribution[2], 0.384375) + self.assertAlmostEqual(distribution[3], 0.0375) + self.assertAlmostEqual(distribution[4], 0.480625) @override_settings(CONTRIBUTOR_GRADE_QUESTIONS_WEIGHT=4, CONTRIBUTOR_NON_GRADE_RATING_QUESTIONS_WEIGHT=6, CONTRIBUTIONS_WEIGHT=3, COURSE_GRADE_QUESTIONS_WEIGHT=2, COURSE_NON_GRADE_QUESTIONS_WEIGHT=5) def test_distribution_with_course_grade_question(self): mommy.make(RatingAnswerCounter, question=self.question_grade, contribution=self.contribution1, answer=1, count=1) mommy.make(RatingAnswerCounter, question=self.question_grade, contribution=self.contribution1, answer=3, count=1) - mommy.make(RatingAnswerCounter, question=self.question_grade, contribution=self.contribution2, answer=4, count=2) - mommy.make(RatingAnswerCounter, question=self.question_grade, contribution=self.contribution2, answer=2, count=2) - mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.contribution1, answer=3, count=4) - mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.contribution1, answer=5, count=4) - mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.general_contribution, answer=5, count=3) + mommy.make(RatingAnswerCounter, question=self.question_grade, contribution=self.contribution2, answer=4, count=1) + mommy.make(RatingAnswerCounter, question=self.question_grade, contribution=self.contribution2, answer=2, count=1) + mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.contribution1, answer=3, count=3) + mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.contribution1, answer=5, count=3) + mommy.make(RatingAnswerCounter, question=self.question_likert, contribution=self.general_contribution, answer=5, count=5) + mommy.make(RatingAnswerCounter, question=self.question_likert_2, contribution=self.general_contribution, answer=3, count=3) mommy.make(RatingAnswerCounter, question=self.question_grade, contribution=self.general_contribution, answer=2, count=10) # contributions and course_non_grade are as above # course_grade: (0, 1, 0, 0, 0) - # total: 0.3 * (0.1, 0.25, 0.25, 0.25, 0.15) + 0.2 * (0, 1, 0, 0, 0) + 0.5 * (0, 0, 0, 0, 1) = (0.03, 0.275, 0.075, 0.075, 0.545) + # total: 0.3 * (0.16, 0.1, 0.4, 0.1, 0.24) + 0.2 * (0, 1, 0, 0, 0) + 0.5 * (0, 0, 0.375, 0, 0.625) = (0.048, 0.23, 0.3075, 0.03, 0.3845) distribution = calculate_average_distribution(self.course) - self.assertAlmostEqual(distribution[0], 0.03) - self.assertAlmostEqual(distribution[1], 0.275) - self.assertAlmostEqual(distribution[2], 0.075) - self.assertAlmostEqual(distribution[3], 0.075) - self.assertAlmostEqual(distribution[4], 0.545) + self.assertAlmostEqual(distribution[0], 0.048) + self.assertAlmostEqual(distribution[1], 0.23) + self.assertAlmostEqual(distribution[2], 0.3075) + self.assertAlmostEqual(distribution[3], 0.03) + self.assertAlmostEqual(distribution[4], 0.3845) def test_single_result_calculate_average_distribution(self): single_result_course = mommy.make(Course, state='published')
Weigh results of questions by number of answers Currently, we calculate a grade distribution for each question, and then calculate an average distribution for groups of questions. If one question has 1 vote, and another question has 10 votes, that one vote will have roughly 10 times the weight of the other votes in that average distribution, which doesn't seem right.
2018-07-04T20:23:32
e-valuation/EvaP
1,241
e-valuation__EvaP-1241
[ "1238" ]
e791bdaefc13d0bd70494a7135644a4f04e9cec7
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -446,7 +446,7 @@ def reopen_review(self): @transition(field=state, source='reviewed', target='published') def publish(self): - assert self._voter_count is None and self._participant_count is None + assert self.is_single_result or self._voter_count is None and self._participant_count is None self._voter_count = self.num_voters self._participant_count = self.num_participants
diff --git a/evap/evaluation/tests/test_models.py b/evap/evaluation/tests/test_models.py --- a/evap/evaluation/tests/test_models.py +++ b/evap/evaluation/tests/test_models.py @@ -187,6 +187,21 @@ def test_single_result_can_be_deleted_only_in_reviewed(self): course.delete() self.assertFalse(Course.objects.filter(pk=course.pk).exists()) + def test_single_result_can_be_published(self): + """ Regression test for #1238 """ + responsible = mommy.make(UserProfile) + single_result = mommy.make(Course, + semester=mommy.make(Semester), is_single_result=True, _participant_count=5, _voter_count=5 + ) + contribution = mommy.make(Contribution, + course=single_result, contributor=responsible, responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS, + questionnaires=[Questionnaire.single_result_questionnaire()] + ) + mommy.make(RatingAnswerCounter, answer=1, count=1, question=Questionnaire.single_result_questionnaire().question_set.first(), contribution=contribution) + + single_result.single_result_created() + single_result.publish() # used to crash + def test_adding_second_voter_sets_can_publish_text_results_to_true(self): student1 = mommy.make(UserProfile) student2 = mommy.make(UserProfile) @@ -420,15 +435,14 @@ def test_course_participations_are_not_archived_if_participant_count_is_set(self def test_archiving_participations_doesnt_change_single_results_participant_count(self): responsible = mommy.make(UserProfile) - course = mommy.make(Course, state="published", is_single_result=True) + course = mommy.make(Course, + state="published", is_single_result=True, _participant_count=5, _voter_count=5 + ) contribution = mommy.make(Contribution, course=course, contributor=responsible, responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS) contribution.questionnaires.add(Questionnaire.single_result_questionnaire()) - course._participant_count = 5 - course._voter_count = 5 - course.save() - course.semester.archive_participations() + course = Course.objects.get(pk=course.pk) self.assertEqual(course._participant_count, 5) self.assertEqual(course._voter_count, 5)
Single result publishing fails Single results can't be published because https://github.com/fsr-itse/EvaP/blob/master/evap/evaluation/models.py#L449 asserts `self._voter_count is None` which it is not for single results.
2018-07-30T17:01:23
e-valuation/EvaP
1,250
e-valuation__EvaP-1250
[ "1248" ]
b6c9ae895b66d1852b8905a43d21192d00ea28c7
diff --git a/evap/results/views.py b/evap/results/views.py --- a/evap/results/views.py +++ b/evap/results/views.py @@ -51,8 +51,9 @@ def warm_up_template_cache(courses): def get_courses_with_prefetched_data(courses): if isinstance(courses, QuerySet): + participant_counts = courses.annotate(num_participants=Count("participants")).values_list("num_participants", flat=True) + voter_counts = courses.annotate(num_voters=Count("voters")).values_list("num_voters", flat=True) courses = (courses - .annotate(num_participants=Count("participants", distinct=True), num_voters=Count("voters", distinct=True)) .select_related("type") .prefetch_related( "degrees", @@ -60,7 +61,10 @@ def get_courses_with_prefetched_data(courses): Prefetch("contributions", queryset=Contribution.objects.filter(responsible=True).select_related("contributor"), to_attr="responsible_contributions") ) ) - for course in courses: + for course, participant_count, voter_count in zip(courses, participant_counts, voter_counts): + if course._participant_count is None: + course.num_participants = participant_count + course.num_voters = voter_count course.responsible_contributors = [contribution.contributor for contribution in course.responsible_contributions] for course in courses: if not course.is_single_result:
diff --git a/evap/results/tests/test_views.py b/evap/results/tests/test_views.py --- a/evap/results/tests/test_views.py +++ b/evap/results/tests/test_views.py @@ -1,8 +1,10 @@ from django.contrib.auth.models import Group +from django.test.testcases import TestCase from model_mommy import mommy from evap.evaluation.models import Semester, UserProfile, Course, Contribution, Questionnaire, Degree, Question, RatingAnswerCounter from evap.evaluation.tests.tools import ViewTest, WebTest +from evap.results.views import get_courses_with_prefetched_data import random @@ -16,6 +18,25 @@ def setUpTestData(cls): mommy.make(UserProfile, username='manager', email="[email protected]") +class TestGetCoursesWithPrefetchedData(TestCase): + def test_returns_correct_participant_count(self): + """ Regression test for #1248 """ + participants = mommy.make(UserProfile, _quantity=2) + course = mommy.make(Course, + state='published', _participant_count=2, _voter_count=2, + participants=participants, voters=participants + ) + participants[0].delete() + course = Course.objects.get(pk=course.pk) + + courses = get_courses_with_prefetched_data([course]) + self.assertEqual(courses[0].num_participants, 2) + self.assertEqual(courses[0].num_voters, 2) + courses = get_courses_with_prefetched_data(Course.objects.filter(pk=course.pk)) + self.assertEqual(courses[0].num_participants, 2) + self.assertEqual(courses[0].num_voters, 2) + + class TestResultsViewContributionWarning(WebTest): @classmethod def setUpTestData(cls):
Participant count incorrect on results index E.g. for "Lehrerworkshop bei der Endrunde des Bundeswettbewerb Informatik (Sommersemester 2017)" the overview shows "0/0", or for MINT-Camps it says "1/1" or "3/3" participants - the correct numbers are 12, 24 and 22. ![capture](https://user-images.githubusercontent.com/2188983/43835155-2096edf6-9b11-11e8-98ea-b6f8e62231fa.PNG)
The mentioned MINT-Camps aren't private courses, so this is a general issue. When caching the results, `participants` and `voters` are counted, which is correct when publishing for the first time, but not when recalculating the cache later on. Some users might have already been deleted so `num_participants` and `num_voters` have to be used instead. Oh, true. I thought they were private, as other Schülerklub evaluations sometimes are - but you're right: the common theme is the set of external participants.
2018-08-13T18:06:14
e-valuation/EvaP
1,258
e-valuation__EvaP-1258
[ "1133" ]
23a6a70eb9c9d4caa68fec3e5ed5ce44e658c56e
diff --git a/evap/results/tools.py b/evap/results/tools.py --- a/evap/results/tools.py +++ b/evap/results/tools.py @@ -5,8 +5,9 @@ from django.conf import settings from django.core.cache import caches +from django.db.models import Q -from evap.evaluation.models import TextAnswer, RatingAnswerCounter, Questionnaire, Question +from evap.evaluation.models import Contribution, Question, Questionnaire, RatingAnswerCounter, TextAnswer, UserProfile GRADE_COLORS = { @@ -84,13 +85,15 @@ def is_published(self): class TextResult: - def __init__(self, question, answers): + def __init__(self, question, answers, answers_visible_to=None): assert question.is_text_question self.question = question self.answers = answers + self.answers_visible_to = answers_visible_to HeadingResult = namedtuple('HeadingResult', ('question')) +TextAnswerVisibility = namedtuple('TextAnswerVisibility', ('visible_by_contribution', 'visible_by_delegation_count')) def get_counts(answer_counters): @@ -137,7 +140,7 @@ def _collect_results_impl(course): results.append(RatingResult(question, counts)) elif question.is_text_question and course.can_publish_text_results: answers = TextAnswer.objects.filter(contribution=contribution, question=question, state__in=[TextAnswer.PRIVATE, TextAnswer.PUBLISHED]) - results.append(TextResult(question=question, answers=answers)) + results.append(TextResult(question=question, answers=answers, answers_visible_to=textanswers_visible_to(contribution))) elif question.is_heading_question: results.append(HeadingResult(question=question)) questionnaire_results.append(QuestionnaireResult(questionnaire, results)) @@ -232,3 +235,19 @@ def get_grade_color(grade): next_lower = int(grade) next_higher = int(ceil(grade)) return color_mix(GRADE_COLORS[next_lower], GRADE_COLORS[next_higher], grade - next_lower) + + +def textanswers_visible_to(contribution): + if contribution.is_general: + contributors = UserProfile.objects.filter( + Q(contributions__course=contribution.course) & ( + Q(contributions__comment_visibility=Contribution.ALL_COMMENTS) | + Q(contributions__comment_visibility=Contribution.GENERAL_COMMENTS) + ) + ).distinct().order_by('contributions__comment_visibility') + else: + contributors = [contribution.contributor] + if not contribution.responsible: + contributors.extend(UserProfile.objects.filter(contributions__course=contribution.course, contributions__comment_visibility=Contribution.ALL_COMMENTS).exclude(id=contribution.contributor.id)) + num_delegates = len(set(UserProfile.objects.filter(represented_users__in=contributors).distinct()) - set(contributors)) + return TextAnswerVisibility(visible_by_contribution=contributors, visible_by_delegation_count=num_delegates) diff --git a/evap/results/views.py b/evap/results/views.py --- a/evap/results/views.py +++ b/evap/results/views.py @@ -230,15 +230,23 @@ def user_can_see_text_answer(user, represented_users, text_answer, view): if text_answer.is_private: return contributor == user + # NOTE: when changing this behavior, make sure all changes are also reflected in results.tools.textanswers_visible_to + # and in results.tests.test_tools.TestTextAnswerVisibilityInfo if text_answer.is_published: + # text answers about responsible contributors can only be seen by the users themselves and by their delegates + # they can not be seen by other responsible contributors if text_answer.contribution.responsible: - return contributor == user or user in contributor.delegates.all() + return contributor in represented_users + # users can see textanswers if the contributor is one of their represented users (which includes the user itself) if contributor in represented_users: return True + # users can see textanswers if one of their represented users has comment visiblity ALL_COMMENTS for the course if text_answer.contribution.course.contributions.filter( contributor__in=represented_users, comment_visibility=Contribution.ALL_COMMENTS).exists(): return True + # users can see textanswers from general contributions if one of their represented users has comment visibility + # GENERAL_COMMENTS for the course if text_answer.contribution.is_general and text_answer.contribution.course.contributions.filter( contributor__in=represented_users, comment_visibility=Contribution.GENERAL_COMMENTS).exists(): return True diff --git a/evap/student/views.py b/evap/student/views.py --- a/evap/student/views.py +++ b/evap/student/views.py @@ -15,7 +15,7 @@ from evap.student.forms import QuestionnaireVotingForm from evap.student.tools import question_id -from evap.results.tools import calculate_average_distribution, distribution_to_grade +from evap.results.tools import calculate_average_distribution, distribution_to_grade, textanswers_visible_to SUCCESS_MAGIC_STRING = 'vote submitted successfully' @@ -79,7 +79,7 @@ def get_valid_form_groups_or_render_vote_page(request, course, preview, for_rend course_form_group = form_groups.pop(course.general_contribution) - contributor_form_groups = [(contribution.contributor, contribution.label, form_group, any(form.errors for form in form_group)) for contribution, form_group in form_groups.items()] + contributor_form_groups = [(contribution.contributor, contribution.label, form_group, any(form.errors for form in form_group), textanswers_visible_to(contribution)) for contribution, form_group in form_groups.items()] course_form_group_top = [questions_form for questions_form in course_form_group if questions_form.questionnaire.is_above_contributors] course_form_group_bottom = [questions_form for questions_form in course_form_group if questions_form.questionnaire.is_below_contributors] if not contributor_form_groups: @@ -100,7 +100,9 @@ def get_valid_form_groups_or_render_vote_page(request, course, preview, for_rend success_magic_string=SUCCESS_MAGIC_STRING, success_redirect_url=reverse('student:index'), evaluation_ends_soon=course.evaluation_ends_soon(), - for_rendering_in_modal=for_rendering_in_modal) + for_rendering_in_modal=for_rendering_in_modal, + general_contribution_textanswers_visible_to=textanswers_visible_to(course.general_contribution), + ) return None, render(request, "student_vote.html", template_data)
diff --git a/evap/results/tests/test_tools.py b/evap/results/tests/test_tools.py --- a/evap/results/tests/test_tools.py +++ b/evap/results/tests/test_tools.py @@ -6,8 +6,10 @@ from model_mommy import mommy -from evap.evaluation.models import Contribution, RatingAnswerCounter, Questionnaire, Question, Course, UserProfile -from evap.results.tools import get_collect_results_cache_key, calculate_average_distribution, collect_results, distribution_to_grade, get_single_result_rating_result +from evap.evaluation.models import Contribution, Course, Question, Questionnaire, RatingAnswerCounter, TextAnswer, UserProfile +from evap.results.tools import calculate_average_distribution, collect_results, distribution_to_grade, \ + get_collect_results_cache_key, get_single_result_rating_result, textanswers_visible_to +from evap.results.views import user_can_see_text_answer from evap.staff.tools import merge_users @@ -190,3 +192,70 @@ def test_result_calculation_with_no_contributor_rating_question_does_not_fail(se distribution = calculate_average_distribution(course) self.assertEqual(distribution[0], 1) + + +class TestTextAnswerVisibilityInfo(TestCase): + @classmethod + def setUpTestData(cls): + cls.delegate1 = mommy.make(UserProfile, username="delegate1") + cls.delegate2 = mommy.make(UserProfile, username="delegate2") + cls.contributor_own = mommy.make(UserProfile, username="contributor_own", delegates=[cls.delegate1]) + cls.contributor_course = mommy.make(UserProfile, username="contributor_course", delegates=[cls.delegate2]) + cls.contributor_all = mommy.make(UserProfile, username="contributor_all") + cls.responsible1 = mommy.make(UserProfile, username="responsible1", delegates=[cls.delegate1, cls.contributor_course]) + cls.responsible2 = mommy.make(UserProfile, username="responsible2") + cls.other_user = mommy.make(UserProfile, username="other_user") + + cls.course = mommy.make(Course, state='published', can_publish_text_results=True) + cls.questionnaire = mommy.make(Questionnaire) + cls.question = mommy.make(Question, questionnaire=cls.questionnaire, type="T") + cls.general_contribution = cls.course.general_contribution + cls.general_contribution.questionnaires.set([cls.questionnaire]) + cls.responsible1_contribution = mommy.make(Contribution, contributor=cls.responsible1, course=cls.course, + questionnaires=[cls.questionnaire], responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS) + cls.responsible2_contribution = mommy.make(Contribution, contributor=cls.responsible2, course=cls.course, + questionnaires=[cls.questionnaire], responsible=True, can_edit=True, comment_visibility=Contribution.ALL_COMMENTS) + cls.contributor_own_contribution = mommy.make(Contribution, contributor=cls.contributor_own, course=cls.course, + questionnaires=[cls.questionnaire], comment_visibility=Contribution.OWN_COMMENTS) + cls.contributor_course_contribution = mommy.make(Contribution, contributor=cls.contributor_course, course=cls.course, + questionnaires=[cls.questionnaire], comment_visibility=Contribution.GENERAL_COMMENTS) + cls.contributor_all_contribution = mommy.make(Contribution, contributor=cls.contributor_all, course=cls.course, + questionnaires=[cls.questionnaire], comment_visibility=Contribution.ALL_COMMENTS) + cls.general_contribution_textanswer = mommy.make(TextAnswer, question=cls.question, contribution=cls.general_contribution, state=TextAnswer.PUBLISHED) + cls.responsible1_textanswer = mommy.make(TextAnswer, question=cls.question, contribution=cls.responsible1_contribution, state=TextAnswer.PUBLISHED) + cls.responsible2_textanswer = mommy.make(TextAnswer, question=cls.question, contribution=cls.responsible2_contribution, state=TextAnswer.PUBLISHED) + cls.contributor_own_textanswer = mommy.make(TextAnswer, question=cls.question, contribution=cls.contributor_own_contribution, state=TextAnswer.PUBLISHED) + cls.contributor_course_textanswer = mommy.make(TextAnswer, question=cls.question, contribution=cls.contributor_course_contribution, state=TextAnswer.PUBLISHED) + cls.contributor_all_textanswer = mommy.make(TextAnswer, question=cls.question, contribution=cls.contributor_all_contribution, state=TextAnswer.PUBLISHED) + + def test_correct_contributors_and_delegate_count_are_shown_in_textanswer_visibility_info(self): + textanswers = [ + self.general_contribution_textanswer, self.responsible1_textanswer, self.responsible2_textanswer, + self.contributor_own_textanswer, self.contributor_course_textanswer, self.contributor_all_textanswer + ] + visible_to = [textanswers_visible_to(textanswer.contribution) for textanswer in textanswers] + users_seeing_contribution = [(set(), set()) for _ in range(len(textanswers))] + + for user in UserProfile.objects.all(): + represented_users = [user] + list(user.represented_users.all()) + for i in range(len(textanswers)): + if user_can_see_text_answer(user, represented_users, textanswers[i], 'full'): + if user_can_see_text_answer(user, [user], textanswers[i], 'full'): + users_seeing_contribution[i][0].add(user) + else: + users_seeing_contribution[i][1].add(user) + + for i in range(len(textanswers)): + self.assertCountEqual(visible_to[i][0], users_seeing_contribution[i][0]) + + expected_delegate_counts = [ + 2, # delegate1, delegate2 + 2, # delegate1, contributor_course + 0, + 2, # delegate1, contributor_course + 2, # delegate1, delegate2 + 2, # delegate1, contributor_course + ] + + for i in range(len(textanswers)): + self.assertTrue(visible_to[i][1] == len(users_seeing_contribution[i][1]) == expected_delegate_counts[i]) diff --git a/evap/results/tests/test_views.py b/evap/results/tests/test_views.py --- a/evap/results/tests/test_views.py +++ b/evap/results/tests/test_views.py @@ -497,6 +497,10 @@ def test_textanswer_visibility_for_student_external(self): # the external user does not participate in or contribute to the course and therefore can't see the results self.app.get("/results/semester/1/course/1", user='student_external', status=403) + def test_textanswer_visibility_info_is_shown(self): + page = self.app.get("/results/semester/1/course/1", user='contributor') + self.assertIn("can be seen by: contributor user", page) + class TestResultsOtherContributorsListOnExportView(WebTest): @classmethod diff --git a/evap/student/tests/test_views.py b/evap/student/tests/test_views.py --- a/evap/student/tests/test_views.py +++ b/evap/student/tests/test_views.py @@ -180,11 +180,11 @@ def test_user_cannot_vote_multiple_times(self): def test_user_cannot_vote_for_themselves(self): response = self.app.get(self.url, user=self.contributor1, status=200) - for contributor, _, _, _ in response.context['contributor_form_groups']: + for contributor, __, __, __, __ in response.context['contributor_form_groups']: self.assertNotEqual(contributor, self.contributor1, "Contributor should not see the questionnaire about themselves") response = self.app.get(self.url, user=self.voting_user1, status=200) - self.assertTrue(any(contributor == self.contributor1 for contributor, _, _, _ in response.context['contributor_form_groups']), + self.assertTrue(any(contributor == self.contributor1 for contributor, __, __, __, __ in response.context['contributor_form_groups']), "Regular students should see the questionnaire about a contributor") def test_user_logged_out(self): @@ -241,3 +241,7 @@ def test_user_checked_bottom_text_answer_publish_confirmation(self): def test_user_did_not_check_text_answer_publish_confirmation(self): self.helper_test_answer_publish_confirmation(None) + + def test_textanswer_visibility_is_shown(self): + page = self.app.get(self.url, user=self.voting_user1.username, status=200) + self.assertIn("can be seen by: {}".format(self.contributor1.full_name), page)
Text answer visibility info Next to each text question on the student's voting page a tooltip info icon should show which users (listed by their names) will be able to see the text result after the course was published. This includes the person to which the text answer belongs (+delegates), the responsible person (+delegates) and all other contributors who can see all text answers. A final line will state something like "and the staff users/evaluation team/student representatives" or similar (without listing individual names).
i have a bit of the fear that this list is by default rather long, might induce the feeling to voters that their comments are not confidential at all, and might keep them back from speaking freely. just an idea, maybe a one-time email to responsibles/editors that we now display this information, they can use the preview to see this and this might be a good time to check whether the list of delegates is reasonably short, and they shouldn't be too liberal in giving viewing rights per course. But maybe this isn't actually a problem in practice... you're right. when writing the issue i felt it will not improve the situation. so before anyone implements this we need to discuss it in more detail. for the record i still think this is a good thing since it adds transparency and users can make more informed decisions. however, if the result in practice is less open feedback, we might need other/additional solutions. in the end this feature should help students to understand what's happening with their answers. they should know who will possibly work with the results and where the feedback will end up. one option would be to just write the number of delegates instead of their names to make the list less intimidating. this might be a good idea anyway because we might not want to leak the list of delegates of all the contributors to all the participants. with this, the average tooltip for a contributor (assuming they have no delegates) could be something like this: "Besides the evaluated person themselves, this comment can be seen by Prof. Dr. John Smith, their 2 delegates, and the student representatives." I think that's okay. @janno42 Thanks for pointing me to this ticket! This issue seems like an important and valuable improvement to the system and its transparency to me. For example, I intuitively assumed that the current field "Kommentare zur Person / Personal Feedback" would be viewable only by the person in question and not by responsible persons (+delegates) .
2018-09-14T16:28:01
e-valuation/EvaP
1,262
e-valuation__EvaP-1262
[ "1260" ]
3408e297a19ae2551a8521ffc02668a75121133b
diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -72,7 +72,8 @@ def get_courses_with_prefetched_data(semester): voter_counts = semester.courses.annotate(num_voters=Count("voters")).values_list("num_voters", flat=True) for course, participant_count, voter_count in zip(courses, participant_counts, voter_counts): - course.general_contribution = course.general_contribution[0] + if not course.is_single_result: + course.general_contribution = course.general_contribution[0] course.responsible_contributors = [contribution.contributor for contribution in course.responsible_contributions] if course._participant_count is None: course.num_participants = participant_count
diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -7,6 +7,7 @@ from django.core import mail from django.urls import reverse from django.test import override_settings +from django.test.testcases import TestCase from model_mommy import mommy import xlrd @@ -16,6 +17,7 @@ from evap.evaluation.tests.tools import FuzzyInt, WebTest, ViewTest from evap.rewards.models import SemesterActivation, RewardPointGranting from evap.staff.tools import generate_import_filename +from evap.staff.views import get_courses_with_prefetched_data def helper_delete_all_import_files(user_id): @@ -376,6 +378,12 @@ def test_access_to_semester_with_archived_results(self): self.app.get('/staff/semester/2', user='manager', status=200) +class TestGetCoursesWithPrefetchedData(TestCase): + def test_get_courses_with_prefetched_data(self): + course = mommy.make(Course, is_single_result=True) + get_courses_with_prefetched_data(course.semester) + + class TestSemesterCreateView(ViewTest): url = '/staff/semester/create' test_users = ['manager']
SingleResults don't have general contributions 95f66a720 removed generals contributions for single results. Now e.g. `/staff/semester/21` can't be rendered anymore, because `get_courses_with_prefetched_data` in https://github.com/fsr-itse/EvaP/blob/master/evap/staff/views.py#L75 wants to access the general contribution. That shouldn't be done for single results and we need tests to make sure that this and other pages with course information don't throw errors.
2018-10-01T18:13:57
e-valuation/EvaP
1,263
e-valuation__EvaP-1263
[ "1245" ]
e289060df3375d9471192e40d1a3ba4459488f21
diff --git a/evap/evaluation/migrations/0002_initial_data.py b/evap/evaluation/migrations/0002_initial_data.py --- a/evap/evaluation/migrations/0002_initial_data.py +++ b/evap/evaluation/migrations/0002_initial_data.py @@ -1,5 +1,4 @@ from django.db import migrations -from django.contrib.auth.models import Group def insert_emailtemplates(apps, _schema_editor): @@ -16,6 +15,7 @@ def insert_emailtemplates(apps, _schema_editor): if not EmailTemplate.objects.filter(name=name).exists(): EmailTemplate.objects.create(name=name, subject=subject, body="") + Group = apps.get_model("auth", "Group") Group.objects.create(name="Staff") diff --git a/evap/evaluation/migrations/0055_reviewer_group.py b/evap/evaluation/migrations/0055_reviewer_group.py --- a/evap/evaluation/migrations/0055_reviewer_group.py +++ b/evap/evaluation/migrations/0055_reviewer_group.py @@ -1,12 +1,13 @@ -from django.contrib.auth.models import Group from django.db import migrations -def add_group(_apps, _schema_editor): +def add_group(apps, _schema_editor): + Group = apps.get_model("auth", "Group") Group.objects.create(name="Reviewer") -def delete_group(_apps, _schema_editor): +def delete_group(apps, _schema_editor): + Group = apps.get_model("auth", "Group") Group.objects.get(name="Reviewer").delete() diff --git a/evap/grades/migrations/0002_initial_data.py b/evap/grades/migrations/0002_initial_data.py --- a/evap/grades/migrations/0002_initial_data.py +++ b/evap/grades/migrations/0002_initial_data.py @@ -1,8 +1,8 @@ from django.db import migrations -from django.contrib.auth.models import Group -def add_group(_apps, _schema_editor): +def add_group(apps, _schema_editor): + Group = apps.get_model("auth", "Group") Group.objects.create(name="Grade publisher")
diff --git a/evap/contributor/tests/test_views.py b/evap/contributor/tests/test_views.py --- a/evap/contributor/tests/test_views.py +++ b/evap/contributor/tests/test_views.py @@ -1,9 +1,10 @@ from django.core import mail +from django_webtest import WebTest from model_mommy import mommy from evap.evaluation.models import Course, UserProfile, Contribution -from evap.evaluation.tests.tools import WebTest, ViewTest, create_course_with_responsible_and_editor +from evap.evaluation.tests.tools import WebTestWith200Check, create_course_with_responsible_and_editor TESTING_COURSE_ID = 2 @@ -55,7 +56,7 @@ def test_direct_delegation_request_with_existing_contribution(self): self.assertEqual(len(mail.outbox), 1) -class TestContributorView(ViewTest): +class TestContributorView(WebTestWith200Check): url = '/contributor/' test_users = ['editor', 'responsible'] @@ -64,9 +65,8 @@ def setUpTestData(cls): create_course_with_responsible_and_editor() -class TestContributorSettingsView(ViewTest): +class TestContributorSettingsView(WebTest): url = '/contributor/settings' - test_users = ['editor', 'responsible'] @classmethod def setUpTestData(cls): @@ -82,7 +82,7 @@ def test_save_settings(self): self.assertEqual(list(UserProfile.objects.get(username='responsible').delegates.all()), [user]) -class TestContributorCourseView(ViewTest): +class TestContributorCourseView(WebTestWith200Check): url = '/contributor/course/%s' % TESTING_COURSE_ID test_users = ['editor', 'responsible'] @@ -107,13 +107,13 @@ def test_information_message(self): self.assertNotContains(page, "Please review the course's details below, add all contributors and select suitable questionnaires. Once everything is okay, please approve the course on the bottom of the page.") -class TestContributorCoursePreviewView(ViewTest): +class TestContributorCoursePreviewView(WebTestWith200Check): url = '/contributor/course/%s/preview' % TESTING_COURSE_ID test_users = ['editor', 'responsible'] @classmethod def setUpTestData(cls): - cls.course = create_course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) + create_course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) def setUp(self): self.course = Course.objects.get(pk=TESTING_COURSE_ID) @@ -124,13 +124,12 @@ def test_wrong_state(self): self.app.get(self.url, user='responsible', status=403) -class TestContributorCourseEditView(ViewTest): +class TestContributorCourseEditView(WebTest): url = '/contributor/course/%s/edit' % TESTING_COURSE_ID - test_users = ['editor', 'responsible'] @classmethod def setUpTestData(cls): - cls.course = create_course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) + create_course_with_responsible_and_editor(course_id=TESTING_COURSE_ID) def setUp(self): self.course = Course.objects.get(pk=TESTING_COURSE_ID) diff --git a/evap/evaluation/tests/test_models.py b/evap/evaluation/tests/test_models.py --- a/evap/evaluation/tests/test_models.py +++ b/evap/evaluation/tests/test_models.py @@ -5,11 +5,12 @@ from django.core.cache import caches from django.core import mail +from django_webtest import WebTest from model_mommy import mommy from evap.evaluation.models import (Contribution, Course, CourseType, EmailTemplate, NotArchiveable, Question, Questionnaire, RatingAnswerCounter, Semester, TextAnswer, UserProfile) -from evap.evaluation.tests.tools import WebTest +from evap.evaluation.tests.tools import let_user_vote_for_course from evap.results.tools import calculate_average_distribution from evap.results.views import get_course_result_template_fragment_cache_key @@ -213,7 +214,7 @@ def test_adding_second_voter_sets_can_publish_text_results_to_true(self): self.assertFalse(course.can_publish_text_results) - self.let_user_vote_for_course(student2, course) + let_user_vote_for_course(self.app, student2, course) course = Course.objects.get(pk=course.pk) self.assertTrue(course.can_publish_text_results) diff --git a/evap/evaluation/tests/test_views.py b/evap/evaluation/tests/test_views.py --- a/evap/evaluation/tests/test_views.py +++ b/evap/evaluation/tests/test_views.py @@ -1,20 +1,20 @@ from django.core import mail from django.contrib.auth.hashers import make_password +from django_webtest import WebTest from model_mommy import mommy from evap.evaluation.models import UserProfile -from evap.evaluation.tests.tools import ViewTest +from evap.evaluation.tests.tools import WebTestWith200Check -class TestIndexView(ViewTest): +class TestIndexView(WebTest): url = '/' - test_users = [''] def test_passworduser_login(self): """ Tests whether a user can login with an incorrect and a correct password. """ mommy.make(UserProfile, username='password.user', password=make_password('evap')) - response = self.app.get("/") + response = self.app.get(self.url) password_form = response.forms[0] password_form['username'] = 'password.user' password_form['password'] = 'asd' @@ -27,7 +27,7 @@ def test_send_new_loginkey(self): shows the expected success message and sends only one email to the requesting user without people in cc even if the user has delegates and cc users. """ mommy.make(UserProfile, email='[email protected]') - response = self.app.get("/") + response = self.app.get(self.url) email_form = response.forms[1] email_form['email'] = "[email protected]" self.assertIn("No user with this email address was found", email_form.submit()) @@ -39,17 +39,17 @@ def test_send_new_loginkey(self): self.assertEqual(len(mail.outbox[0].cc), 0) -class TestLegalNoticeView(ViewTest): +class TestLegalNoticeView(WebTestWith200Check): url = '/legal_notice' test_users = [''] -class TestFAQView(ViewTest): +class TestFAQView(WebTestWith200Check): url = '/faq' test_users = [''] -class TestContactEmail(ViewTest): +class TestContactEmail(WebTest): csrf_checks = False def test_sends_mail(self): @@ -58,7 +58,7 @@ def test_sends_mail(self): self.assertEqual(len(mail.outbox), 1) -class TestChangeLanguageView(ViewTest): +class TestChangeLanguageView(WebTest): url = '/set_lang' csrf_checks = False diff --git a/evap/evaluation/tests/tools.py b/evap/evaluation/tests/tools.py --- a/evap/evaluation/tests/tools.py +++ b/evap/evaluation/tests/tools.py @@ -1,6 +1,6 @@ from django.http.request import QueryDict -from django_webtest import WebTest as DjangoWebTest +from django_webtest import WebTest from model_mommy import mommy from evap.evaluation.models import Contribution, Course, UserProfile, Questionnaire, Degree @@ -29,22 +29,21 @@ def __repr__(self): return "[%d..%d]" % (self.lowest, self.highest) -class WebTest(DjangoWebTest): - def let_user_vote_for_course(self, user, course): - url = '/student/vote/{}'.format(course.id) - page = self.app.get(url, user=user, status=200) - form = page.forms["student-vote-form"] - for contribution in course.contributions.all().prefetch_related("questionnaires", "questionnaires__questions"): - for questionnaire in contribution.questionnaires.all(): - for question in questionnaire.questions.all(): - if question.type == "T": - form[question_id(contribution, questionnaire, question)] = "Lorem ispum" - elif question.type in ["L", "G", "P", "N"]: - form[question_id(contribution, questionnaire, question)] = 1 - form.submit() +def let_user_vote_for_course(app, user, course): + url = '/student/vote/{}'.format(course.id) + page = app.get(url, user=user, status=200) + form = page.forms["student-vote-form"] + for contribution in course.contributions.all().prefetch_related("questionnaires", "questionnaires__questions"): + for questionnaire in contribution.questionnaires.all(): + for question in questionnaire.questions.all(): + if question.type == "T": + form[question_id(contribution, questionnaire, question)] = "Lorem ispum" + elif question.type in ["L", "G", "P", "N"]: + form[question_id(contribution, questionnaire, question)] = 1 + form.submit() -class ViewTest(WebTest): +class WebTestWith200Check(WebTest): url = "/" test_users = [] diff --git a/evap/grades/tests.py b/evap/grades/tests.py --- a/evap/grades/tests.py +++ b/evap/grades/tests.py @@ -3,13 +3,13 @@ from django.core import mail from django.contrib.auth.models import Group +from django_webtest import WebTest from model_mommy import mommy from evap.evaluation.models import UserProfile, Course, Questionnaire, Contribution, Semester -from evap.evaluation.tests.tools import ViewTest, WebTest -class GradeUploadTests(WebTest): +class GradeUploadTest(WebTest): csrf_checks = False @classmethod @@ -167,9 +167,8 @@ def test_grade_document_download_after_archiving(self): self.app.get(url, user="student", status=404) # grades should not be downloadable anymore -class GradeDocumentIndexTest(ViewTest): +class GradeDocumentIndexTest(WebTest): url = '/grades/' - test_users = ['grade_publisher'] @classmethod def setUpTestData(cls): @@ -183,34 +182,37 @@ def test_visible_semesters(self): self.assertNotIn(self.archived_semester.name, page) -class GradeDocumentSemesterViewTest(ViewTest): +class GradeSemesterViewTest(WebTest): url = '/grades/semester/1' - test_users = ['grade_publisher'] @classmethod def setUpTestData(cls): mommy.make(UserProfile, username="grade_publisher", groups=[Group.objects.get(name="Grade publisher")]) - semester = mommy.make(Semester, pk=1, grade_documents_are_deleted=False) - mommy.make(Semester, pk=2, grade_documents_are_deleted=True) - cls.semester_course = mommy.make(Course, semester=semester, state="prepared") - def test_semester_pages(self): + def test_does_not_crash(self): + semester = mommy.make(Semester, pk=1, grade_documents_are_deleted=False) + semester_course = mommy.make(Course, semester=semester, state="prepared") page = self.app.get(self.url, user="grade_publisher", status=200) - self.assertIn(self.semester_course.name, page) - self.app.get('/grades/semester/2', user="grade_publisher", status=403) + self.assertIn(semester_course.name, page) + def test_403_on_deleted(self): + mommy.make(Semester, pk=1, grade_documents_are_deleted=True) + self.app.get('/grades/semester/1', user="grade_publisher", status=403) -class GradeDocumentCourseViewTest(ViewTest): + +class GradeCourseViewTest(WebTest): url = '/grades/semester/1/course/1' - test_users = ['grade_publisher'] @classmethod def setUpTestData(cls): mommy.make(UserProfile, username="grade_publisher", groups=[Group.objects.get(name="Grade publisher")]) + + def test_does_not_crash(self): semester = mommy.make(Semester, pk=1, grade_documents_are_deleted=False) - archived_semester = mommy.make(Semester, pk=2, grade_documents_are_deleted=True) mommy.make(Course, pk=1, semester=semester, state="prepared") - mommy.make(Course, pk=2, semester=archived_semester, state="prepared") + self.app.get('/grades/semester/1/course/1', user="grade_publisher", status=200) - def test_course_page(self): - self.app.get('/grades/semester/2/course/2', user="grade_publisher", status=403) + def test_403_on_archived_semester(self): + archived_semester = mommy.make(Semester, pk=1, grade_documents_are_deleted=True) + mommy.make(Course, pk=1, semester=archived_semester, state="prepared") + self.app.get('/grades/semester/1/course/1', user="grade_publisher", status=403) diff --git a/evap/results/tests/test_views.py b/evap/results/tests/test_views.py --- a/evap/results/tests/test_views.py +++ b/evap/results/tests/test_views.py @@ -2,17 +2,19 @@ from django.contrib.auth.models import Group from django.test.testcases import TestCase + +from django_webtest import WebTest from model_mommy import mommy from evap.evaluation.models import Contribution, Course, Degree, Question, Questionnaire, RatingAnswerCounter, \ Semester, UserProfile -from evap.evaluation.tests.tools import ViewTest, WebTest +from evap.evaluation.tests.tools import WebTestWith200Check, let_user_vote_for_course from evap.results.views import get_courses_with_prefetched_data import random -class TestResultsView(ViewTest): +class TestResultsView(WebTestWith200Check): url = '/results/' test_users = ['manager'] @@ -72,7 +74,7 @@ def test_few_answers_course_show_warning(self): self.assertIn("Only a few participants answered these questions.", page) -class TestResultsSemesterCourseDetailView(ViewTest): +class TestResultsSemesterCourseDetailView(WebTestWith200Check): url = '/results/semester/2/course/21' test_users = ['manager', 'contributor', 'responsible'] @@ -199,7 +201,7 @@ def helper_test_answer_visibility_two_voters(self, username): self.assertEqual(number_of_disabled_grade_badges, 1) def test_answer_visibility_one_voter(self): - self.let_user_vote_for_course(self.student1, self.course) + let_user_vote_for_course(self.app, self.student1, self.course) self.course.evaluation_end() self.course.review_finished() self.course.publish() @@ -211,8 +213,8 @@ def test_answer_visibility_one_voter(self): self.helper_test_answer_visibility_one_voter("student", expect_page_not_visible=True) def test_answer_visibility_two_voters(self): - self.let_user_vote_for_course(self.student1, self.course) - self.let_user_vote_for_course(self.student2, self.course) + let_user_vote_for_course(self.app, self.student1, self.course) + let_user_vote_for_course(self.app, self.student2, self.course) self.course.evaluation_end() self.course.review_finished() self.course.publish() diff --git a/evap/rewards/tests/test_views.py b/evap/rewards/tests/test_views.py --- a/evap/rewards/tests/test_views.py +++ b/evap/rewards/tests/test_views.py @@ -3,15 +3,16 @@ from django.contrib.auth.models import Group from django.urls import reverse +from django_webtest import WebTest from model_mommy import mommy from evap.evaluation.models import UserProfile, Course, Semester -from evap.evaluation.tests.tools import ViewTest +from evap.evaluation.tests.tools import WebTestWith200Check from evap.rewards.models import RewardPointRedemptionEvent, RewardPointGranting, RewardPointRedemption, SemesterActivation from evap.rewards.tools import reward_points_of_user, is_semester_activated -class TestEventDeleteView(ViewTest): +class TestEventDeleteView(WebTest): url = reverse('rewards:reward_point_redemption_event_delete') csrf_checks = False @@ -35,9 +36,8 @@ def test_deletion_failure(self): self.assertTrue(RewardPointRedemptionEvent.objects.filter(pk=event.pk).exists()) -class TestIndexView(ViewTest): +class TestIndexView(WebTest): url = reverse('rewards:index') - test_users = ['student'] csrf_checks = False @classmethod @@ -49,7 +49,7 @@ def setUpTestData(cls): mommy.make(RewardPointRedemptionEvent, pk=2, redeem_end_date=date.today() + timedelta(days=1)) def test_redeem_all_points(self): - response = self.app.get(reverse('rewards:index'), user='student') + response = self.app.get(self.url, user='student') form = response.forms['reward-redemption-form'] form.set('points-1', 2) form.set('points-2', 3) @@ -59,7 +59,7 @@ def test_redeem_all_points(self): self.assertEqual(0, reward_points_of_user(self.student)) def test_redeem_too_many_points(self): - response = self.app.get(reverse('rewards:index'), user='student') + response = self.app.get(self.url, user='student') form = response.forms['reward-redemption-form'] form.set('points-1', 3) form.set('points-2', 3) @@ -69,7 +69,7 @@ def test_redeem_too_many_points(self): def test_redeem_points_for_expired_event(self): """ Regression test for #846 """ - response = self.app.get(reverse('rewards:index'), user='student') + response = self.app.get(self.url, user='student') form = response.forms['reward-redemption-form'] form.set('points-2', 1) RewardPointRedemptionEvent.objects.update(redeem_end_date=date.today() - timedelta(days=1)) @@ -78,7 +78,7 @@ def test_redeem_points_for_expired_event(self): self.assertEqual(5, reward_points_of_user(self.student)) -class TestEventsView(ViewTest): +class TestEventsView(WebTestWith200Check): url = reverse('rewards:reward_point_redemption_events') test_users = ['manager'] @@ -89,9 +89,8 @@ def setUpTestData(cls): mommy.make(RewardPointRedemptionEvent, redeem_end_date=date.today() + timedelta(days=1)) -class TestEventCreateView(ViewTest): +class TestEventCreateView(WebTest): url = reverse('rewards:reward_point_redemption_event_create') - test_users = ['manager'] csrf_checks = False @classmethod @@ -113,9 +112,8 @@ def test_create_redemption_event(self): self.assertEqual(RewardPointRedemptionEvent.objects.count(), 1) -class TestEventEditView(ViewTest): +class TestEventEditView(WebTest): url = reverse('rewards:reward_point_redemption_event_edit', args=[1]) - test_users = ['manager'] csrf_checks = False @classmethod @@ -135,7 +133,7 @@ def test_edit_redemption_event(self): self.assertEqual(RewardPointRedemptionEvent.objects.get(pk=self.event.pk).name, 'new name') -class TestExportView(ViewTest): +class TestExportView(WebTestWith200Check): url = '/rewards/reward_point_redemption_event/1/export' test_users = ['manager'] @@ -146,7 +144,7 @@ def setUpTestData(cls): mommy.make(RewardPointRedemption, value=1, event=event) -class TestSemesterActivationView(ViewTest): +class TestSemesterActivationView(WebTest): url = '/rewards/reward_semester_activation/1/' csrf_checks = False diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -8,13 +8,15 @@ from django.urls import reverse from django.test import override_settings from django.test.testcases import TestCase + +from django_webtest import WebTest from model_mommy import mommy import xlrd from evap.evaluation.models import Semester, UserProfile, Course, CourseType, TextAnswer, Contribution, \ Questionnaire, Question, EmailTemplate, Degree, FaqSection, FaqQuestion, \ RatingAnswerCounter -from evap.evaluation.tests.tools import FuzzyInt, WebTest, ViewTest +from evap.evaluation.tests.tools import FuzzyInt, let_user_vote_for_course, WebTestWith200Check from evap.rewards.models import SemesterActivation, RewardPointGranting from evap.staff.tools import generate_import_filename from evap.staff.views import get_courses_with_prefetched_data @@ -27,8 +29,7 @@ def helper_delete_all_import_files(user_id): # Staff - Sample Files View -class TestDownloadSampleXlsView(ViewTest): - test_users = ['manager'] +class TestDownloadSampleXlsView(WebTest): url = '/staff/download_sample_xls/sample.xls' email_placeholder = "institution.com" @@ -53,7 +54,7 @@ def test_sample_file_correctness(self): # Staff - Root View -class TestStaffIndexView(ViewTest): +class TestStaffIndexView(WebTestWith200Check): test_users = ['manager'] url = '/staff/' @@ -63,7 +64,7 @@ def setUpTestData(cls): # Staff - FAQ View -class TestStaffFAQView(ViewTest): +class TestStaffFAQView(WebTestWith200Check): url = '/staff/faq/' test_users = ['manager'] @@ -72,7 +73,7 @@ def setUpTestData(cls): mommy.make(UserProfile, username='manager', groups=[Group.objects.get(name='Manager')]) -class TestStaffFAQEditView(ViewTest): +class TestStaffFAQEditView(WebTestWith200Check): url = '/staff/faq/1' test_users = ['manager'] @@ -84,9 +85,8 @@ def setUpTestData(cls): # Staff - User Views -class TestUserIndexView(ViewTest): +class TestUserIndexView(WebTest): url = '/staff/user/' - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -106,9 +106,8 @@ def test_num_queries_is_constant(self): self.app.get(self.url, user="manager") -class TestUserCreateView(ViewTest): +class TestUserCreateView(WebTest): url = "/staff/user/create" - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -132,9 +131,8 @@ def test_user_is_created(self): (2 / 3, 2), (3 / 3, 3), ]) -class TestUserEditView(ViewTest): +class TestUserEditView(WebTest): url = "/staff/user/3/edit" - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -167,7 +165,7 @@ def test_reward_points_granting_message(self): self.assertIn("The removal of courses has granted the user &quot;{}&quot; 3 reward points for the active semester.".format(student.username), page) -class TestUserMergeSelectionView(ViewTest): +class TestUserMergeSelectionView(WebTestWith200Check): url = "/staff/user/merge" test_users = ['manager'] @@ -177,7 +175,7 @@ def setUpTestData(cls): mommy.make(UserProfile) -class TestUserMergeView(ViewTest): +class TestUserMergeView(WebTestWith200Check): url = "/staff/user/3/merge/4" test_users = ['manager'] @@ -188,9 +186,8 @@ def setUpTestData(cls): mommy.make(UserProfile, pk=4) -class TestUserBulkDeleteView(ViewTest): +class TestUserBulkDeleteView(WebTest): url = '/staff/user/bulk_delete' - test_users = ['manager'] filename = os.path.join(settings.BASE_DIR, 'staff/fixtures/test_user_bulk_delete_file.txt') @classmethod @@ -249,9 +246,8 @@ def test_deletes_users(self): self.assertEqual(UserProfile.objects.exclude_inactive_users().count(), user_count_before - 2) -class TestUserImportView(ViewTest): +class TestUserImportView(WebTest): url = "/staff/user/import" - test_users = ["manager"] filename_valid = os.path.join(settings.BASE_DIR, "staff/fixtures/valid_user_import.xls") filename_invalid = os.path.join(settings.BASE_DIR, "staff/fixtures/invalid_user_import.xls") filename_random = os.path.join(settings.BASE_DIR, "staff/fixtures/random.random") @@ -345,9 +341,8 @@ def test_invalid_import_operation(self): # Staff - Semester Views -class TestSemesterView(ViewTest): +class TestSemesterView(WebTest): url = '/staff/semester/1' - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -384,9 +379,8 @@ def test_get_courses_with_prefetched_data(self): get_courses_with_prefetched_data(course.semester) -class TestSemesterCreateView(ViewTest): +class TestSemesterCreateView(WebTest): url = '/staff/semester/create' - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -409,9 +403,8 @@ def test_create(self): self.assertEqual(Semester.objects.filter(name_de=name_de, name_en=name_en, short_name_de=short_name_de, short_name_en=short_name_en).count(), 1) -class TestSemesterEditView(ViewTest): +class TestSemesterEditView(WebTest): url = '/staff/semester/1/edit' - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -435,7 +428,7 @@ def test_name_change(self): self.assertEqual(self.semester.name_en, new_name_en) -class TestSemesterDeleteView(ViewTest): +class TestSemesterDeleteView(WebTest): url = '/staff/semester/delete' csrf_checks = False @@ -459,9 +452,8 @@ def test_success(self): self.assertFalse(Semester.objects.filter(pk=semester.pk).exists()) -class TestSemesterAssignView(ViewTest): +class TestSemesterAssignView(WebTest): url = '/staff/semester/1/assign' - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -489,7 +481,7 @@ def test_assign_questionnaires(self): self.assertEqual(course.general_contribution.questionnaires.get(), self.questionnaire) -class TestSemesterTodoView(ViewTest): +class TestSemesterTodoView(WebTestWith200Check): url = '/staff/semester/1/todo' test_users = ['manager'] @@ -508,9 +500,8 @@ def test_todo(self): self.assertContains(response, 'name_to_find') -class TestSendReminderView(ViewTest): +class TestSendReminderView(WebTest): url = '/staff/semester/1/responsible/3/send_reminder' - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -531,9 +522,8 @@ def test_form(self): self.assertIn("uiae", mail.outbox[0].body) -class TestSemesterImportView(ViewTest): +class TestSemesterImportView(WebTest): url = "/staff/semester/1/import" - test_users = ["manager"] filename_valid = os.path.join(settings.BASE_DIR, "staff/fixtures/test_enrollment_data.xls") filename_invalid = os.path.join(settings.BASE_DIR, "staff/fixtures/invalid_enrollment_data.xls") filename_random = os.path.join(settings.BASE_DIR, "staff/fixtures/random.random") @@ -660,9 +650,8 @@ def test_missing_evaluation_period(self): self.assertContains(page, 'Import previously uploaded file') -class TestSemesterExportView(ViewTest): +class TestSemesterExportView(WebTest): url = '/staff/semester/1/export' - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -686,7 +675,7 @@ def test_view_downloads_excel_file(self): 'Evaluation {0}\n\n{1}'.format(self.semester.name, ", ".join([self.course_type.name]))) -class TestSemesterRawDataExportView(ViewTest): +class TestSemesterRawDataExportView(WebTestWith200Check): url = '/staff/semester/1/raw_export' test_users = ['manager'] @@ -698,9 +687,9 @@ def setUpTestData(cls): def test_view_downloads_csv_file(self): student_user = mommy.make(UserProfile, username='student') - course1 = mommy.make(Course, type=self.course_type, semester=self.semester, participants=[student_user], + mommy.make(Course, type=self.course_type, semester=self.semester, participants=[student_user], voters=[student_user], name_de="1", name_en="Course 1") - course2 = mommy.make(Course, type=self.course_type, semester=self.semester, participants=[student_user], + mommy.make(Course, type=self.course_type, semester=self.semester, participants=[student_user], name_de="2", name_en="Course 2") response = self.app.get(self.url, user='manager') @@ -723,9 +712,8 @@ def test_single_result(self): self.assertEqual(response.content, expected_content.encode("utf-8")) -class TestSemesterParticipationDataExportView(ViewTest): +class TestSemesterParticipationDataExportView(WebTest): url = '/staff/semester/1/participation_export' - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -753,7 +741,7 @@ def test_view_downloads_csv_file(self): self.assertEqual(response.content, expected_content.encode("utf-8")) -class TestCourseOperationView(ViewTest): +class TestCourseOperationView(WebTest): url = '/staff/semester/1/courseoperation' @classmethod @@ -827,9 +815,8 @@ def test_operation_prepare(self): self.assertEqual(course.state, 'prepared') -class TestSingleResultCreateView(ViewTest): +class TestSingleResultCreateView(WebTest): url = '/staff/semester/1/singleresult/create' - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -862,9 +849,8 @@ def test_single_result_create(self): # Staff - Semester - Course Views -class TestCourseCreateView(ViewTest): +class TestCourseCreateView(WebTest): url = '/staff/semester/1/course/create' - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -878,7 +864,7 @@ def test_course_create(self): """ Tests the course creation view with one valid and one invalid input dataset. """ - response = self.app.get("/staff/semester/1/course/create", user="manager", status=200) + response = self.app.get(self.url, user="manager", status=200) form = response.forms["course-form"] form["name_de"] = "lfo9e7bmxp1xi" form["name_en"] = "asdf" @@ -913,9 +899,8 @@ def test_course_create(self): (2 / 3, 2), (3 / 3, 3), ]) -class TestCourseEditView(ViewTest): +class TestCourseEditView(WebTest): url = '/staff/semester/1/course/1/edit' - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -1054,7 +1039,7 @@ def test_last_modified_user(self): self.assertEqual(self.course.vote_end_date, old_vote_end_date) -class TestSingleResultEditView(ViewTest): +class TestSingleResultEditView(WebTestWith200Check): url = '/staff/semester/1/course/1/edit' test_users = ['manager'] @@ -1076,7 +1061,7 @@ def setUpTestData(cls): mommy.make(RatingAnswerCounter, question=question, contribution=contribution, answer=5, count=30) -class TestCoursePreviewView(ViewTest): +class TestCoursePreviewView(WebTestWith200Check): url = '/staff/semester/1/course/1/preview' test_users = ['manager'] @@ -1088,9 +1073,8 @@ def setUpTestData(cls): course.general_contribution.questionnaires.set([mommy.make(Questionnaire)]) -class TestCourseImportPersonsView(ViewTest): +class TestCourseImportPersonsView(WebTest): url = "/staff/semester/1/course/1/person_import" - test_users = ["manager"] filename_valid = os.path.join(settings.BASE_DIR, "staff/fixtures/valid_user_import.xls") filename_invalid = os.path.join(settings.BASE_DIR, "staff/fixtures/invalid_user_import.xls") filename_random = os.path.join(settings.BASE_DIR, "staff/fixtures/random.random") @@ -1279,9 +1263,8 @@ def test_invalid_participant_import_operation(self): self.assertEqual(reply.status_code, 400) -class TestCourseEmailView(ViewTest): +class TestCourseEmailView(WebTest): url = '/staff/semester/1/course/1/email' - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -1302,7 +1285,7 @@ def test_emails_are_sent(self): self.assertEqual(len(mail.outbox), 2) -class TestCourseCommentView(ViewTest): +class TestCourseCommentView(WebTest): url = '/staff/semester/1/course/1/comments' @classmethod @@ -1326,23 +1309,23 @@ def test_comments_showing_up(self): self.app.get(self.url, user='manager', status=403) # add additional voter - self.let_user_vote_for_course(self.student2, self.course) + let_user_vote_for_course(self.app, self.student2, self.course) # now it should work self.app.get(self.url, user='manager', status=200) def test_comments_quick_view(self): - self.let_user_vote_for_course(self.student2, self.course) + let_user_vote_for_course(self.app, self.student2, self.course) page = self.app.get(self.url, user='manager', status=200) self.assertContains(page, self.answer) def test_comments_full_view(self): - self.let_user_vote_for_course(self.student2, self.course) + let_user_vote_for_course(self.app, self.student2, self.course) page = self.app.get(self.url + '?view=full', user='manager', status=200) self.assertContains(page, self.answer) -class TestCourseCommentEditView(ViewTest): +class TestCourseCommentEditView(WebTest): url = '/staff/semester/1/course/1/comment/00000000-0000-0000-0000-000000000001/edit' @classmethod @@ -1365,7 +1348,7 @@ def test_comments_showing_up(self): self.app.get(self.url, user='manager', status=403) # add additional voter - self.let_user_vote_for_course(self.student2, self.course) + let_user_vote_for_course(self.app, self.student2, self.course) # now it should work response = self.app.get(self.url, user='manager') @@ -1380,9 +1363,8 @@ def test_comments_showing_up(self): # Staff Questionnaire Views -class TestQuestionnaireNewVersionView(ViewTest): +class TestQuestionnaireNewVersionView(WebTest): url = '/staff/questionnaire/2/new_version' - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -1420,9 +1402,8 @@ def test_no_second_update(self): self.assertEqual(page.location, '/staff/questionnaire/') -class TestQuestionnaireCreateView(ViewTest): +class TestQuestionnaireCreateView(WebTest): url = "/staff/questionnaire/create" - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -1463,9 +1444,8 @@ def test_create_empty_questionnaire(self): self.assertFalse(Questionnaire.objects.filter(name_de="Test Fragebogen", name_en="test questionnaire").exists()) -class TestQuestionnaireIndexView(ViewTest): +class TestQuestionnaireIndexView(WebTest): url = "/staff/questionnaire/" - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -1483,7 +1463,7 @@ def test_ordering(self): self.assertTrue(top_index < contributor_index < bottom_index) -class TestQuestionnaireEditView(ViewTest): +class TestQuestionnaireEditView(WebTestWith200Check): url = '/staff/questionnaire/2/edit' test_users = ['manager'] @@ -1522,7 +1502,7 @@ def test_allowed_type_changes_on_used_questionnaire(self): self.assertEqual(form['type'].options, [('20', True, 'Contributor questionnaire')]) -class TestQuestionnaireViewView(ViewTest): +class TestQuestionnaireViewView(WebTestWith200Check): url = '/staff/questionnaire/2' test_users = ['manager'] @@ -1535,9 +1515,8 @@ def setUpTestData(cls): mommy.make(UserProfile, username="manager", groups=[Group.objects.get(name="Manager")]) -class TestQuestionnaireCopyView(ViewTest): +class TestQuestionnaireCopyView(WebTest): url = '/staff/questionnaire/2/copy' - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -1592,9 +1571,8 @@ def test_questionnaire_deletion(self): # Staff Course Types Views -class TestCourseTypeView(ViewTest): +class TestCourseTypeView(WebTest): url = "/staff/course_types/" - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -1620,9 +1598,8 @@ def test_course_type_form(self): self.assertTrue(CourseType.objects.filter(name_de="Test", name_en="Test").exists()) -class TestCourseTypeMergeSelectionView(ViewTest): +class TestCourseTypeMergeSelectionView(WebTest): url = "/staff/course_types/merge" - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -1639,9 +1616,8 @@ def test_same_course_fails(self): self.assertIn("You must select two different course types", str(response)) -class TestCourseTypeMergeView(ViewTest): +class TestCourseTypeMergeView(WebTest): url = "/staff/course_types/1/merge/2" - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -1692,7 +1668,7 @@ def test_review_actions(self): # in a course with only one voter reviewing should fail self.helper(TextAnswer.NOT_REVIEWED, TextAnswer.PUBLISHED, "publish", expect_errors=True) - self.let_user_vote_for_course(self.student2, self.course) + let_user_vote_for_course(self.app, self.student2, self.course) # now reviewing should work self.helper(TextAnswer.NOT_REVIEWED, TextAnswer.PUBLISHED, "publish") @@ -1721,9 +1697,8 @@ def test_raise_403(self): self.app.get(semester_url + "courseoperation", user="manager", status=403) -class TestTemplateEditView(ViewTest): +class TestTemplateEditView(WebTest): url = "/staff/template/1" - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -1746,9 +1721,8 @@ def test_emailtemplate(self): self.assertEqual(EmailTemplate.objects.get(pk=1).body, "body: mflkd862xmnbo5") -class TestDegreeView(ViewTest): +class TestDegreeView(WebTest): url = "/staff/degrees/" - test_users = ['manager'] @classmethod def setUpTestData(cls): @@ -1769,9 +1743,8 @@ def test_degree_form(self): self.assertTrue(Degree.objects.filter(name_de="Test", name_en="Test").exists()) -class TestSemesterQuestionnaireAssignment(ViewTest): +class TestSemesterQuestionnaireAssignment(WebTest): url = "/staff/semester/1/assign" - test_users = ['manager'] @classmethod def setUpTestData(cls): diff --git a/evap/student/tests/test_views.py b/evap/student/tests/test_views.py --- a/evap/student/tests/test_views.py +++ b/evap/student/tests/test_views.py @@ -1,14 +1,16 @@ from django.test.utils import override_settings from django.urls import reverse + +from django_webtest import WebTest from model_mommy import mommy from evap.evaluation.models import UserProfile, Course, Questionnaire, Question, Contribution, TextAnswer, RatingAnswerCounter -from evap.evaluation.tests.tools import ViewTest +from evap.evaluation.tests.tools import WebTestWith200Check from evap.student.tools import question_id from evap.student.views import SUCCESS_MAGIC_STRING -class TestStudentIndexView(ViewTest): +class TestStudentIndexView(WebTestWith200Check): test_users = ['student'] url = '/student/' @@ -19,7 +21,7 @@ def setUp(self): @override_settings(INSTITUTION_EMAIL_DOMAINS=["example.com"]) -class TestVoteView(ViewTest): +class TestVoteView(WebTest): url = '/student/vote/1' @classmethod
Remove ViewTest where possible Right now we have a `class ViewTest`, for which there is one subclass for each view that we have. For views that we have tested properly, it provides no additional value and I I propose to replace it with the original `WebTest`. Originally I proposed to remove it altogether and copypaste its test to all the test cases that wouldn't have any valuable test otherwise. @janno42 convinced me to leave it there and rename it to `WebTestWith200Check` instead.
2018-10-06T08:38:45
e-valuation/EvaP
1,278
e-valuation__EvaP-1278
[ "1236" ]
15b93a347aaf3bbff46c91b736d930762166d6ac
diff --git a/evap/results/views.py b/evap/results/views.py --- a/evap/results/views.py +++ b/evap/results/views.py @@ -23,6 +23,10 @@ def get_course_result_template_fragment_cache_key(course_id, language, can_user_ def delete_template_cache(course): assert course.state != 'published' + _delete_template_cache_impl(course) + + +def _delete_template_cache_impl(course): caches['results'].delete(get_course_result_template_fragment_cache_key(course.id, 'en', True)) caches['results'].delete(get_course_result_template_fragment_cache_key(course.id, 'en', False)) caches['results'].delete(get_course_result_template_fragment_cache_key(course.id, 'de', True)) @@ -49,6 +53,13 @@ def warm_up_template_cache(courses): translation.activate(current_language) # reset to previously set language to prevent unwanted side effects +def update_template_cache(courses): + for course in courses: + assert course.state == "published" + _delete_template_cache_impl(course) + warm_up_template_cache([course]) + + def get_courses_with_prefetched_data(courses): if isinstance(courses, QuerySet): participant_counts = courses.annotate(num_participants=Count("participants")).values_list("num_participants", flat=True) diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -13,6 +13,7 @@ from evap.evaluation.models import (Contribution, Course, CourseType, Degree, EmailTemplate, FaqQuestion, FaqSection, Question, Questionnaire, RatingAnswerCounter, Semester, TextAnswer, UserProfile) from evap.evaluation.tools import date_to_datetime +from evap.results.views import update_template_cache logger = logging.getLogger(__name__) @@ -84,6 +85,12 @@ class Meta: model = Semester fields = ("name_de", "name_en", "short_name_de", "short_name_en") + def save(self, *args, **kwargs): + semester = super().save(*args, **kwargs) + if 'short_name_en' in self.changed_data or 'short_name_de' in self.changed_data: + update_template_cache(semester.courses.filter(state="published")) + return semester + class DegreeForm(forms.ModelForm): def __init__(self, *args, **kwargs): @@ -100,6 +107,12 @@ def clean(self): if self.cleaned_data.get('DELETE') and not self.instance.can_manager_delete: raise SuspiciousOperation("Deleting degree not allowed") + def save(self, *args, **kwargs): + degree = super().save(*args, **kwargs) + if "name_en" in self.changed_data or "name_de" in self.changed_data: + update_template_cache(degree.courses.filter(state="published")) + return degree + class CourseTypeForm(forms.ModelForm): def __init__(self, *args, **kwargs): @@ -116,6 +129,12 @@ def clean(self): if self.cleaned_data.get('DELETE') and not self.instance.can_manager_delete: raise SuspiciousOperation("Deleting course type not allowed") + def save(self, *args, **kwargs): + course_type = super().save(*args, **kwargs) + if "name_en" in self.changed_data or "name_de" in self.changed_data: + update_template_cache(course_type.courses.filter(state="published")) + return course_type + class CourseTypeMergeSelectionForm(forms.Form): main_type = forms.ModelChoiceField(CourseType.objects.all())
Refresh results page cache on changes When these (and possibly a few other) things are changed, the results page cache has to be refreshed: - course name - semester name - degree name - course type name - course's responsible
course name and course's responsible should not be editable for published courses, and the results are only cached for courses that are published. or did i get something wrong? Yes, that's right
2018-10-29T20:13:47
e-valuation/EvaP
1,291
e-valuation__EvaP-1291
[ "1244" ]
05c1f1f671724563bff4a5d9f9ddcad4fa3b79a0
diff --git a/evap/evaluation/migrations/0062_replace_textanswer_id_with_uuid.py b/evap/evaluation/migrations/0062_replace_textanswer_id_with_uuid.py --- a/evap/evaluation/migrations/0062_replace_textanswer_id_with_uuid.py +++ b/evap/evaluation/migrations/0062_replace_textanswer_id_with_uuid.py @@ -33,13 +33,12 @@ class Migration(migrations.Migration): name='uuid', field=models.UUIDField(primary_key=False, default=uuid.uuid4, serialize=False, editable=False), ), - # rename the old id field before deleting it at the end of the - # migration for compatibility with the sqlite driver - migrations.RenameField( - model_name='textanswer', - old_name='id', - new_name='old_id' - ), + # this causes trouble with sqlite. We have two open bug reports with django for this, see + # https://code.djangoproject.com/ticket/29790 and https://code.djangoproject.com/ticket/28541 + # We can not get this to work with sqlite and postgres right now and we want django2.1, we only + # support postgres here. For sqlite, you need to rename the field here and move the RemoveField to + # the end. + migrations.RemoveField(model_name='textanswer', name='id'), migrations.RenameField( model_name='textanswer', old_name='uuid', @@ -54,5 +53,4 @@ class Migration(migrations.Migration): name='textanswer', options={'ordering': ['id'], 'verbose_name': 'text answer', 'verbose_name_plural': 'text answers'}, ), - migrations.RemoveField(model_name='textanswer', name='old_id'), ]
Django 2.1 upgrade https://docs.djangoproject.com/en/2.1/releases/2.1/ There is a guide for upgrading: https://docs.djangoproject.com/en/2.1/howto/upgrade-version/ Basically * Read the release notes * update dependencies * run tests with `python -Wa` and solve deprecation warnings * put the new django into the requirements * run tests, fix failures if any * run tests with `python -Wa` and solve deprecation warnings again * if there was any new feature in the release notes that might help us, use it also, we need to check the installed python version on production, django 2.1 supports python 3.5 and newer.
production is currently running python 3.5, so that's fine.
2018-12-10T19:54:35
e-valuation/EvaP
1,295
e-valuation__EvaP-1295
[ "1289" ]
b728475c1f94d78d2008b6fb952bb3c61694aebc
diff --git a/evap/staff/importers.py b/evap/staff/importers.py --- a/evap/staff/importers.py +++ b/evap/staff/importers.py @@ -218,9 +218,9 @@ def _create_user_data_mismatch_warning(user, user_data, test_run): msg = _("The existing user would be overwritten with the following data:") else: msg = _("The existing user was overwritten with the following data:") - return (mark_safe(msg + - "<br> - " + ExcelImporter._create_user_string(user) + _(" (existing)") + - "<br> - " + ExcelImporter._create_user_string(user_data) + _(" (new)"))) + return (mark_safe(msg + + "<br> - " + ExcelImporter._create_user_string(user) + _(" (existing)") + + "<br> - " + ExcelImporter._create_user_string(user_data) + _(" (new)"))) @staticmethod def _create_user_inactive_warning(user, test_run): @@ -261,7 +261,9 @@ def check_user_data_sanity(self, test_run): class EnrollmentImporter(ExcelImporter): - W_MANY = 'too_many_enrollments' # extension of ExcelImporter.warnings keys + # extension of ExcelImporter.warnings keys + W_DEGREE = 'degree' + W_MANY = 'too_many_enrollments' def __init__(self): super().__init__() @@ -285,7 +287,18 @@ def process_evaluation(self, evaluation_data, sheet, row): self.evaluations[evaluation_id] = evaluation_data self.names_de.add(evaluation_data.name_de) else: - if not evaluation_data == self.evaluations[evaluation_id]: + if (set(evaluation_data.degree_names) != set(self.evaluations[evaluation_id].degree_names) + and evaluation_data.name_de == self.evaluations[evaluation_id].name_de + and evaluation_data.name_en == self.evaluations[evaluation_id].name_en + and evaluation_data.type_name == self.evaluations[evaluation_id].type_name + and evaluation_data.is_graded == self.evaluations[evaluation_id].is_graded + and evaluation_data.responsible_email == self.evaluations[evaluation_id].responsible_email): + self.warnings[self.W_DEGREE].append( + _('Sheet "{}", row {}: The course\'s "{}" degree differs from it\'s degree in a previous row. Both degrees have been added to the course.') + .format(sheet, row + 1, evaluation_data.name_en) + ) + self.evaluations[evaluation_id].degree_names.extend(evaluation_data.degree_names) + elif evaluation_data != self.evaluations[evaluation_id]: self.errors.append(_('Sheet "{}", row {}: The course\'s "{}" data differs from it\'s data in a previous row.').format(sheet, row + 1, evaluation_data.name_en)) def consolidate_enrollment_data(self): @@ -402,13 +415,14 @@ def process(cls, excel_content, semester, vote_start_datetime, vote_end_date, te else: importer.write_enrollments_to_db(semester, vote_start_datetime, vote_end_date) - return importer.success_messages, importer.warnings, importer.errors except Exception as e: importer.errors.append(_("Import finally aborted after exception: '%s'" % e)) if settings.DEBUG: # re-raise error for further introspection if in debug mode raise + return importer.success_messages, importer.warnings, importer.errors + class UserImporter(ExcelImporter): def read_one_user(self, data): @@ -593,5 +607,6 @@ def make_users_active(user_list): ExcelImporter.W_EMAIL: ugettext_lazy("Email mismatches"), ExcelImporter.W_DUPL: ugettext_lazy("Possible duplicates"), ExcelImporter.W_GENERAL: ugettext_lazy("General warnings"), + EnrollmentImporter.W_DEGREE: ugettext_lazy("Degree mismatches"), EnrollmentImporter.W_MANY: ugettext_lazy("Unusually high number of enrollments") }
diff --git a/evap/staff/fixtures/test_enrollment_data_degree_merge.xls b/evap/staff/fixtures/test_enrollment_data_degree_merge.xls new file mode 100644 Binary files /dev/null and b/evap/staff/fixtures/test_enrollment_data_degree_merge.xls differ diff --git a/evap/staff/tests/test_importers.py b/evap/staff/tests/test_importers.py --- a/evap/staff/tests/test_importers.py +++ b/evap/staff/tests/test_importers.py @@ -1,10 +1,11 @@ import os +from collections import defaultdict from datetime import date, datetime from django.test import TestCase, override_settings from django.conf import settings from model_mommy import mommy -from evap.evaluation.models import UserProfile, Semester, Evaluation, Contribution, CourseType +from evap.evaluation.models import Course, Degree, UserProfile, Semester, Evaluation, Contribution, CourseType from evap.staff.importers import UserImporter, EnrollmentImporter, ExcelImporter, PersonImporter @@ -125,43 +126,73 @@ def test_import_makes_inactive_user_active(self): class TestEnrollmentImporter(TestCase): filename_valid = os.path.join(settings.BASE_DIR, "staff/fixtures/test_enrollment_data.xls") + filename_valid_degree_merge = os.path.join(settings.BASE_DIR, "staff/fixtures/test_enrollment_data_degree_merge.xls") filename_invalid = os.path.join(settings.BASE_DIR, "staff/fixtures/invalid_enrollment_data.xls") filename_random = os.path.join(settings.BASE_DIR, "staff/fixtures/random.random") - def test_valid_file_import(self): - semester = mommy.make(Semester) - vote_start_datetime = datetime(2017, 1, 10) - vote_end_date = date(2017, 3, 10) + @classmethod + def setUpTestData(cls): + cls.semester = mommy.make(Semester) + cls.vote_start_datetime = datetime(2017, 1, 10) + cls.vote_end_date = date(2017, 3, 10) mommy.make(CourseType, name_de="Seminar") mommy.make(CourseType, name_de="Vorlesung") + def test_valid_file_import(self): with open(self.filename_valid, "rb") as excel_file: excel_content = excel_file.read() - success_messages, warnings, errors = EnrollmentImporter.process(excel_content, semester, None, None, test_run=True) + success_messages, warnings, errors = EnrollmentImporter.process(excel_content, self.semester, None, None, test_run=True) self.assertIn("The import run will create 23 courses/evaluations and 23 users:", "".join(success_messages)) # check for one random user instead of for all 23 self.assertIn("Ferdi Itaque (ferdi.itaque)", "".join(success_messages)) self.assertEqual(errors, []) self.assertEqual(warnings, {}) - success_messages, warnings, errors = EnrollmentImporter.process(excel_content, semester, vote_start_datetime, vote_end_date, test_run=False) + old_user_count = UserProfile.objects.all().count() + + success_messages, warnings, errors = EnrollmentImporter.process(excel_content, self.semester, self.vote_start_datetime, self.vote_end_date, test_run=False) self.assertIn("Successfully created 23 courses/evaluations, 6 students and 17 contributors:", "".join(success_messages)) self.assertIn("Ferdi Itaque (ferdi.itaque)", "".join(success_messages)) self.assertEqual(errors, []) self.assertEqual(warnings, {}) + self.assertEqual(Evaluation.objects.all().count(), 23) + expected_user_count = old_user_count + 23 + self.assertEqual(UserProfile.objects.all().count(), expected_user_count) + + def test_degrees_are_merged(self): + with open(self.filename_valid_degree_merge, "rb") as excel_file: + excel_content = excel_file.read() + + expected_warnings = defaultdict(list) + expected_warnings[EnrollmentImporter.W_DEGREE].append( + 'Sheet "MA Belegungen", row 3: The course\'s "Build" degree differs from it\'s degree in a previous row. Both degrees have been added to the course.' + ) + + success_messages, warnings, errors = EnrollmentImporter.process(excel_content, self.semester, None, None, test_run=True) + self.assertIn("The import run will create 1 courses/evaluations and 3 users", "".join(success_messages)) + self.assertEqual(errors, []) + self.assertEqual(warnings, expected_warnings) + + success_messages, warnings, errors = EnrollmentImporter.process(excel_content, self.semester, self.vote_start_datetime, self.vote_end_date, test_run=False) + self.assertIn("Successfully created 1 courses/evaluations, 2 students and 1 contributors", "".join(success_messages)) + self.assertEqual(errors, []) + self.assertEqual(warnings, expected_warnings) + + self.assertEqual(Course.objects.all().count(), 1) + self.assertEqual(Evaluation.objects.all().count(), 1) + + course = Course.objects.get(name_de="Bauen") + self.assertSetEqual(set(course.degrees.all()), set(Degree.objects.filter(name_de__in=["Master", "Bachelor"]))) + @override_settings(IMPORTER_MAX_ENROLLMENTS=1) def test_enrollment_importer_high_enrollment_warning(self): - semester = mommy.make(Semester) - vote_start_datetime = datetime(2017, 1, 10) - vote_end_date = datetime(2017, 3, 10) - with open(self.filename_valid, "rb") as excel_file: excel_content = excel_file.read() - __, warnings_test, __ = EnrollmentImporter.process(excel_content, semester, None, None, test_run=True) - __, warnings_no_test, __ = EnrollmentImporter.process(excel_content, semester, vote_start_datetime, vote_end_date, test_run=False) + __, warnings_test, __ = EnrollmentImporter.process(excel_content, self.semester, None, None, test_run=True) + __, warnings_no_test, __ = EnrollmentImporter.process(excel_content, self.semester, self.vote_start_datetime, self.vote_end_date, test_run=False) self.assertEqual(warnings_test, warnings_no_test) warnings_many = warnings_test[EnrollmentImporter.W_MANY] @@ -173,14 +204,13 @@ def test_enrollment_importer_high_enrollment_warning(self): self.assertIn("Warning: User [email protected] has 3 enrollments, which is a lot.", warnings_many) def test_random_file_error(self): - semester = mommy.make(Semester) - original_user_count = UserProfile.objects.count() - with open(self.filename_random, "rb") as excel_file: excel_content = excel_file.read() - __, __, errors_test = EnrollmentImporter.process(excel_content, semester, None, None, test_run=True) - __, __, errors_no_test = EnrollmentImporter.process(excel_content, semester, None, None, test_run=False) + original_user_count = UserProfile.objects.count() + + __, __, errors_test = EnrollmentImporter.process(excel_content, self.semester, None, None, test_run=True) + __, __, errors_no_test = EnrollmentImporter.process(excel_content, self.semester, None, None, test_run=False) self.assertEqual(errors_test, errors_no_test) self.assertIn("Couldn't read the file. Error: Unsupported format, or corrupt file:" @@ -188,16 +218,13 @@ def test_random_file_error(self): self.assertEqual(UserProfile.objects.count(), original_user_count) def test_invalid_file_error(self): - semester = mommy.make(Semester) - mommy.make(CourseType, name_de="Seminar") - mommy.make(CourseType, name_de="Vorlesung") - original_user_count = UserProfile.objects.count() - with open(self.filename_invalid, "rb") as excel_file: excel_content = excel_file.read() - __, __, errors_test = EnrollmentImporter.process(excel_content, semester, None, None, test_run=True) - __, __, errors_no_test = EnrollmentImporter.process(excel_content, semester, None, None, test_run=False) + original_user_count = UserProfile.objects.count() + + __, __, errors_test = EnrollmentImporter.process(excel_content, self.semester, None, None, test_run=True) + __, __, errors_no_test = EnrollmentImporter.process(excel_content, self.semester, None, None, test_run=False) self.assertEqual(errors_test, errors_no_test) self.assertIn('Sheet "MA Belegungen", row 3: The users\'s data (email: [email protected]) differs from it\'s data in a previous row.', errors_test)
Auto merge degrees on import Currently the enrollment importer shows an error message if the same course has a different degree than in a previous line of the enrollment file. Instead, it should display a warning message if a course's data differs only in its degree from the previous lines for this course and add all degrees to the imported course data.
2019-01-07T21:28:23
e-valuation/EvaP
1,307
e-valuation__EvaP-1307
[ "1206" ]
3800688b880b536e0f6ac4dcfb84a7c1842b6f94
diff --git a/evap/staff/importers.py b/evap/staff/importers.py --- a/evap/staff/importers.py +++ b/evap/staff/importers.py @@ -3,7 +3,7 @@ from django.conf import settings from django.db import transaction -from django.utils.translation import ugettext as _ +from django.utils.translation import ugettext_lazy, ugettext as _ from django.utils.safestring import mark_safe from django.core.exceptions import ValidationError @@ -590,10 +590,10 @@ def make_users_active(user_list): # Dictionary to translate internal keys to UI strings. WARNING_DESCRIPTIONS = { - ExcelImporter.W_NAME: _("Name mismatches"), - ExcelImporter.W_INACTIVE: _("Inactive users"), - ExcelImporter.W_EMAIL: _("Email mismatches"), - ExcelImporter.W_DUPL: _("Possible duplicates"), - ExcelImporter.W_GENERAL: _("General warnings"), - EnrollmentImporter.W_MANY: _("Unusually high number of enrollments") + ExcelImporter.W_NAME: ugettext_lazy("Name mismatches"), + ExcelImporter.W_INACTIVE: ugettext_lazy("Inactive users"), + ExcelImporter.W_EMAIL: ugettext_lazy("Email mismatches"), + ExcelImporter.W_DUPL: ugettext_lazy("Possible duplicates"), + ExcelImporter.W_GENERAL: ugettext_lazy("General warnings"), + EnrollmentImporter.W_MANY: ugettext_lazy("Unusually high number of enrollments") }
Translation of import warning card titles missing When importing course data and receiving warnings, they are grouped in cards. The card titles are not translated although they should be.
2019-02-11T20:31:14
e-valuation/EvaP
1,321
e-valuation__EvaP-1321
[ "1314" ]
90f80a79a49babfd64faa46a9f62a5302ef6cd51
diff --git a/evap/evaluation/templatetags/evaluation_filters.py b/evap/evaluation/templatetags/evaluation_filters.py --- a/evap/evaluation/templatetags/evaluation_filters.py +++ b/evap/evaluation/templatetags/evaluation_filters.py @@ -99,6 +99,10 @@ def is_user_editor_or_delegate(evaluation, user): return evaluation.is_user_editor_or_delegate(user) [email protected] +def is_user_responsible_or_contributor_or_delegate(evaluation, user): + return evaluation.is_user_responsible_or_contributor_or_delegate(user) + @register.filter def message_class(level): return {
Evaluation preview button visibility As a teaching assistant, I might be a contributor to a given course and therefore get my own feedback in the main evaluation. If that course also has an exam evaluation, I see that listed on my "own evaluations" page with the option to preview the questionnaire. However, as not being responsible, I miss the access rights to preview the linked page, resulting in an error. I would like to either don't have the preview button (it already knows while rendering that page that I am not a contributor, shown through the corresponding icon next to the exam evaluation title) or to give me the rights to preview the questionnaire.
The preview page should be available for all responsibles and contributors. All of these users should see the button to the preview page. If a user is not responsible for the evaluation's course and is not a contributor in this evaluation there should be no button and the page should not be accessible.
2019-03-11T19:16:55
e-valuation/EvaP
1,325
e-valuation__EvaP-1325
[ "1298", "1298" ]
e181bacc70e07f6d25307b337ca1bef2a35f8077
diff --git a/evap/evaluation/templatetags/evaluation_filters.py b/evap/evaluation/templatetags/evaluation_filters.py --- a/evap/evaluation/templatetags/evaluation_filters.py +++ b/evap/evaluation/templatetags/evaluation_filters.py @@ -75,12 +75,12 @@ def statedescription(state): @register.filter -def can_user_see_results_page(evaluation, user): +def can_results_page_be_seen_by(evaluation, user): return evaluation.can_results_page_be_seen_by(user) [email protected](name='can_user_use_reward_points') -def _can_user_use_reward_points(user): [email protected](name='can_reward_points_be_used_by') +def _can_reward_points_be_used_by(user): return can_reward_points_be_used_by(user) diff --git a/evap/results/tools.py b/evap/results/tools.py --- a/evap/results/tools.py +++ b/evap/results/tools.py @@ -290,7 +290,7 @@ def textanswers_visible_to(contribution): return TextAnswerVisibility(visible_by_contribution=contributors, visible_by_delegation_count=num_delegates) -def can_user_see_textanswer(user, represented_users, textanswer, view): +def can_textanswer_be_seen_by(user, represented_users, textanswer, view): assert textanswer.state in [TextAnswer.PRIVATE, TextAnswer.PUBLISHED] contributor = textanswer.contribution.contributor diff --git a/evap/results/views.py b/evap/results/views.py --- a/evap/results/views.py +++ b/evap/results/views.py @@ -15,7 +15,7 @@ from evap.evaluation.auth import internal_required from evap.results.tools import (collect_results, calculate_average_distribution, distribution_to_grade, get_evaluations_with_course_result_attributes, get_single_result_rating_result, - HeadingResult, TextResult, can_user_see_textanswer) + HeadingResult, TextResult, can_textanswer_be_seen_by) def get_course_result_template_fragment_cache_key(course_id, language): @@ -181,7 +181,7 @@ def evaluation_detail(request, semester_id, evaluation_id): for questionnaire_result in evaluation_result.questionnaire_results: for question_result in questionnaire_result.question_results: if isinstance(question_result, TextResult): - question_result.answers = [answer for answer in question_result.answers if can_user_see_textanswer(view_as_user, represented_users, answer, view)] + question_result.answers = [answer for answer in question_result.answers if can_textanswer_be_seen_by(view_as_user, represented_users, answer, view)] # remove empty TextResults questionnaire_result.question_results = [result for result in questionnaire_result.question_results if not isinstance(result, TextResult) or len(result.answers) > 0]
diff --git a/evap/evaluation/tests/test_models.py b/evap/evaluation/tests/test_models.py --- a/evap/evaluation/tests/test_models.py +++ b/evap/evaluation/tests/test_models.py @@ -179,9 +179,7 @@ def test_single_result_can_be_deleted_only_in_reviewed(self): def test_single_result_can_be_published(self): """ Regression test for #1238 """ responsible = mommy.make(UserProfile) - single_result = mommy.make(Evaluation, - is_single_result=True, _participant_count=5, _voter_count=5 - ) + single_result = mommy.make(Evaluation, is_single_result=True, _participant_count=5, _voter_count=5) contribution = mommy.make(Contribution, evaluation=single_result, contributor=responsible, can_edit=True, textanswer_visibility=Contribution.GENERAL_TEXTANSWERS, questionnaires=[Questionnaire.single_result_questionnaire()] @@ -290,7 +288,7 @@ def test_publishing_and_unpublishing_effect_on_template_cache(self): class TestCourse(TestCase): - def test_can_manager_delete(self): + def test_can_be_deleted_by_manager(self): course = mommy.make(Course) evaluation = mommy.make(Evaluation, course=course) self.assertFalse(course.can_be_deleted_by_manager) @@ -337,7 +335,7 @@ def test_is_student(self): self.assertFalse(user.is_student) - def test_can_manager_delete(self): + def test_can_be_deleted_by_manager(self): user = mommy.make(UserProfile) mommy.make(Evaluation, participants=[user], state="new") self.assertFalse(user.can_be_deleted_by_manager) @@ -442,9 +440,7 @@ def test_evaluation_participations_are_not_archived_if_participant_count_is_set( def test_archiving_participations_doesnt_change_single_results_participant_count(self): responsible = mommy.make(UserProfile) - evaluation = mommy.make(Evaluation, - state="published", is_single_result=True, _participant_count=5, _voter_count=5 - ) + evaluation = mommy.make(Evaluation, state="published", is_single_result=True, _participant_count=5, _voter_count=5) contribution = mommy.make(Contribution, evaluation=evaluation, contributor=responsible, can_edit=True, textanswer_visibility=Contribution.GENERAL_TEXTANSWERS) contribution.questionnaires.add(Questionnaire.single_result_questionnaire()) diff --git a/evap/results/tests/test_tools.py b/evap/results/tests/test_tools.py --- a/evap/results/tests/test_tools.py +++ b/evap/results/tests/test_tools.py @@ -10,7 +10,7 @@ from evap.results.tools import (calculate_average_course_distribution, calculate_average_distribution, collect_results, distribution_to_grade, get_collect_results_cache_key, get_single_result_rating_result, normalized_distribution, RatingResult, textanswers_visible_to, - unipolarized_distribution, can_user_see_textanswer) + unipolarized_distribution, can_textanswer_be_seen_by) from evap.staff.tools import merge_users @@ -359,8 +359,8 @@ def test_correct_contributors_and_delegate_count_are_shown_in_textanswer_visibil for user in UserProfile.objects.all(): represented_users = [user] + list(user.represented_users.all()) for i in range(len(textanswers)): - if can_user_see_textanswer(user, represented_users, textanswers[i], 'full'): - if can_user_see_textanswer(user, [user], textanswers[i], 'full'): + if can_textanswer_be_seen_by(user, represented_users, textanswers[i], 'full'): + if can_textanswer_be_seen_by(user, [user], textanswers[i], 'full'): users_seeing_contribution[i][0].add(user) else: users_seeing_contribution[i][1].add(user) diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -95,7 +95,9 @@ def test_num_queries_is_constant(self): """ num_users = 50 semester = mommy.make(Semester, participations_are_archived=True) - evaluation = mommy.make(Evaluation, state="published", course=mommy.make(Course, semester=semester), _participant_count=1, _voter_count=1) # this triggers more checks in UserProfile.can_manager_delete + + # this triggers more checks in UserProfile.can_be_deleted_by_manager + evaluation = mommy.make(Evaluation, state="published", course=mommy.make(Course, semester=semester), _participant_count=1, _voter_count=1) mommy.make(UserProfile, _quantity=num_users, evaluations_participating_in=[evaluation]) with self.assertNumQueries(FuzzyInt(0, num_users - 1)):
Consistent permission method naming we currently have multiple methods checking permissions which don't use consistent naming. e.g., - `user_can_see_textanswer(user, textanswer, ...)` (which is defined in `results.views` although it should probably rather be located in `results.tools`) - `Course.can_user_see_course(user)` - `Course.can_manager_edit()` these should be refactored to something like - `can_user_see_textanswer(user, textanswer, ...)` - `Course.can_be_seen_by(user)` - `Course.can_be_edited_by_managers()` the methods above are just some examples. all models, views and tools should be checked for similar occurrences. _Originally posted by @karyon in https://github.com/fsr-de/EvaP/pull/1294#discussion_r250199820_ Consistent permission method naming we currently have multiple methods checking permissions which don't use consistent naming. e.g., - `user_can_see_textanswer(user, textanswer, ...)` (which is defined in `results.views` although it should probably rather be located in `results.tools`) - `Course.can_user_see_course(user)` - `Course.can_manager_edit()` these should be refactored to something like - `can_user_see_textanswer(user, textanswer, ...)` - `Course.can_be_seen_by(user)` - `Course.can_be_edited_by_managers()` the methods above are just some examples. all models, views and tools should be checked for similar occurrences. _Originally posted by @karyon in https://github.com/fsr-de/EvaP/pull/1294#discussion_r250199820_
#1319 was missing changes in the html templates, accessing renamed methods. the current release is broken. #1319 was missing changes in the html templates, accessing renamed methods. the current release is broken.
2019-03-25T18:34:36
e-valuation/EvaP
1,329
e-valuation__EvaP-1329
[ "1327" ]
da968445a5220cb293c0daa7a04a2a225d369e5c
diff --git a/evap/evaluation/management/commands/anonymize.py b/evap/evaluation/management/commands/anonymize.py --- a/evap/evaluation/management/commands/anonymize.py +++ b/evap/evaluation/management/commands/anonymize.py @@ -1,14 +1,18 @@ from datetime import date, timedelta import os import itertools +from math import floor import random +from collections import defaultdict from django.conf import settings from django.core.management.base import BaseCommand +from django.core.serializers.base import ProgressBar from django.db import transaction -from evap.evaluation.models import (Contribution, Course, CourseType, Degree, RatingAnswerCounter, Semester, TextAnswer, - UserProfile) +from evap.evaluation.models import (CHOICES, Contribution, Course, CourseType, Degree, + NO_ANSWER, RatingAnswerCounter, Semester, TextAnswer, UserProfile) + class Command(BaseCommand): args = '' @@ -60,8 +64,10 @@ def anonymize_data(self): self.anonymize_users(first_names, last_names) self.anonymize_courses() self.anonymize_evaluations() - self.anonymize_questionnaires(lorem_ipsum) + self.anonymize_questionnaires() + self.anonymize_answers(lorem_ipsum) + self.stdout.write("") self.stdout.write("Done.") except Exception: @@ -95,7 +101,7 @@ def anonymize_users(self, first_names, last_names): # Give users unique temporary names to counter identity errors due to the names being unique if user.username in Command.ignore_usernames: continue - user.username = "<User #" + str(i) + ">" + user.username = f"<User #{i}>" user.save() # Actually replace all the real user data @@ -145,7 +151,7 @@ def anonymize_courses(self): random.shuffle(courses) public_courses = [course for course in courses if not course.is_private] - self.stdout.write("Anonymizing " + str(len(courses)) + " courses of semester " + str(semester) + "...") + self.stdout.write(f"Anonymizing {len(courses)} courses of semester {semester}...") # Shuffle public courses' names in order to decouple them from the results. # Also, assign public courses' names to private ones as their names may be confidential. @@ -155,8 +161,8 @@ def anonymize_courses(self): for i, course in enumerate(courses): # Give courses unique temporary names to counter identity errors due to the names being unique - course.name_de = "<Veranstaltung #" + str(i) + ">" - course.name_en = "<Course #" + str(i) + ">" + course.name_de = f"<Veranstaltung #{i}>" + course.name_en = f"<Course #{i}>" course.save() for i, course in enumerate(courses): @@ -165,16 +171,15 @@ def anonymize_courses(self): course.name_de = name[0] course.name_en = name[1] else: - course.name_de = "Veranstaltung #" + str(i + 1) - course.name_en = "Course #" + str(i + 1) + course.name_de = f"Veranstaltung #{i + 1}" + course.name_en = f"Course #{i + 1}" course.save() def anonymize_evaluations(self): for semester in Semester.objects.all(): evaluations = list(semester.evaluations.all()) random.shuffle(evaluations) - self.stdout.write("Anonymizing " + str(len(evaluations)) + " evaluations of semester " + str(semester) + - "...") + self.stdout.write(f"Anonymizing {len(evaluations)} evaluations of semester {semester}...") self.stdout.write("Shuffling evaluation names...") named_evaluations = (evaluation for evaluation in evaluations if evaluation.name_de and evaluation.name_en) @@ -184,9 +189,9 @@ def anonymize_evaluations(self): for i, evaluation in enumerate(evaluations): # Give evaluations unique temporary names to counter identity errors due to the names being unique if evaluation.name_de: - evaluation.name_de = "<Evaluierung #" + str(i) + ">" + evaluation.name_de = f"<Evaluierung #{i}>" if evaluation.name_en: - evaluation.name_en = "<Evaluation #" + str(i) + ">" + evaluation.name_en = f"<Evaluation #{i}>" evaluation.save() for i, evaluation in enumerate(evaluations): @@ -197,16 +202,15 @@ def anonymize_evaluations(self): evaluation.name_de = name[0] evaluation.name_en = name[1] else: - evaluation.name_de = "Evaluierung #" + str(i + 1) - evaluation.name_en = "Evaluation #" + str(i + 1) + evaluation.name_de = f"Evaluierung #{i + 1}" + evaluation.name_en = f"Evaluation #{i + 1}" evaluation.save() - def anonymize_questionnaires(self, lorem_ipsum): - # questionnaires = Questionnaire.objects.all() - + def anonymize_questionnaires(self): self.stdout.write("REMINDER: You still need to randomize the questionnaire names...") self.stdout.write("REMINDER: You still need to randomize the questionnaire questions...") + def anonymize_answers(self, lorem_ipsum): self.stdout.write("Replacing text answers with fake ones...") for text_answer in TextAnswer.objects.all(): text_answer.answer = self.lorem(text_answer.answer, lorem_ipsum) @@ -214,6 +218,48 @@ def anonymize_questionnaires(self, lorem_ipsum): text_answer.original_answer = self.lorem(text_answer.original_answer, lorem_ipsum) text_answer.save() + self.stdout.write("Shuffling rating answer counter counts...") + + contributions = Contribution.objects.all().prefetch_related("ratinganswercounter_set__question") + try: + self.stdout.ending = "" + progress_bar = ProgressBar(self.stdout, contributions.count()) + for contribution_counter, contribution in enumerate(contributions): + progress_bar.update(contribution_counter + 1) + + counters_per_question = defaultdict(list) + for counter in contribution.ratinganswercounter_set.all(): + counters_per_question[counter.question].append(counter) + + for question, counters in counters_per_question.items(): + original_sum = sum(counter.count for counter in counters) + + missing_values = set(CHOICES[question.type].values).difference(set(c.answer for c in counters)) + missing_values.discard(NO_ANSWER) # don't add NO_ANSWER counter if it didn't exist before + for value in missing_values: + counters.append(RatingAnswerCounter(question=question, contribution=contribution, answer=value, count=0)) + + generated_counts = [random.random() for c in counters] + generated_sum = sum(generated_counts) + generated_counts = [floor(count / generated_sum * original_sum) for count in generated_counts] + + to_add = original_sum - sum(generated_counts) + index = random.randint(0, len(generated_counts) - 1) + generated_counts[index] += to_add + + for counter, generated_count in zip(counters, generated_counts): + assert generated_count >= 0 + counter.count = generated_count + + if counter.count: + counter.save() + elif counter.id: + counter.delete() + + assert original_sum == sum(counter.count for counter in counters) + finally: + self.stdout.ending = "\n" + # Returns a string with the same number of lorem ipsum words as the given text @staticmethod def lorem(text, lorem_ipsum):
diff --git a/evap/evaluation/tests/test_commands.py b/evap/evaluation/tests/test_commands.py --- a/evap/evaluation/tests/test_commands.py +++ b/evap/evaluation/tests/test_commands.py @@ -1,21 +1,26 @@ +from collections import defaultdict from datetime import datetime, date, timedelta from io import StringIO +from itertools import chain, cycle import os +import random from unittest.mock import patch from django.conf import settings from django.core import management, mail +from django.db.models import Sum from django.test import TestCase from django.test.utils import override_settings from model_mommy import mommy -from evap.evaluation.models import Course, Evaluation, EmailTemplate, Semester, UserProfile +from evap.evaluation.models import (CHOICES, Contribution, Course, Evaluation, EmailTemplate, NO_ANSWER, + Question, Questionnaire, RatingAnswerCounter, Semester, UserProfile) class TestAnonymizeCommand(TestCase): - @patch('builtins.input') - def test_anonymize_does_not_crash(self, mock_input): + @classmethod + def setUpTestData(cls): mommy.make(EmailTemplate, name="name", subject="Subject", body="Body.") mommy.make(UserProfile, username="secret.username", @@ -26,38 +31,112 @@ def test_anonymize_does_not_crash(self, mock_input): login_key=1234567890, login_key_valid_until=date.today()) semester1 = mommy.make(Semester, name_de="S1", name_en="S1") - semester2 = mommy.make(Semester, name_de="S2", name_en="S2") - course1 = mommy.make(Course, + mommy.make(Semester, name_de="S2", name_en="S2") + cls.course = mommy.make( + Course, semester=semester1, name_de="Eine private Veranstaltung", name_en="A private course", is_private=True, ) - course2 = mommy.make(Course, + course2 = mommy.make( + Course, semester=semester1, name_de="Veranstaltungsexperimente", name_en="Course experiments", ) - mommy.make(Evaluation, - course=course1, + cls.evaluation = mommy.make( + Evaluation, + course=cls.course, name_de="Wie man Software testet", name_en="Testing your software", ) - mommy.make(Evaluation, - course=course2, - name_de="Einführung in Python", - name_en="Introduction to Python", - ) - mommy.make(Evaluation, + mommy.make( + Evaluation, course=course2, name_de="Die Entstehung von Unicode 😄", name_en="History of Unicode 😄", ) - mock_input.return_value = 'yes' + cls.contributor_questionnaire = mommy.make(Questionnaire, type=Questionnaire.CONTRIBUTOR) + cls.general_questionnaire = mommy.make(Questionnaire, type=Questionnaire.TOP) + + cls.contributor_questions = mommy.make(Question, _quantity=10, + questionnaire=cls.contributor_questionnaire, type=cycle(iter(CHOICES.keys()))) + cls.general_questions = mommy.make(Question, _quantity=10, + questionnaire=cls.contributor_questionnaire, type=cycle(iter(CHOICES.keys()))) + + cls.contributor = mommy.make(UserProfile) + + cls.contribution = mommy.make(Contribution, contributor=cls.contributor, evaluation=cls.evaluation, + questionnaires=[cls.contributor_questionnaire, cls.contributor_questionnaire]) + + cls.general_contribution = cls.evaluation.general_contribution + cls.general_contribution.questionnaires.set([cls.general_questionnaire]) + cls.general_contribution.save() + + def setUp(self): + self.input_patch = patch('builtins.input') + self.input_mock = self.input_patch.start() + self.input_mock.return_value = 'yes' + self.addCleanup(self.input_patch.stop) + + def test_no_empty_rating_answer_counters_left(self): + for question in chain(self.contributor_questions, self.general_questions): + choices = [choice for choice in CHOICES[question.type].values if choice != NO_ANSWER] + for answer in choices: + mommy.make(RatingAnswerCounter, question=question, contribution=self.contribution, count=1, answer=answer) + + old_count = RatingAnswerCounter.objects.count() + + random.seed(0) + management.call_command('anonymize', stdout=StringIO()) + + new_count = RatingAnswerCounter.objects.count() + self.assertLess(new_count, old_count) + + for counter in RatingAnswerCounter.objects.all(): + self.assertGreater(counter.count, 0) + + def test_question_with_no_answers(self): + management.call_command('anonymize', stdout=StringIO()) + self.assertEqual(RatingAnswerCounter.objects.count(), 0) + + def test_answer_count_unchanged(self): + answers_per_question = defaultdict(int) + random.seed(0) + for question in chain(self.contributor_questions, self.general_questions): + choices = [choice for choice in CHOICES[question.type].values if choice != NO_ANSWER] + for answer in choices: + count = random.randint(10, 100) + mommy.make(RatingAnswerCounter, question=question, contribution=self.contribution, count=count, answer=answer) + answers_per_question[question] += count management.call_command('anonymize', stdout=StringIO()) + for question in chain(self.contributor_questions, self.general_questions): + answer_count = RatingAnswerCounter.objects.filter(question=question).aggregate(Sum('count'))["count__sum"] + self.assertEqual(answers_per_question[question], answer_count) + + def test_single_result_anonymization(self): + questionnaire = Questionnaire.single_result_questionnaire() + single_result = mommy.make(Evaluation, is_single_result=True, course=self.course) + single_result.general_contribution.questionnaires.set([questionnaire]) + question = Question.objects.get(questionnaire=questionnaire) + + answer_count_before = 0 + choices = [choice for choice in CHOICES[question.type].values if choice != NO_ANSWER] + random.seed(0) + for answer in choices: + count = random.randint(50, 100) + mommy.make(RatingAnswerCounter, question=question, contribution=single_result.general_contribution, count=count, answer=answer) + answer_count_before += count + + management.call_command('anonymize', stdout=StringIO()) + + self.assertLessEqual(RatingAnswerCounter.objects.count(), len(choices)) + self.assertEqual(RatingAnswerCounter.objects.aggregate(Sum('count'))["count__sum"], answer_count_before) + class TestRunCommand(TestCase): def test_calls_runserver(self):
Anonymization script: scramble evaluation results This is a follow up to #1287. We came up with the idea of scrambling evaluation results as a part of the anonymization. Quote from @janno42: "then @karyon and i discussed that it is better to randomize answers because there might be the following case: users who have access to production might find unpublished courses in the anonymized data and can find results there based on answer distribution of other courses and de-anonymizing contributor's names. this is a very special case and there wouldn't be much data available as a course is only then not published if less than two participants voted for it - but nevertheless there might be data leaked. so we decided that answer counters should be set randomly on anonymization. the answer count per question should (roughly) stay the same during the process and it must be made sure that the answer count never exceeds the number of voters in the course." We had two implementations flying around in that debate: - One summed up the answer count, iterated over the RatingAnswerCounters and then took a random number between 0 and the remaining answers and assigned it to the current counter. This can be found [here](https://github.com/fsr-de/EvaP/pull/1287/commits/2c20342a61409f560aeea93a0d77e2bec9a5ee42#diff-8966c64d41a29b22e8ee43d34675dc33R220) but is biased towards giving higher vote counts to the answer counters we are looking at earlier - The other one was given [here](https://github.com/fsr-de/EvaP/pull/1287#pullrequestreview-218545677). Basically, give every counter a random number between 0 and the count of votes, then divide by a factor so that the vote count matches the earlier result again. In order to keep the count of votes equal, one would have to then distribute the error evenly to the counters. This will give more uniform results but has more clean up to do.
2019-03-29T23:35:11
e-valuation/EvaP
1,344
e-valuation__EvaP-1344
[ "1337" ]
690a1652203b73b8c605ff060d96d0ff8d2f0079
diff --git a/evap/staff/importers.py b/evap/staff/importers.py --- a/evap/staff/importers.py +++ b/evap/staff/importers.py @@ -26,6 +26,9 @@ def __eq__(self, other): return (isinstance(other, self.__class__) and self.__dict__ == other.__dict__) + def __hash__(self): + return hash(tuple(sorted(self.__dict__.items()))) + class UserData(CommonEqualityMixin): """ @@ -122,6 +125,7 @@ def store_in_database(self, vote_start_datetime, vote_end_date, semester): class ExcelImporter(): W_NAME = 'name' W_DUPL = 'duplicate' + W_IGNORED = 'ignored' W_GENERAL = 'general' W_INACTIVE = 'inactive' @@ -151,14 +155,11 @@ def check_column_count(self, expected_column_count): if sheet.ncols != expected_column_count: self.errors.append(_("Wrong number of columns in sheet '{}'. Expected: {}, actual: {}").format(sheet.name, expected_column_count, sheet.ncols)) - def for_each_row_in_excel_file_do(self, parse_row_function): + def for_each_row_in_excel_file_do(self, row_function): for sheet in self.book.sheets(): try: for row in range(self.skip_first_n_rows, sheet.nrows): - line_data = parse_row_function(sheet.row_values(row)) - # store data objects together with the data source location for problem tracking - self.associations[(sheet.name, row)] = line_data - + row_function(sheet.row_values(row), sheet, row) self.success_messages.append(_("Successfully read sheet '%s'.") % sheet.name) except Exception: self.warnings[self.W_GENERAL].append(_("A problem occured while reading sheet {}.").format(sheet.name)) @@ -249,13 +250,11 @@ def __init__(self): self.enrollments = [] self.names_de = set() - @staticmethod - def read_one_enrollment(data): + def read_one_enrollment(self, data, sheet, row): student_data = UserData(first_name=data[2], last_name=data[1], email=data[3], title='', is_responsible=False) responsible_data = UserData(first_name=data[10], last_name=data[9], title=data[8], email=data[11], is_responsible=True) - evaluation_data = EvaluationData(name_de=data[6], name_en=data[7], type_name=data[4], is_graded=data[5], degree_names=data[0], - responsible_email=responsible_data.email) - return (student_data, responsible_data, evaluation_data) + evaluation_data = EvaluationData(name_de=data[6], name_en=data[7], type_name=data[4], is_graded=data[5], degree_names=data[0], responsible_email=responsible_data.email) + self.associations[(sheet.name, row)] = (student_data, responsible_data, evaluation_data) def process_evaluation(self, evaluation_data, sheet, row): evaluation_id = evaluation_data.name_en @@ -397,10 +396,25 @@ def process(cls, excel_content, semester, vote_start_datetime, vote_end_date, te class UserImporter(ExcelImporter): - @staticmethod - def read_one_user(data): + + def __init__(self): + super().__init__() + self._read_user_data = dict() + + def read_one_user(self, data, sheet, row): user_data = UserData(title=data[0], first_name=data[1], last_name=data[2], email=data[3], is_responsible=False) - return user_data + self.associations[(sheet.name, row)] = user_data + if user_data not in self._read_user_data: + self._read_user_data[user_data] = (sheet.name, row) + else: + orig_sheet, orig_row = self._read_user_data[user_data] + warningstring = _("The duplicated row {row} in sheet '{sheet}' was ignored. It was first found in sheet '{orig_sheet}' on row {orig_row}.").format( + sheet=sheet.name, + row=row + 1, + orig_sheet=orig_sheet, + orig_row=orig_row + 1, + ) + self.warnings[self.W_IGNORED].append(warningstring) def consolidate_user_data(self): for (sheet, row), (user_data) in self.associations.items(): @@ -414,7 +428,7 @@ def save_users_to_db(self): new_participants = [] created_users = [] with transaction.atomic(): - for (sheet, row), (user_data) in self.associations.items(): + for user_data in self.users.values(): try: user, created = user_data.store_in_database() new_participants.append(user) @@ -423,8 +437,7 @@ def save_users_to_db(self): except Exception as e: self.errors.append(_("A problem occured while writing the entries to the database." - " The original data location was row %(row)d of sheet '%(sheet)s'." - " The error message has been: '%(error)s'") % dict(row=row + 1, sheet=sheet, error=e)) + " The error message has been: '%(error)s'") % dict(error=e)) raise msg = _("Successfully created {} users:").format(len(created_users)) @@ -577,6 +590,7 @@ def make_users_active(user_list): ExcelImporter.W_NAME: ugettext_lazy("Name mismatches"), ExcelImporter.W_INACTIVE: ugettext_lazy("Inactive users"), ExcelImporter.W_DUPL: ugettext_lazy("Possible duplicates"), + ExcelImporter.W_IGNORED: ugettext_lazy("Ignored duplicates"), ExcelImporter.W_GENERAL: ugettext_lazy("General warnings"), EnrollmentImporter.W_DEGREE: ugettext_lazy("Degree mismatches"), EnrollmentImporter.W_MANY: ugettext_lazy("Unusually high number of enrollments")
diff --git a/evap/staff/tests/test_importers.py b/evap/staff/tests/test_importers.py --- a/evap/staff/tests/test_importers.py +++ b/evap/staff/tests/test_importers.py @@ -11,6 +11,7 @@ class TestUserImporter(TestCase): filename_valid = os.path.join(settings.BASE_DIR, "staff/fixtures/valid_user_import.xls") + filename_duplicate = os.path.join(settings.BASE_DIR, "staff/fixtures/duplicate_user_import.xls") filename_invalid = os.path.join(settings.BASE_DIR, "staff/fixtures/invalid_user_import.xls") filename_random = os.path.join(settings.BASE_DIR, "staff/fixtures/random.random") @@ -24,6 +25,8 @@ def setUpTestData(cls): cls.invalid_excel_content = excel_file.read() with open(cls.filename_random, "rb") as excel_file: cls.random_excel_content = excel_file.read() + with open(cls.filename_duplicate, "rb") as excel_file: + cls.duplicate_excel_content = excel_file.read() def test_test_run_does_not_change_database(self): original_users = list(UserProfile.objects.all()) @@ -71,6 +74,13 @@ def test_duplicate_warning(self): " - Lucilia Manilium, [email protected] (new)", warnings_test[ExcelImporter.W_DUPL]) + def test_ignored_duplicate_warning(self): + __, __, warnings_test, __ = UserImporter.process(self.duplicate_excel_content, test_run=True) + __, __, warnings_no_test, __ = UserImporter.process(self.duplicate_excel_content, test_run=False) + + self.assertEqual(warnings_test, warnings_no_test) + self.assertTrue(any("The duplicated row 4 in sheet 'Users' was ignored. It was first found in sheet 'Users' on row 3." in warning for warning in warnings_test[ExcelImporter.W_IGNORED])) + def test_random_file_error(self): original_user_count = UserProfile.objects.count()
Clean duplicates on user import When importing a list of users that includes the same person multiple times, these duplicates should be ignored during the import (a message for each ignored user could be shown). Currently the importer throws an exception.
2019-05-27T20:05:10
e-valuation/EvaP
1,350
e-valuation__EvaP-1350
[ "1274" ]
acf102fd2cc9c216723296d094a2722912bd4ab5
diff --git a/evap/results/exporters.py b/evap/results/exporters.py --- a/evap/results/exporters.py +++ b/evap/results/exporters.py @@ -4,7 +4,7 @@ import xlwt -from evap.evaluation.models import CourseType +from evap.evaluation.models import CourseType, Degree from evap.results.tools import (collect_results, calculate_average_course_distribution, calculate_average_distribution, distribution_to_grade, get_grade_color) @@ -76,13 +76,13 @@ def filter_text_and_heading_questions(self, questions): return filtered_questions - def export(self, response, course_types_list, include_not_enough_voters=False, include_unpublished=False): + def export(self, response, selection_list, include_not_enough_voters=False, include_unpublished=False): self.workbook = xlwt.Workbook() self.init_styles(self.workbook) counter = 1 course_results_exist = False - for course_types in course_types_list: + for degrees, course_types in selection_list: self.sheet = self.workbook.add_sheet("Sheet " + str(counter)) counter += 1 self.row = 0 @@ -94,7 +94,9 @@ def export(self, response, course_types_list, include_not_enough_voters=False, i evaluation_states.extend(['evaluated', 'reviewed']) used_questionnaires = set() - for evaluation in self.semester.evaluations.filter(state__in=evaluation_states, course__type__in=course_types).all(): + for evaluation in self.semester.evaluations.filter( + state__in=evaluation_states, course__degrees__in=degrees, course__type__in=course_types + ).distinct(): if evaluation.is_single_result: continue if not evaluation.can_publish_rating_results and not include_not_enough_voters: @@ -115,8 +117,11 @@ def export(self, response, course_types_list, include_not_enough_voters=False, i evaluations_with_results.sort(key=lambda cr: (cr[0].course.type.order, cr[0].full_name)) used_questionnaires = sorted(used_questionnaires) - course_type_names = [ct.name for ct in CourseType.objects.filter(pk__in=course_types)] - writec(self, _("Evaluation {0}\n\n{1}").format(self.semester.name, ", ".join(course_type_names)), "headline") + degree_names = [degree.name for degree in Degree.objects.filter(pk__in=degrees)] + course_type_names = [course_type.name for course_type in CourseType.objects.filter(pk__in=course_types)] + writec(self, _("Evaluation {}\n\n{}\n\n{}").format( + self.semester.name, ", ".join(degree_names), ", ".join(course_type_names) + ), "headline") for evaluation, results in evaluations_with_results: writec(self, evaluation.full_name, "evaluation") diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -767,8 +767,16 @@ def clean_original_answer(self): class ExportSheetForm(forms.Form): def __init__(self, semester, *args, **kwargs): super(ExportSheetForm, self).__init__(*args, **kwargs) + degrees = Degree.objects.filter(courses__semester=semester).distinct() + degree_tuples = [(degree.pk, degree.name) for degree in degrees] + self.fields['selected_degrees'] = forms.MultipleChoiceField( + choices=degree_tuples, + required=True, + widget=forms.CheckboxSelectMultiple(), + label=_("Degrees") + ) course_types = CourseType.objects.filter(courses__semester=semester).distinct() - course_type_tuples = [(ct.pk, ct.name) for ct in course_types] + course_type_tuples = [(course_type.pk, course_type.name) for course_type in course_types] self.fields['selected_course_types'] = forms.MultipleChoiceField( choices=course_type_tuples, required=True, diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -466,15 +466,16 @@ def semester_export(request, semester_id): if formset.is_valid(): include_not_enough_voters = request.POST.get('include_not_enough_voters') == 'on' include_unpublished = request.POST.get('include_unpublished') == 'on' - course_types_list = [] + selection_list = [] for form in formset: - if 'selected_course_types' in form.cleaned_data: - course_types_list.append(form.cleaned_data['selected_course_types']) + selection_list.append((form.cleaned_data['selected_degrees'], form.cleaned_data['selected_course_types'])) filename = "Evaluation-{}-{}.xls".format(semester.name, get_language()) response = HttpResponse(content_type="application/vnd.ms-excel") response["Content-Disposition"] = "attachment; filename=\"{}\"".format(filename) - ExcelExporter(semester).export(response, course_types_list, include_not_enough_voters, include_unpublished) + ExcelExporter(semester).export( + response, selection_list, include_not_enough_voters, include_unpublished + ) return response else: return render(request, "staff_semester_export.html", dict(semester=semester, formset=formset))
diff --git a/evap/results/tests/test_exporters.py b/evap/results/tests/test_exporters.py --- a/evap/results/tests/test_exporters.py +++ b/evap/results/tests/test_exporters.py @@ -4,7 +4,7 @@ from django.test import TestCase from django.utils import translation -from evap.evaluation.models import (Contribution, Course, CourseType, Evaluation, Question, Questionnaire, +from evap.evaluation.models import (Contribution, Course, CourseType, Degree, Evaluation, Question, Questionnaire, RatingAnswerCounter, Semester, UserProfile) from evap.results.exporters import ExcelExporter @@ -26,7 +26,14 @@ def test_grade_color_calculation(self): self.assertEqual(exporter.normalize_number(2.8), 2.8) def test_questionnaire_ordering(self): - evaluation = mommy.make(Evaluation, state='published', _participant_count=2, _voter_count=2) + degree = mommy.make(Degree) + evaluation = mommy.make( + Evaluation, + course=mommy.make(Course, degrees=[degree]), + state='published', + _participant_count=2, + _voter_count=2 + ) questionnaire_1 = mommy.make(Questionnaire, order=1, type=Questionnaire.TOP) questionnaire_2 = mommy.make(Questionnaire, order=4, type=Questionnaire.TOP) @@ -46,7 +53,12 @@ def test_questionnaire_ordering(self): mommy.make(RatingAnswerCounter, question=question_4, contribution=evaluation.general_contribution, answer=3, count=100) binary_content = BytesIO() - ExcelExporter(evaluation.course.semester).export(binary_content, [[evaluation.course.type.id]], True, True) + ExcelExporter(evaluation.course.semester).export( + binary_content, + [([course_degree.id for course_degree in evaluation.course.degrees.all()], [evaluation.course.type.id])], + True, + True + ) binary_content.seek(0) workbook = xlrd.open_workbook(file_contents=binary_content.read()) @@ -63,7 +75,14 @@ def test_questionnaire_ordering(self): self.assertEqual(workbook.sheets()[0].row_values(14)[0], question_4.text) def test_heading_question_filtering(self): - evaluation = mommy.make(Evaluation, state='published', _participant_count=2, _voter_count=2) + degree = mommy.make(Degree) + evaluation = mommy.make( + Evaluation, + course=mommy.make(Course, degrees=[degree]), + state='published', + _participant_count=2, + _voter_count=2 + ) contributor = mommy.make(UserProfile) evaluation.general_contribution.questionnaires.set([mommy.make(Questionnaire)]) @@ -77,7 +96,12 @@ def test_heading_question_filtering(self): mommy.make(RatingAnswerCounter, question=likert_question, contribution=contribution, answer=3, count=100) binary_content = BytesIO() - ExcelExporter(evaluation.course.semester).export(binary_content, [[evaluation.course.type.id]], True, True) + ExcelExporter(evaluation.course.semester).export( + binary_content, + [([course_degree.id for course_degree in evaluation.course.degrees.all()], [evaluation.course.type.id])], + True, + True + ) binary_content.seek(0) workbook = xlrd.open_workbook(file_contents=binary_content.read()) @@ -89,19 +113,29 @@ def test_heading_question_filtering(self): def test_view_excel_file_sorted(self): semester = mommy.make(Semester) course_type = mommy.make(CourseType) - mommy.make(Evaluation, state='published', course=mommy.make(Course, type=course_type, semester=semester, name_de="A", name_en="B"), - name_de='Evaluation1', name_en='Evaluation1') - - mommy.make(Evaluation, state='published', course=mommy.make(Course, type=course_type, semester=semester, name_de="B", name_en="A"), - name_de='Evaluation2', name_en='Evaluation2') + degree = mommy.make(Degree) + mommy.make( + Evaluation, + state='published', + course=mommy.make(Course, degrees=[degree], type=course_type, semester=semester, name_de="A", name_en="B"), + name_de='Evaluation1', + name_en='Evaluation1' + ) + mommy.make( + Evaluation, + state='published', + course=mommy.make(Course, degrees=[degree], type=course_type, semester=semester, name_de="B", name_en="A"), + name_de='Evaluation2', + name_en='Evaluation2' + ) content_de = BytesIO() with translation.override("de"): - ExcelExporter(semester).export(content_de, [[course_type.id]], True, True) + ExcelExporter(semester).export(content_de, [([degree.id], [course_type.id])], True, True) content_en = BytesIO() with translation.override("en"): - ExcelExporter(semester).export(content_en, [[course_type.id]], True, True) + ExcelExporter(semester).export(content_en, [([degree.id], [course_type.id])], True, True) content_de.seek(0) content_en.seek(0) @@ -116,11 +150,22 @@ def test_view_excel_file_sorted(self): self.assertEqual(workbook.sheets()[0].row_values(0)[2], "B – Evaluation1") def test_course_type_ordering(self): + degree = mommy.make(Degree) course_type_1 = mommy.make(CourseType, order=1) course_type_2 = mommy.make(CourseType, order=2) semester = mommy.make(Semester) - evaluation_1 = mommy.make(Evaluation, course=mommy.make(Course, semester=semester, type=course_type_1), state='published', _participant_count=2, _voter_count=2) - evaluation_2 = mommy.make(Evaluation, course=mommy.make(Course, semester=semester, type=course_type_2), state='published', _participant_count=2, _voter_count=2) + evaluation_1 = mommy.make(Evaluation, + course=mommy.make(Course, semester=semester, degrees=[degree], type=course_type_1), + state='published', + _participant_count=2, + _voter_count=2 + ) + evaluation_2 = mommy.make(Evaluation, + course=mommy.make(Course, semester=semester, degrees=[degree], type=course_type_2), + state='published', + _participant_count=2, + _voter_count=2 + ) questionnaire = mommy.make(Questionnaire) question = mommy.make(Question, type=Question.LIKERT, questionnaire=questionnaire) @@ -132,7 +177,7 @@ def test_course_type_ordering(self): mommy.make(RatingAnswerCounter, question=question, contribution=evaluation_2.general_contribution, answer=3, count=2) binary_content = BytesIO() - ExcelExporter(semester).export(binary_content, [[course_type_1.id, course_type_2.id]], True, True) + ExcelExporter(semester).export(binary_content, [([degree.id], [course_type_1.id, course_type_2.id])], True, True) binary_content.seek(0) workbook = xlrd.open_workbook(file_contents=binary_content.read()) @@ -143,7 +188,7 @@ def test_course_type_ordering(self): course_type_2.save() binary_content = BytesIO() - ExcelExporter(semester).export(binary_content, [[course_type_1.id, course_type_2.id]], True, True) + ExcelExporter(semester).export(binary_content, [([degree.id], [course_type_1.id, course_type_2.id])], True, True) binary_content.seek(0) workbook = xlrd.open_workbook(file_contents=binary_content.read()) diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -675,22 +675,29 @@ class TestSemesterExportView(WebTest): def setUpTestData(cls): mommy.make(UserProfile, username='manager', groups=[Group.objects.get(name='Manager')]) cls.semester = mommy.make(Semester, pk=1) + cls.degree = mommy.make(Degree) cls.course_type = mommy.make(CourseType) - cls.evaluation = mommy.make(Evaluation, course=mommy.make(Course, type=cls.course_type, semester=cls.semester)) + cls.evaluation = mommy.make( + Evaluation, + course=mommy.make(Course, degrees=[cls.degree], type=cls.course_type, semester=cls.semester) + ) def test_view_downloads_excel_file(self): page = self.app.get(self.url, user='manager') form = page.forms["semester-export-form"] - # Check one course type. + # Check one degree and course type. + form.set('form-0-selected_degrees', 'id_form-0-selected_degrees_0') form.set('form-0-selected_course_types', 'id_form-0-selected_course_types_0') response = form.submit() # Load response as Excel file and check its heading for correctness. workbook = xlrd.open_workbook(file_contents=response.content) - self.assertEqual(workbook.sheets()[0].row_values(0)[0], - 'Evaluation {0}\n\n{1}'.format(self.semester.name, ", ".join([self.course_type.name]))) + self.assertEqual( + workbook.sheets()[0].row_values(0)[0], + 'Evaluation {}\n\n{}\n\n{}'.format(self.semester.name, self.degree.name, self.course_type.name) + ) class TestSemesterRawDataExportView(WebTestWith200Check):
Add degrees to result export The result export should include the degree and course type for each course in separate lines in the excel sheet right below the title of the course. Furthermore, it should be possible to select for which degrees the results shall be exported. In addition to the current course type selection a degree selection needs to be added. A course will then be included in a specific sheet if it is in one of the selected degrees *and* in one of the selected course types.
regarding the export part, the exporter is kind of hard to read, but the actual change should be small. in the exporter there's a small loop that iterates over all courses and outputs their names (the exporter works line by line!), and below that, another loop would have to be added that outputs the degree. regarding the degree selection, that should work analogously to the course type selection. @Irliung do you still want to work on this or shall i remove your assignment?
2019-06-09T15:55:37
e-valuation/EvaP
1,351
e-valuation__EvaP-1351
[ "1201" ]
fe00becbd98c573e51e63e4400814758c4e13a4b
diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -58,7 +58,7 @@ def __str__(self): @property def can_be_deleted_by_manager(self): - return all(evaluation.can_be_deleted_by_manager for evaluation in self.evaluations.all()) + return self.evaluations.count() == 0 or (self.participations_are_archived and self.grade_documents_are_deleted and self.results_are_archived) @property def participations_can_be_archived(self): diff --git a/evap/staff/importers.py b/evap/staff/importers.py --- a/evap/staff/importers.py +++ b/evap/staff/importers.py @@ -14,7 +14,7 @@ def create_user_list_string_for_message(users): msg = "" for user in users: - msg += "<br>" + msg += "<br />" msg += "{} {} ({})".format(user.first_name, user.last_name, user.username) return msg @@ -219,8 +219,8 @@ def _create_user_data_mismatch_warning(user, user_data, test_run): else: msg = _("The existing user was overwritten with the following data:") return (mark_safe(msg - + "<br> - " + ExcelImporter._create_user_string(user) + _(" (existing)") - + "<br> - " + ExcelImporter._create_user_string(user_data) + _(" (new)"))) + + "<br /> - " + ExcelImporter._create_user_string(user) + _(" (existing)") + + "<br /> - " + ExcelImporter._create_user_string(user_data) + _(" (new)"))) @staticmethod def _create_user_inactive_warning(user, test_run): @@ -233,8 +233,8 @@ def _create_user_inactive_warning(user, test_run): def _create_user_name_collision_warning(self, user_data, users_with_same_names): warningstring = _("An existing user has the same first and last name as a new user:") for user in users_with_same_names: - warningstring += "<br> - " + self._create_user_string(user) + _(" (existing)") - warningstring += "<br> - " + self._create_user_string(user_data) + _(" (new)") + warningstring += "<br /> - " + self._create_user_string(user) + _(" (existing)") + warningstring += "<br /> - " + self._create_user_string(user_data) + _(" (new)") self.warnings[self.W_DUPL].append(mark_safe(warningstring)) def check_user_data_sanity(self, test_run): diff --git a/evap/staff/views.py b/evap/staff/views.py --- a/evap/staff/views.py +++ b/evap/staff/views.py @@ -406,6 +406,11 @@ def semester_delete(request): if not semester.can_be_deleted_by_manager: raise SuspiciousOperation("Deleting semester not allowed") + RatingAnswerCounter.objects.filter(contribution__evaluation__course__semester=semester).delete() + TextAnswer.objects.filter(contribution__evaluation__course__semester=semester).delete() + Contribution.objects.filter(evaluation__course__semester=semester).delete() + Evaluation.objects.filter(course__semester=semester).delete() + Course.objects.filter(semester=semester).delete() semester.delete() delete_navbar_cache_for_users([user for user in UserProfile.objects.all() if user.is_reviewer or user.is_grade_publisher]) return redirect('staff:index')
diff --git a/evap/staff/tests/test_importers.py b/evap/staff/tests/test_importers.py --- a/evap/staff/tests/test_importers.py +++ b/evap/staff/tests/test_importers.py @@ -48,7 +48,7 @@ def test_created_users(self): user_list, success_messages, warnings, errors = UserImporter.process(self.valid_excel_content, test_run=False) self.assertIn("Successfully read sheet 'Users'.", success_messages) - self.assertIn('Successfully created 2 users:<br>Lucilia Manilium (lucilia.manilium)<br>Bastius Quid (bastius.quid.ext)', success_messages) + self.assertIn('Successfully created 2 users:<br />Lucilia Manilium (lucilia.manilium)<br />Bastius Quid (bastius.quid.ext)', success_messages) self.assertIn('Successfully read Excel file.', success_messages) self.assertEqual(warnings, {}) self.assertEqual(errors, []) @@ -66,8 +66,8 @@ def test_duplicate_warning(self): __, __, warnings_no_test, __ = UserImporter.process(self.valid_excel_content, test_run=False) self.assertEqual(warnings_test, warnings_no_test) - self.assertIn("An existing user has the same first and last name as a new user:<br>" - " - lucilia.manilium2 ( Lucilia Manilium, ) (existing)<br>" + self.assertIn("An existing user has the same first and last name as a new user:<br />" + " - lucilia.manilium2 ( Lucilia Manilium, ) (existing)<br />" " - lucilia.manilium ( Lucilia Manilium, [email protected]) (new)", warnings_test[ExcelImporter.W_DUPL]) @@ -75,14 +75,14 @@ def test_email_mismatch_warning(self): mommy.make(UserProfile, email="[email protected]", username="lucilia.manilium") __, __, warnings_test, __ = UserImporter.process(self.valid_excel_content, test_run=True) - self.assertIn("The existing user would be overwritten with the following data:<br>" - " - lucilia.manilium ( None None, [email protected]) (existing)<br>" + self.assertIn("The existing user would be overwritten with the following data:<br />" + " - lucilia.manilium ( None None, [email protected]) (existing)<br />" " - lucilia.manilium ( Lucilia Manilium, [email protected]) (new)", warnings_test[ExcelImporter.W_EMAIL]) __, __, warnings_no_test, __ = UserImporter.process(self.valid_excel_content, test_run=False) - self.assertIn("The existing user was overwritten with the following data:<br>" - " - lucilia.manilium ( None None, [email protected]) (existing)<br>" + self.assertIn("The existing user was overwritten with the following data:<br />" + " - lucilia.manilium ( None None, [email protected]) (existing)<br />" " - lucilia.manilium ( Lucilia Manilium, [email protected]) (new)", warnings_no_test[ExcelImporter.W_EMAIL]) diff --git a/evap/staff/tests/test_views.py b/evap/staff/tests/test_views.py --- a/evap/staff/tests/test_views.py +++ b/evap/staff/tests/test_views.py @@ -263,7 +263,7 @@ def test_success_handling(self): form["excel_file"] = (self.filename_valid,) page = form.submit(name="operation", value="test") - self.assertContains(page, 'The import run will create 2 users:<br>Lucilia Manilium (lucilia.manilium)<br>Bastius Quid (bastius.quid.ext)') + self.assertContains(page, 'The import run will create 2 users:<br />Lucilia Manilium (lucilia.manilium)<br />Bastius Quid (bastius.quid.ext)') self.assertContains(page, 'Import previously uploaded file') form = page.forms["user-import-form"] @@ -303,8 +303,8 @@ def test_warning_handling(self): form["excel_file"] = (self.filename_valid,) reply = form.submit(name="operation", value="test") - self.assertContains(reply, "The existing user would be overwritten with the following data:<br>" - " - lucilia.manilium ( None None, [email protected]) (existing)<br>" + self.assertContains(reply, "The existing user would be overwritten with the following data:<br />" + " - lucilia.manilium ( None None, [email protected]) (existing)<br />" " - lucilia.manilium ( Lucilia Manilium, [email protected]) (new)") helper_delete_all_import_files(self.user.id) @@ -447,13 +447,38 @@ def test_failure(self): self.assertEqual(response.status_code, 400) self.assertTrue(Semester.objects.filter(pk=semester.pk).exists()) - def test_success(self): + def test_success_if_no_courses(self): semester = mommy.make(Semester) self.assertTrue(semester.can_be_deleted_by_manager) response = self.app.post(self.url, params={'semester_id': semester.pk}, user='manager') self.assertEqual(response.status_code, 302) self.assertFalse(Semester.objects.filter(pk=semester.pk).exists()) + def test_success_if_archived(self): + semester = mommy.make(Semester) + course = mommy.make(Course, semester=semester) + evaluation = mommy.make(Evaluation, course=course, state='published') + general_contribution = evaluation.general_contribution + responsible_contribution = mommy.make(Contribution, evaluation=evaluation, contributor=mommy.make(UserProfile)) + textanswer = mommy.make(TextAnswer, contribution=general_contribution, state='PU') + ratinganswercounter = mommy.make(RatingAnswerCounter, contribution=responsible_contribution) + + self.assertFalse(semester.can_be_deleted_by_manager) + + semester.archive_participations() + semester.delete_grade_documents() + semester.archive_results() + + self.assertTrue(semester.can_be_deleted_by_manager) + response = self.app.post(self.url, params={'semester_id': semester.pk}, user='manager') + self.assertEqual(response.status_code, 302) + self.assertFalse(Semester.objects.filter(pk=semester.pk).exists()) + self.assertFalse(Course.objects.filter(pk=course.pk).exists()) + self.assertFalse(Evaluation.objects.filter(pk=evaluation.pk).exists()) + self.assertFalse(Contribution.objects.filter(pk=general_contribution.pk).exists()) + self.assertFalse(Contribution.objects.filter(pk=responsible_contribution.pk).exists()) + self.assertFalse(TextAnswer.objects.filter(pk=textanswer.pk).exists()) + self.assertFalse(RatingAnswerCounter.objects.filter(pk=ratinganswercounter.pk).exists()) class TestSemesterAssignView(WebTest): url = '/staff/semester/1/assign' @@ -621,8 +646,8 @@ def test_warning_handling(self): form["excel_file"] = (self.filename_valid,) reply = form.submit(name="operation", value="test") - self.assertContains(reply, "The existing user would be overwritten with the following data:<br>" - " - lucilia.manilium ( None None, [email protected]) (existing)<br>" + self.assertContains(reply, "The existing user would be overwritten with the following data:<br />" + " - lucilia.manilium ( None None, [email protected]) (existing)<br />" " - lucilia.manilium ( Lucilia Manilium, [email protected]) (new)") def test_suspicious_operation(self): @@ -1415,8 +1440,8 @@ def test_import_participants_warning_handling(self): form["excel_file"] = (self.filename_valid,) reply = form.submit(name="operation", value="test-participants") - self.assertContains(reply, "The existing user would be overwritten with the following data:<br>" - " - lucilia.manilium ( None None, [email protected]) (existing)<br>" + self.assertContains(reply, "The existing user would be overwritten with the following data:<br />" + " - lucilia.manilium ( None None, [email protected]) (existing)<br />" " - lucilia.manilium ( Lucilia Manilium, [email protected]) (new)") def test_import_contributors_error_handling(self): @@ -1446,8 +1471,8 @@ def test_import_contributors_warning_handling(self): form["excel_file"] = (self.filename_valid,) reply = form.submit(name="operation", value="test-contributors") - self.assertContains(reply, "The existing user would be overwritten with the following data:<br>" - " - lucilia.manilium ( None None, [email protected]) (existing)<br>" + self.assertContains(reply, "The existing user would be overwritten with the following data:<br />" + " - lucilia.manilium ( None None, [email protected]) (existing)<br />" " - lucilia.manilium ( Lucilia Manilium, [email protected]) (new)") def test_suspicious_operation(self):
Fix semester deletion, add additional confirmation * right now, deleting a semester that has any courses in it fails with a 500. the delete-button should not be enabled in this case in the first place. also, right now archived semesters cannot be deleted, that should be changed. check out `Semester.can_staff_delete`. * To be precise, a semester should be deletable if it is either archived or has no courses. For archived semesters, their courses should be deleted one by one in `staff.views.semester_delete` * when deleting archived semesters, there should be some additional confirmation, e.g. `enter "WT 12/13" in the text box below to confirm` since deleting semesters potentially means a rather large amount of data to be deleted at once.
2019-06-09T17:23:16
e-valuation/EvaP
1,353
e-valuation__EvaP-1353
[ "1240" ]
ce4a78083da9dc8d6bcac0d47ebd8095c6ab93ae
diff --git a/evap/evaluation/management/commands/dump_testdata.py b/evap/evaluation/management/commands/dump_testdata.py --- a/evap/evaluation/management/commands/dump_testdata.py +++ b/evap/evaluation/management/commands/dump_testdata.py @@ -12,4 +12,6 @@ class Command(BaseCommand): def handle(self, *args, **options): outfile_name = os.path.join(settings.BASE_DIR, "evaluation", "fixtures", "test_data.json") - call_command("dumpdata", "auth.group", "evaluation", "rewards", "grades", indent=2, output=outfile_name) + call_command( + "dumpdata", "auth.group", "evaluation", "rewards", "grades", indent=2, + output=outfile_name, natural_foreign=True, natural_primary=True)
diff --git a/evap/evaluation/fixtures/test_data.json b/evap/evaluation/fixtures/test_data.json --- a/evap/evaluation/fixtures/test_data.json +++ b/evap/evaluation/fixtures/test_data.json @@ -1,7 +1,6 @@ [ { "model": "auth.group", - "pk": 1, "fields": { "name": "Manager", "permissions": [] @@ -9,7 +8,6 @@ }, { "model": "auth.group", - "pk": 2, "fields": { "name": "Reviewer", "permissions": [] @@ -17,7 +15,6 @@ }, { "model": "auth.group", - "pk": 3, "fields": { "name": "Grade publisher", "permissions": [] @@ -107809,7 +107806,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-28T22:41:00.677", @@ -107832,7 +107828,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-03-04T07:06:22.286", @@ -107855,7 +107850,6 @@ }, { "model": "evaluation.userprofile", - "pk": 3, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-14T15:17:07.088", @@ -107878,7 +107872,6 @@ }, { "model": "evaluation.userprofile", - "pk": 4, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-13T01:23:38", @@ -107901,7 +107894,6 @@ }, { "model": "evaluation.userprofile", - "pk": 6, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.138", @@ -107924,7 +107916,6 @@ }, { "model": "evaluation.userprofile", - "pk": 7, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.143", @@ -107947,7 +107938,6 @@ }, { "model": "evaluation.userprofile", - "pk": 8, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.147", @@ -107970,7 +107960,6 @@ }, { "model": "evaluation.userprofile", - "pk": 10, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.157", @@ -107993,7 +107982,6 @@ }, { "model": "evaluation.userprofile", - "pk": 11, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.162", @@ -108016,7 +108004,6 @@ }, { "model": "evaluation.userprofile", - "pk": 13, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-25T10:42:22.650", @@ -108039,7 +108026,6 @@ }, { "model": "evaluation.userprofile", - "pk": 14, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-23T08:25:52.643", @@ -108062,7 +108048,6 @@ }, { "model": "evaluation.userprofile", - "pk": 15, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.181", @@ -108085,7 +108070,6 @@ }, { "model": "evaluation.userprofile", - "pk": 16, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-22T13:20:12.139", @@ -108108,7 +108092,6 @@ }, { "model": "evaluation.userprofile", - "pk": 18, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-07T15:08:42.080", @@ -108131,7 +108114,6 @@ }, { "model": "evaluation.userprofile", - "pk": 19, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.200", @@ -108154,7 +108136,6 @@ }, { "model": "evaluation.userprofile", - "pk": 24, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-12T11:22:24.996", @@ -108177,7 +108158,6 @@ }, { "model": "evaluation.userprofile", - "pk": 25, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-13T09:26:24.179", @@ -108200,7 +108180,6 @@ }, { "model": "evaluation.userprofile", - "pk": 27, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.239", @@ -108223,7 +108202,6 @@ }, { "model": "evaluation.userprofile", - "pk": 28, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T16:07:06.040", @@ -108246,7 +108224,6 @@ }, { "model": "evaluation.userprofile", - "pk": 30, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-22T16:37:26.406", @@ -108269,7 +108246,6 @@ }, { "model": "evaluation.userprofile", - "pk": 32, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.262", @@ -108292,7 +108268,6 @@ }, { "model": "evaluation.userprofile", - "pk": 33, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-02T13:46:51.253", @@ -108315,7 +108290,6 @@ }, { "model": "evaluation.userprofile", - "pk": 36, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.281", @@ -108338,7 +108312,6 @@ }, { "model": "evaluation.userprofile", - "pk": 39, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-30T20:09:05.105", @@ -108361,7 +108334,6 @@ }, { "model": "evaluation.userprofile", - "pk": 40, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T23:17:23.356", @@ -108384,7 +108356,6 @@ }, { "model": "evaluation.userprofile", - "pk": 41, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-18T20:29:13.939", @@ -108407,7 +108378,6 @@ }, { "model": "evaluation.userprofile", - "pk": 43, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.317", @@ -108430,7 +108400,6 @@ }, { "model": "evaluation.userprofile", - "pk": 44, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-03-30T18:44:43.969", @@ -108453,7 +108422,6 @@ }, { "model": "evaluation.userprofile", - "pk": 47, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.338", @@ -108476,7 +108444,6 @@ }, { "model": "evaluation.userprofile", - "pk": 49, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T15:22:45.941", @@ -108499,7 +108466,6 @@ }, { "model": "evaluation.userprofile", - "pk": 51, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-28T12:59:20.141", @@ -108522,7 +108488,6 @@ }, { "model": "evaluation.userprofile", - "pk": 52, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-02T15:19:01.008", @@ -108545,7 +108510,6 @@ }, { "model": "evaluation.userprofile", - "pk": 53, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.367", @@ -108568,7 +108532,6 @@ }, { "model": "evaluation.userprofile", - "pk": 55, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.377", @@ -108591,7 +108554,6 @@ }, { "model": "evaluation.userprofile", - "pk": 56, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.382", @@ -108614,7 +108576,6 @@ }, { "model": "evaluation.userprofile", - "pk": 59, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.396", @@ -108637,7 +108598,6 @@ }, { "model": "evaluation.userprofile", - "pk": 60, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-09T11:17:34.455", @@ -108660,7 +108620,6 @@ }, { "model": "evaluation.userprofile", - "pk": 61, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-02T13:49:42.939", @@ -108683,7 +108642,6 @@ }, { "model": "evaluation.userprofile", - "pk": 63, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.415", @@ -108706,7 +108664,6 @@ }, { "model": "evaluation.userprofile", - "pk": 64, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.420", @@ -108729,7 +108686,6 @@ }, { "model": "evaluation.userprofile", - "pk": 65, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-22T16:36:45.099", @@ -108752,7 +108708,6 @@ }, { "model": "evaluation.userprofile", - "pk": 69, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:15:33.557", @@ -108775,7 +108730,6 @@ }, { "model": "evaluation.userprofile", - "pk": 71, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-04-05T08:28:44.887", @@ -108798,7 +108752,6 @@ }, { "model": "evaluation.userprofile", - "pk": 74, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-01T11:36:03.558", @@ -108821,7 +108774,6 @@ }, { "model": "evaluation.userprofile", - "pk": 75, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.475", @@ -108844,7 +108796,6 @@ }, { "model": "evaluation.userprofile", - "pk": 77, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.485", @@ -108867,7 +108818,6 @@ }, { "model": "evaluation.userprofile", - "pk": 79, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-03-03T12:00:50.914", @@ -108890,7 +108840,6 @@ }, { "model": "evaluation.userprofile", - "pk": 80, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-18T21:29:51.683", @@ -108913,7 +108862,6 @@ }, { "model": "evaluation.userprofile", - "pk": 84, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.521", @@ -108936,7 +108884,6 @@ }, { "model": "evaluation.userprofile", - "pk": 85, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.526", @@ -108959,7 +108906,6 @@ }, { "model": "evaluation.userprofile", - "pk": 88, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.540", @@ -108982,7 +108928,6 @@ }, { "model": "evaluation.userprofile", - "pk": 89, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-02T15:42:43.850", @@ -109005,7 +108950,6 @@ }, { "model": "evaluation.userprofile", - "pk": 91, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.555", @@ -109028,7 +108972,6 @@ }, { "model": "evaluation.userprofile", - "pk": 92, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:46.560", @@ -109051,7 +108994,6 @@ }, { "model": "evaluation.userprofile", - "pk": 93, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-26T11:55:18.316", @@ -109074,7 +109016,6 @@ }, { "model": "evaluation.userprofile", - "pk": 98, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:53.825", @@ -109097,7 +109038,6 @@ }, { "model": "evaluation.userprofile", - "pk": 99, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-24T00:08:14.535", @@ -109120,7 +109060,6 @@ }, { "model": "evaluation.userprofile", - "pk": 103, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:53.848", @@ -109143,7 +109082,6 @@ }, { "model": "evaluation.userprofile", - "pk": 105, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:53.858", @@ -109166,7 +109104,6 @@ }, { "model": "evaluation.userprofile", - "pk": 106, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-18T21:33:11.053", @@ -109189,7 +109126,6 @@ }, { "model": "evaluation.userprofile", - "pk": 107, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:53.869", @@ -109212,7 +109148,6 @@ }, { "model": "evaluation.userprofile", - "pk": 111, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:53.888", @@ -109235,7 +109170,6 @@ }, { "model": "evaluation.userprofile", - "pk": 112, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:53.897", @@ -109258,7 +109192,6 @@ }, { "model": "evaluation.userprofile", - "pk": 113, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:53.901", @@ -109281,7 +109214,6 @@ }, { "model": "evaluation.userprofile", - "pk": 115, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T16:59:53.911", @@ -109304,7 +109236,6 @@ }, { "model": "evaluation.userprofile", - "pk": 116, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-07T14:28:32.793", @@ -109327,7 +109258,6 @@ }, { "model": "evaluation.userprofile", - "pk": 120, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-08T12:55:29.453", @@ -109350,7 +109280,6 @@ }, { "model": "evaluation.userprofile", - "pk": 122, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:02.340", @@ -109373,7 +109302,6 @@ }, { "model": "evaluation.userprofile", - "pk": 125, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:02.933", @@ -109396,7 +109324,6 @@ }, { "model": "evaluation.userprofile", - "pk": 127, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-02T13:51:03.991", @@ -109414,17 +109341,24 @@ "groups": [], "user_permissions": [], "delegates": [ - 2143, - 169, - 14, - 18 + [ + "val.crocker.ext" + ], + [ + "hue.fontenot.ext" + ], + [ + "willena.hemphill" + ], + [ + "sergio.reichert.ext" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 134, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:11.313", @@ -109447,7 +109381,6 @@ }, { "model": "evaluation.userprofile", - "pk": 135, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:11.321", @@ -109470,7 +109403,6 @@ }, { "model": "evaluation.userprofile", - "pk": 140, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-08T14:50:24.419", @@ -109493,7 +109425,6 @@ }, { "model": "evaluation.userprofile", - "pk": 141, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-11-02T10:53:23.655", @@ -109516,7 +109447,6 @@ }, { "model": "evaluation.userprofile", - "pk": 145, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-10T13:03:18.412", @@ -109539,7 +109469,6 @@ }, { "model": "evaluation.userprofile", - "pk": 146, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:11.372", @@ -109562,7 +109491,6 @@ }, { "model": "evaluation.userprofile", - "pk": 149, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:11.386", @@ -109585,7 +109513,6 @@ }, { "model": "evaluation.userprofile", - "pk": 151, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:11.396", @@ -109608,7 +109535,6 @@ }, { "model": "evaluation.userprofile", - "pk": 152, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:11.400", @@ -109631,7 +109557,6 @@ }, { "model": "evaluation.userprofile", - "pk": 155, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:11.417", @@ -109654,7 +109579,6 @@ }, { "model": "evaluation.userprofile", - "pk": 156, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:11.421", @@ -109677,7 +109601,6 @@ }, { "model": "evaluation.userprofile", - "pk": 159, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:11.436", @@ -109700,7 +109623,6 @@ }, { "model": "evaluation.userprofile", - "pk": 160, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:11.440", @@ -109723,7 +109645,6 @@ }, { "model": "evaluation.userprofile", - "pk": 161, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-04-25T15:41:02.977", @@ -109746,7 +109667,6 @@ }, { "model": "evaluation.userprofile", - "pk": 167, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:11.471", @@ -109769,7 +109689,6 @@ }, { "model": "evaluation.userprofile", - "pk": 168, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:11.476", @@ -109792,7 +109711,6 @@ }, { "model": "evaluation.userprofile", - "pk": 169, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-24T14:51:25.860", @@ -109815,7 +109733,6 @@ }, { "model": "evaluation.userprofile", - "pk": 170, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:11.484", @@ -109838,7 +109755,6 @@ }, { "model": "evaluation.userprofile", - "pk": 173, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-31T09:05:09.526", @@ -109861,7 +109777,6 @@ }, { "model": "evaluation.userprofile", - "pk": 174, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-10T15:15:03.398", @@ -109884,7 +109799,6 @@ }, { "model": "evaluation.userprofile", - "pk": 178, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-16T14:08:53.821", @@ -109907,7 +109821,6 @@ }, { "model": "evaluation.userprofile", - "pk": 180, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:16.101", @@ -109930,7 +109843,6 @@ }, { "model": "evaluation.userprofile", - "pk": 181, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-08T08:44:34.568", @@ -109953,7 +109865,6 @@ }, { "model": "evaluation.userprofile", - "pk": 182, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:16.110", @@ -109976,7 +109887,6 @@ }, { "model": "evaluation.userprofile", - "pk": 184, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-01-18T16:39:13.623", @@ -109999,7 +109909,6 @@ }, { "model": "evaluation.userprofile", - "pk": 186, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:16.229", @@ -110022,7 +109931,6 @@ }, { "model": "evaluation.userprofile", - "pk": 191, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-05T09:17:42.420", @@ -110045,7 +109953,6 @@ }, { "model": "evaluation.userprofile", - "pk": 192, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-12-17T13:59:04.698", @@ -110068,7 +109975,6 @@ }, { "model": "evaluation.userprofile", - "pk": 197, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:17.058", @@ -110091,7 +109997,6 @@ }, { "model": "evaluation.userprofile", - "pk": 200, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-16T14:09:00.405", @@ -110114,7 +110019,6 @@ }, { "model": "evaluation.userprofile", - "pk": 201, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:17.091", @@ -110137,7 +110041,6 @@ }, { "model": "evaluation.userprofile", - "pk": 202, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:17.098", @@ -110160,7 +110063,6 @@ }, { "model": "evaluation.userprofile", - "pk": 204, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-14T14:18:59.405", @@ -110178,14 +110080,15 @@ "groups": [], "user_permissions": [], "delegates": [ - 181 + [ + "denisha.chance" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 205, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:22.769", @@ -110208,7 +110111,6 @@ }, { "model": "evaluation.userprofile", - "pk": 207, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-23T11:31:00.867", @@ -110226,14 +110128,15 @@ "groups": [], "user_permissions": [], "delegates": [ - 484 + [ + "harriet.rushing" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 208, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T07:24:33.096", @@ -110256,7 +110159,6 @@ }, { "model": "evaluation.userprofile", - "pk": 210, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:23.106", @@ -110279,7 +110181,6 @@ }, { "model": "evaluation.userprofile", - "pk": 212, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:23.406", @@ -110302,7 +110203,6 @@ }, { "model": "evaluation.userprofile", - "pk": 214, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:27.512", @@ -110325,7 +110225,6 @@ }, { "model": "evaluation.userprofile", - "pk": 217, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-31T09:41:52.662", @@ -110348,7 +110247,6 @@ }, { "model": "evaluation.userprofile", - "pk": 219, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:27.558", @@ -110371,7 +110269,6 @@ }, { "model": "evaluation.userprofile", - "pk": 221, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:27.674", @@ -110394,7 +110291,6 @@ }, { "model": "evaluation.userprofile", - "pk": 222, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-31T09:25:26.263", @@ -110412,15 +110308,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 419, - 1125 + [ + "tonita.gallardo" + ], + [ + "elias.troy" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 228, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:29.850", @@ -110443,7 +110342,6 @@ }, { "model": "evaluation.userprofile", - "pk": 229, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:29.856", @@ -110466,7 +110364,6 @@ }, { "model": "evaluation.userprofile", - "pk": 232, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-05-03T18:45:59.229", @@ -110489,7 +110386,6 @@ }, { "model": "evaluation.userprofile", - "pk": 234, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-23T09:38:18.308", @@ -110507,16 +110403,19 @@ "groups": [], "user_permissions": [], "delegates": [ - 318 + [ + "laurence.tipton" + ] ], "cc_users": [ - 2359 + [ + "katheryn.greiner" + ] ] } }, { "model": "evaluation.userprofile", - "pk": 236, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T20:53:56.568", @@ -110534,14 +110433,15 @@ "groups": [], "user_permissions": [], "delegates": [ - 408 + [ + "britteny.easley" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 237, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:35.883", @@ -110564,7 +110464,6 @@ }, { "model": "evaluation.userprofile", - "pk": 239, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:36.305", @@ -110587,7 +110486,6 @@ }, { "model": "evaluation.userprofile", - "pk": 240, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:36.310", @@ -110610,7 +110508,6 @@ }, { "model": "evaluation.userprofile", - "pk": 241, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:00:36.352", @@ -110633,7 +110530,6 @@ }, { "model": "evaluation.userprofile", - "pk": 249, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-13T15:15:20.699", @@ -110651,14 +110547,15 @@ "groups": [], "user_permissions": [], "delegates": [ - 2217 + [ + "nicholle.boyce" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 251, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-02T10:30:52.845", @@ -110676,15 +110573,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 965, - 945 + [ + "tracie.shephard.ext" + ], + [ + "lakisha.tisdale.ext" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 255, "fields": { "password": "pbkdf2_sha256$20000$WYMx4NnprgNS$D7foSqb66b1TSi9a1CZRHA2MNXyeSRT/nmcDGXEGvkk=", "last_login": "2015-11-08T12:21:35.100", @@ -110702,15 +110602,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 482, - 591 + [ + "kyra.hart" + ], + [ + "delegate" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 260, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:05.685", @@ -110733,7 +110636,6 @@ }, { "model": "evaluation.userprofile", - "pk": 264, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:07.988", @@ -110756,7 +110658,6 @@ }, { "model": "evaluation.userprofile", - "pk": 266, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:07.996", @@ -110779,7 +110680,6 @@ }, { "model": "evaluation.userprofile", - "pk": 267, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-21T15:59:05.727", @@ -110802,7 +110702,6 @@ }, { "model": "evaluation.userprofile", - "pk": 270, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:08.015", @@ -110825,7 +110724,6 @@ }, { "model": "evaluation.userprofile", - "pk": 272, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:08.024", @@ -110848,7 +110746,6 @@ }, { "model": "evaluation.userprofile", - "pk": 274, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-03-16T11:54:45.439", @@ -110871,7 +110768,6 @@ }, { "model": "evaluation.userprofile", - "pk": 275, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:08.037", @@ -110894,7 +110790,6 @@ }, { "model": "evaluation.userprofile", - "pk": 276, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:08.042", @@ -110917,7 +110812,6 @@ }, { "model": "evaluation.userprofile", - "pk": 277, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:09.026", @@ -110940,7 +110834,6 @@ }, { "model": "evaluation.userprofile", - "pk": 280, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:22:35.918", @@ -110963,7 +110856,6 @@ }, { "model": "evaluation.userprofile", - "pk": 281, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:09.052", @@ -110986,7 +110878,6 @@ }, { "model": "evaluation.userprofile", - "pk": 282, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:09.058", @@ -111009,7 +110900,6 @@ }, { "model": "evaluation.userprofile", - "pk": 283, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-19T13:57:42.796", @@ -111027,15 +110917,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 2217, - 249 + [ + "nicholle.boyce" + ], + [ + "sunni.hollingsworth" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 284, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:09.147", @@ -111058,7 +110951,6 @@ }, { "model": "evaluation.userprofile", - "pk": 286, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-18T19:17:21.456", @@ -111081,7 +110973,6 @@ }, { "model": "evaluation.userprofile", - "pk": 289, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:09.673", @@ -111104,7 +110995,6 @@ }, { "model": "evaluation.userprofile", - "pk": 292, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:11.045", @@ -111127,7 +111017,6 @@ }, { "model": "evaluation.userprofile", - "pk": 293, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:11.292", @@ -111150,7 +111039,6 @@ }, { "model": "evaluation.userprofile", - "pk": 295, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:13.558", @@ -111173,7 +111061,6 @@ }, { "model": "evaluation.userprofile", - "pk": 296, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-11T10:45:55.678", @@ -111196,7 +111083,6 @@ }, { "model": "evaluation.userprofile", - "pk": 300, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:14.067", @@ -111214,14 +111100,15 @@ "groups": [], "user_permissions": [], "delegates": [ - 484 + [ + "harriet.rushing" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 304, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:14.714", @@ -111244,7 +111131,6 @@ }, { "model": "evaluation.userprofile", - "pk": 310, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T16:59:12.204", @@ -111262,15 +111148,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 2217, - 249 + [ + "nicholle.boyce" + ], + [ + "sunni.hollingsworth" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 313, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:15.916", @@ -111293,7 +111182,6 @@ }, { "model": "evaluation.userprofile", - "pk": 317, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:17.316", @@ -111316,7 +111204,6 @@ }, { "model": "evaluation.userprofile", - "pk": 318, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-24T12:36:26.705", @@ -111339,7 +111226,6 @@ }, { "model": "evaluation.userprofile", - "pk": 321, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:46.857", @@ -111362,7 +111248,6 @@ }, { "model": "evaluation.userprofile", - "pk": 322, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:46.864", @@ -111385,7 +111270,6 @@ }, { "model": "evaluation.userprofile", - "pk": 323, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-05-07T18:42:15.184", @@ -111408,7 +111292,6 @@ }, { "model": "evaluation.userprofile", - "pk": 324, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:46.874", @@ -111431,7 +111314,6 @@ }, { "model": "evaluation.userprofile", - "pk": 325, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:46.950", @@ -111454,7 +111336,6 @@ }, { "model": "evaluation.userprofile", - "pk": 326, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-04-02T17:52:02.729", @@ -111477,7 +111358,6 @@ }, { "model": "evaluation.userprofile", - "pk": 329, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:47.847", @@ -111500,7 +111380,6 @@ }, { "model": "evaluation.userprofile", - "pk": 330, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T18:29:04.997", @@ -111523,7 +111402,6 @@ }, { "model": "evaluation.userprofile", - "pk": 331, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:47.859", @@ -111546,7 +111424,6 @@ }, { "model": "evaluation.userprofile", - "pk": 333, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:47.869", @@ -111569,7 +111446,6 @@ }, { "model": "evaluation.userprofile", - "pk": 341, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:48.847", @@ -111592,7 +111468,6 @@ }, { "model": "evaluation.userprofile", - "pk": 344, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:48.936", @@ -111615,7 +111490,6 @@ }, { "model": "evaluation.userprofile", - "pk": 346, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:49.845", @@ -111638,7 +111512,6 @@ }, { "model": "evaluation.userprofile", - "pk": 350, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:50.704", @@ -111661,7 +111534,6 @@ }, { "model": "evaluation.userprofile", - "pk": 358, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:52.181", @@ -111684,7 +111556,6 @@ }, { "model": "evaluation.userprofile", - "pk": 363, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:54.326", @@ -111707,7 +111578,6 @@ }, { "model": "evaluation.userprofile", - "pk": 366, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:55.890", @@ -111730,7 +111600,6 @@ }, { "model": "evaluation.userprofile", - "pk": 367, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:01:56.443", @@ -111753,7 +111622,6 @@ }, { "model": "evaluation.userprofile", - "pk": 378, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:00.392", @@ -111776,7 +111644,6 @@ }, { "model": "evaluation.userprofile", - "pk": 380, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:00.438", @@ -111799,7 +111666,6 @@ }, { "model": "evaluation.userprofile", - "pk": 383, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:00.691", @@ -111822,7 +111688,6 @@ }, { "model": "evaluation.userprofile", - "pk": 387, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-10-01T09:33:06.080", @@ -111845,7 +111710,6 @@ }, { "model": "evaluation.userprofile", - "pk": 388, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:03.311", @@ -111868,7 +111732,6 @@ }, { "model": "evaluation.userprofile", - "pk": 389, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:07.646", @@ -111891,7 +111754,6 @@ }, { "model": "evaluation.userprofile", - "pk": 392, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-23T10:52:15.011", @@ -111914,7 +111776,6 @@ }, { "model": "evaluation.userprofile", - "pk": 395, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-02T13:45:22.575", @@ -111937,7 +111798,6 @@ }, { "model": "evaluation.userprofile", - "pk": 398, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:26.165", @@ -111960,7 +111820,6 @@ }, { "model": "evaluation.userprofile", - "pk": 405, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:32.926", @@ -111983,7 +111842,6 @@ }, { "model": "evaluation.userprofile", - "pk": 408, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:57:03.709", @@ -112006,7 +111864,6 @@ }, { "model": "evaluation.userprofile", - "pk": 409, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-04-12T12:16:07.304", @@ -112029,7 +111886,6 @@ }, { "model": "evaluation.userprofile", - "pk": 410, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:32.959", @@ -112052,7 +111908,6 @@ }, { "model": "evaluation.userprofile", - "pk": 414, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:32.995", @@ -112075,7 +111930,6 @@ }, { "model": "evaluation.userprofile", - "pk": 417, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:33.025", @@ -112098,7 +111952,6 @@ }, { "model": "evaluation.userprofile", - "pk": 418, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:33.032", @@ -112121,7 +111974,6 @@ }, { "model": "evaluation.userprofile", - "pk": 419, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T21:50:22.128", @@ -112144,7 +111996,6 @@ }, { "model": "evaluation.userprofile", - "pk": 421, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:33.063", @@ -112167,7 +112018,6 @@ }, { "model": "evaluation.userprofile", - "pk": 422, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:33.072", @@ -112190,7 +112040,6 @@ }, { "model": "evaluation.userprofile", - "pk": 423, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:33.077", @@ -112213,7 +112062,6 @@ }, { "model": "evaluation.userprofile", - "pk": 425, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:42.609", @@ -112236,7 +112084,6 @@ }, { "model": "evaluation.userprofile", - "pk": 432, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:02:54.709", @@ -112259,7 +112106,6 @@ }, { "model": "evaluation.userprofile", - "pk": 433, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:03:02.417", @@ -112282,7 +112128,6 @@ }, { "model": "evaluation.userprofile", - "pk": 438, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:03:17.355", @@ -112305,7 +112150,6 @@ }, { "model": "evaluation.userprofile", - "pk": 440, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:03:17.566", @@ -112328,7 +112172,6 @@ }, { "model": "evaluation.userprofile", - "pk": 445, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:03:25.901", @@ -112351,7 +112194,6 @@ }, { "model": "evaluation.userprofile", - "pk": 447, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:03:25.918", @@ -112374,7 +112216,6 @@ }, { "model": "evaluation.userprofile", - "pk": 448, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:03:25.924", @@ -112397,7 +112238,6 @@ }, { "model": "evaluation.userprofile", - "pk": 451, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:03:25.943", @@ -112420,7 +112260,6 @@ }, { "model": "evaluation.userprofile", - "pk": 452, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:03:25.949", @@ -112443,7 +112282,6 @@ }, { "model": "evaluation.userprofile", - "pk": 455, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:03:25.966", @@ -112466,7 +112304,6 @@ }, { "model": "evaluation.userprofile", - "pk": 459, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:03:25.989", @@ -112489,7 +112326,6 @@ }, { "model": "evaluation.userprofile", - "pk": 464, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-12-04T14:22:09.856", @@ -112512,7 +112348,6 @@ }, { "model": "evaluation.userprofile", - "pk": 468, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:04:02.375", @@ -112535,7 +112370,6 @@ }, { "model": "evaluation.userprofile", - "pk": 471, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-03T23:21:57.054", @@ -112558,7 +112392,6 @@ }, { "model": "evaluation.userprofile", - "pk": 475, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:04:27.433", @@ -112581,7 +112414,6 @@ }, { "model": "evaluation.userprofile", - "pk": 477, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:04:29.615", @@ -112604,7 +112436,6 @@ }, { "model": "evaluation.userprofile", - "pk": 482, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-15T15:52:42.444", @@ -112627,7 +112458,6 @@ }, { "model": "evaluation.userprofile", - "pk": 483, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:08:05.159", @@ -112650,7 +112480,6 @@ }, { "model": "evaluation.userprofile", - "pk": 484, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-06T21:12:21.200", @@ -112668,24 +112497,45 @@ "groups": [], "user_permissions": [], "delegates": [ - 120, - 74, - 280, - 395, - 61, - 33, - 1113, - 950, - 267, - 191, - 69 + [ + "diane.carlton" + ], + [ + "brian.david.ext" + ], + [ + "portia.hoffman" + ], + [ + "al.jean" + ], + [ + "eboni.maldonado.ext" + ], + [ + "latosha.moon" + ], + [ + "damion.navarrete" + ], + [ + "leola.parrott.ext" + ], + [ + "karine.prater" + ], + [ + "errol.simon" + ], + [ + "adriane.strain" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 485, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:08:07.813", @@ -112708,7 +112558,6 @@ }, { "model": "evaluation.userprofile", - "pk": 489, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:08:20.071", @@ -112731,7 +112580,6 @@ }, { "model": "evaluation.userprofile", - "pk": 490, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:08:21.867", @@ -112754,7 +112602,6 @@ }, { "model": "evaluation.userprofile", - "pk": 494, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:08:41.792", @@ -112777,7 +112624,6 @@ }, { "model": "evaluation.userprofile", - "pk": 495, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-31T10:25:58.389", @@ -112800,7 +112646,6 @@ }, { "model": "evaluation.userprofile", - "pk": 496, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:10:30.880", @@ -112823,7 +112668,6 @@ }, { "model": "evaluation.userprofile", - "pk": 497, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:10:30.898", @@ -112846,7 +112690,6 @@ }, { "model": "evaluation.userprofile", - "pk": 539, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-23T11:04:09.158", @@ -112869,7 +112712,6 @@ }, { "model": "evaluation.userprofile", - "pk": 540, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:10:49", @@ -112892,7 +112734,6 @@ }, { "model": "evaluation.userprofile", - "pk": 542, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-30T20:46:14.335", @@ -112915,7 +112756,6 @@ }, { "model": "evaluation.userprofile", - "pk": 543, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:14:46.010", @@ -112938,7 +112778,6 @@ }, { "model": "evaluation.userprofile", - "pk": 546, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T19:00:18.169", @@ -112961,7 +112800,6 @@ }, { "model": "evaluation.userprofile", - "pk": 547, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-29T17:02:17.999", @@ -112984,7 +112822,6 @@ }, { "model": "evaluation.userprofile", - "pk": 548, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-01T09:24:22.444", @@ -113007,7 +112844,6 @@ }, { "model": "evaluation.userprofile", - "pk": 549, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-31T09:09:22.294", @@ -113030,7 +112866,6 @@ }, { "model": "evaluation.userprofile", - "pk": 551, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:11:03.967", @@ -113053,7 +112888,6 @@ }, { "model": "evaluation.userprofile", - "pk": 552, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:11:03.972", @@ -113076,7 +112910,6 @@ }, { "model": "evaluation.userprofile", - "pk": 553, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:11:03.976", @@ -113099,7 +112932,6 @@ }, { "model": "evaluation.userprofile", - "pk": 555, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:11:03.986", @@ -113122,7 +112954,6 @@ }, { "model": "evaluation.userprofile", - "pk": 556, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:15:10.501", @@ -113145,7 +112976,6 @@ }, { "model": "evaluation.userprofile", - "pk": 557, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-31T14:08:23.222", @@ -113168,7 +112998,6 @@ }, { "model": "evaluation.userprofile", - "pk": 559, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T22:53:23.599", @@ -113191,7 +113020,6 @@ }, { "model": "evaluation.userprofile", - "pk": 560, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-23T19:14:56.765", @@ -113214,7 +113042,6 @@ }, { "model": "evaluation.userprofile", - "pk": 561, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-08T10:57:35.127", @@ -113237,7 +113064,6 @@ }, { "model": "evaluation.userprofile", - "pk": 562, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-03-13T21:08:59.664", @@ -113260,7 +113086,6 @@ }, { "model": "evaluation.userprofile", - "pk": 563, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-04T16:46:09.458", @@ -113283,7 +113108,6 @@ }, { "model": "evaluation.userprofile", - "pk": 564, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-12T11:50:50.547", @@ -113306,7 +113130,6 @@ }, { "model": "evaluation.userprofile", - "pk": 565, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-03-18T09:10:08.613", @@ -113329,7 +113152,6 @@ }, { "model": "evaluation.userprofile", - "pk": 566, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-30T21:11:33.049", @@ -113352,7 +113174,6 @@ }, { "model": "evaluation.userprofile", - "pk": 568, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-03-05T10:43:54.810", @@ -113375,7 +113196,6 @@ }, { "model": "evaluation.userprofile", - "pk": 569, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-30T22:50:33.025", @@ -113398,7 +113218,6 @@ }, { "model": "evaluation.userprofile", - "pk": 570, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-10T11:04:25.120", @@ -113421,7 +113240,6 @@ }, { "model": "evaluation.userprofile", - "pk": 571, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-22T16:35:15.443", @@ -113444,7 +113262,6 @@ }, { "model": "evaluation.userprofile", - "pk": 574, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-31T11:54:38.564", @@ -113467,7 +113284,6 @@ }, { "model": "evaluation.userprofile", - "pk": 576, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-09T11:14:42.030", @@ -113490,7 +113306,6 @@ }, { "model": "evaluation.userprofile", - "pk": 577, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-03-03T01:14:47.233", @@ -113513,7 +113328,6 @@ }, { "model": "evaluation.userprofile", - "pk": 578, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T15:31:17.944", @@ -113536,7 +113350,6 @@ }, { "model": "evaluation.userprofile", - "pk": 579, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-15T13:21:11.742", @@ -113559,7 +113372,6 @@ }, { "model": "evaluation.userprofile", - "pk": 580, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-28T23:41:42.360", @@ -113582,7 +113394,6 @@ }, { "model": "evaluation.userprofile", - "pk": 581, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-03-16T11:51:36.155", @@ -113605,7 +113416,6 @@ }, { "model": "evaluation.userprofile", - "pk": 582, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-08-21T08:50:38.747", @@ -113628,7 +113438,6 @@ }, { "model": "evaluation.userprofile", - "pk": 584, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-15T14:24:51.746", @@ -113651,7 +113460,6 @@ }, { "model": "evaluation.userprofile", - "pk": 586, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T15:46:39.710", @@ -113674,7 +113482,6 @@ }, { "model": "evaluation.userprofile", - "pk": 588, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-22T17:06:50.607", @@ -113697,7 +113504,6 @@ }, { "model": "evaluation.userprofile", - "pk": 590, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-29T14:53:17.250", @@ -113720,7 +113526,6 @@ }, { "model": "evaluation.userprofile", - "pk": 591, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-03T08:39:27.351", @@ -113743,7 +113548,6 @@ }, { "model": "evaluation.userprofile", - "pk": 592, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-10T21:35:49.219", @@ -113766,7 +113570,6 @@ }, { "model": "evaluation.userprofile", - "pk": 593, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-03-01T11:29:27.215", @@ -113789,7 +113592,6 @@ }, { "model": "evaluation.userprofile", - "pk": 594, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:11:04.174", @@ -113812,7 +113614,6 @@ }, { "model": "evaluation.userprofile", - "pk": 595, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:11:04.179", @@ -113835,7 +113636,6 @@ }, { "model": "evaluation.userprofile", - "pk": 596, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-08T14:44:45.671", @@ -113858,7 +113658,6 @@ }, { "model": "evaluation.userprofile", - "pk": 597, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:11:04.189", @@ -113881,7 +113680,6 @@ }, { "model": "evaluation.userprofile", - "pk": 600, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-18T20:19:53.113", @@ -113904,7 +113702,6 @@ }, { "model": "evaluation.userprofile", - "pk": 601, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-07T09:27:03.820", @@ -113927,7 +113724,6 @@ }, { "model": "evaluation.userprofile", - "pk": 602, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-23T12:07:32.181", @@ -113950,7 +113746,6 @@ }, { "model": "evaluation.userprofile", - "pk": 603, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:11:04.218", @@ -113973,7 +113768,6 @@ }, { "model": "evaluation.userprofile", - "pk": 604, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-23T15:52:47.145", @@ -113996,7 +113790,6 @@ }, { "model": "evaluation.userprofile", - "pk": 605, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-14T15:17:03.287", @@ -114019,7 +113812,6 @@ }, { "model": "evaluation.userprofile", - "pk": 606, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-02T10:12:40.654", @@ -114042,7 +113834,6 @@ }, { "model": "evaluation.userprofile", - "pk": 608, "fields": { "password": "pbkdf2_sha256$20000$mHyoq7kQaC2h$BmBzoRMsAHLhkgmY2SIn/GE7rt+XRp3QFvUegeIWdjk=", "last_login": "2015-11-08T14:34:36.328", @@ -114065,7 +113856,6 @@ }, { "model": "evaluation.userprofile", - "pk": 609, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:11:04.247", @@ -114088,7 +113878,6 @@ }, { "model": "evaluation.userprofile", - "pk": 611, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-03T08:40:18.189", @@ -114111,7 +113900,6 @@ }, { "model": "evaluation.userprofile", - "pk": 612, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-08T17:18:28.575", @@ -114134,7 +113922,6 @@ }, { "model": "evaluation.userprofile", - "pk": 613, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-15T13:31:11.152", @@ -114157,7 +113944,6 @@ }, { "model": "evaluation.userprofile", - "pk": 614, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T09:51:14.360", @@ -114180,7 +113966,6 @@ }, { "model": "evaluation.userprofile", - "pk": 615, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:11:04.276", @@ -114203,7 +113988,6 @@ }, { "model": "evaluation.userprofile", - "pk": 616, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-09T17:55:07.197", @@ -114226,7 +114010,6 @@ }, { "model": "evaluation.userprofile", - "pk": 619, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-17T22:57:20.798", @@ -114249,7 +114032,6 @@ }, { "model": "evaluation.userprofile", - "pk": 621, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T15:28:52.173", @@ -114272,7 +114054,6 @@ }, { "model": "evaluation.userprofile", - "pk": 623, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:11:04.314", @@ -114295,7 +114076,6 @@ }, { "model": "evaluation.userprofile", - "pk": 624, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-24T11:02:13.320", @@ -114318,7 +114098,6 @@ }, { "model": "evaluation.userprofile", - "pk": 625, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-28T22:37:57.999", @@ -114341,7 +114120,6 @@ }, { "model": "evaluation.userprofile", - "pk": 627, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-12T13:15:41.710", @@ -114364,7 +114142,6 @@ }, { "model": "evaluation.userprofile", - "pk": 628, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-09T09:38:31.796", @@ -114387,7 +114164,6 @@ }, { "model": "evaluation.userprofile", - "pk": 632, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:11:55.620", @@ -114410,7 +114186,6 @@ }, { "model": "evaluation.userprofile", - "pk": 633, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-16T14:17:37.158", @@ -114433,7 +114208,6 @@ }, { "model": "evaluation.userprofile", - "pk": 634, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:11:56.152", @@ -114456,7 +114230,6 @@ }, { "model": "evaluation.userprofile", - "pk": 635, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-29T06:38:28.861", @@ -114474,18 +114247,27 @@ "groups": [], "user_permissions": [], "delegates": [ - 2217, - 964, - 2139, - 249, - 60 + [ + "nicholle.boyce" + ], + [ + "heike.cartwright.ext" + ], + [ + "albina.dibble" + ], + [ + "sunni.hollingsworth" + ], + [ + "maegan.mccorkle" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 637, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:12:15.064", @@ -114508,7 +114290,6 @@ }, { "model": "evaluation.userprofile", - "pk": 639, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T17:12:19.069", @@ -114531,7 +114312,6 @@ }, { "model": "evaluation.userprofile", - "pk": 640, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-31T17:12:28.842", @@ -114554,7 +114334,6 @@ }, { "model": "evaluation.userprofile", - "pk": 641, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:45:25.645", @@ -114572,14 +114351,15 @@ "groups": [], "user_permissions": [], "delegates": [ - 995 + [ + "earline.hills" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 642, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-03-22T11:24:00.988", @@ -114602,7 +114382,6 @@ }, { "model": "evaluation.userprofile", - "pk": 643, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T11:39:18.036", @@ -114625,7 +114404,6 @@ }, { "model": "evaluation.userprofile", - "pk": 645, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:14:54.208", @@ -114648,7 +114426,6 @@ }, { "model": "evaluation.userprofile", - "pk": 648, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T15:36:47.045", @@ -114666,15 +114443,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 690, - 815 + [ + "january.copeland" + ], + [ + "evap" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 649, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-28T19:41:55.913", @@ -114697,7 +114477,6 @@ }, { "model": "evaluation.userprofile", - "pk": 650, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-05T11:52:28.356", @@ -114715,15 +114494,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 2217, - 249 + [ + "nicholle.boyce" + ], + [ + "sunni.hollingsworth" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 651, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T19:09:55.252", @@ -114746,7 +114528,6 @@ }, { "model": "evaluation.userprofile", - "pk": 653, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-27T11:09:57.023", @@ -114769,7 +114550,6 @@ }, { "model": "evaluation.userprofile", - "pk": 655, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:14:57.152", @@ -114792,7 +114572,6 @@ }, { "model": "evaluation.userprofile", - "pk": 656, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:14:57.456", @@ -114815,7 +114594,6 @@ }, { "model": "evaluation.userprofile", - "pk": 658, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-04-04T23:56:50.331", @@ -114838,7 +114616,6 @@ }, { "model": "evaluation.userprofile", - "pk": 659, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-04-19T00:03:33.953", @@ -114861,7 +114638,6 @@ }, { "model": "evaluation.userprofile", - "pk": 660, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-24T21:31:17.863", @@ -114884,7 +114660,6 @@ }, { "model": "evaluation.userprofile", - "pk": 661, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-11-08T07:57:04.396", @@ -114907,7 +114682,6 @@ }, { "model": "evaluation.userprofile", - "pk": 662, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-23T12:59:49.557", @@ -114930,7 +114704,6 @@ }, { "model": "evaluation.userprofile", - "pk": 663, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-23T23:20:10.602", @@ -114953,7 +114726,6 @@ }, { "model": "evaluation.userprofile", - "pk": 664, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-04-23T19:13:08.162", @@ -114976,7 +114748,6 @@ }, { "model": "evaluation.userprofile", - "pk": 665, "fields": { "password": "pbkdf2_sha256$20000$6wS8Pd0oAIrT$aE2U2a4TOHid6QIFpoUjJx6D3+qnFx30UmuyGKLg6us=", "last_login": "2015-11-08T14:33:36.461", @@ -114999,7 +114770,6 @@ }, { "model": "evaluation.userprofile", - "pk": 666, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T18:52:52.705", @@ -115022,7 +114792,6 @@ }, { "model": "evaluation.userprofile", - "pk": 667, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-30T20:01:40.471", @@ -115045,7 +114814,6 @@ }, { "model": "evaluation.userprofile", - "pk": 668, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-12-06T10:37:49.806", @@ -115068,7 +114836,6 @@ }, { "model": "evaluation.userprofile", - "pk": 669, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-17T12:00:14.509", @@ -115091,7 +114858,6 @@ }, { "model": "evaluation.userprofile", - "pk": 670, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-23T20:02:06.820", @@ -115114,7 +114880,6 @@ }, { "model": "evaluation.userprofile", - "pk": 671, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-07T14:33:20.588", @@ -115137,7 +114902,6 @@ }, { "model": "evaluation.userprofile", - "pk": 672, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-07T09:04:41.784", @@ -115160,7 +114924,6 @@ }, { "model": "evaluation.userprofile", - "pk": 673, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-31T07:16:47.118", @@ -115183,7 +114946,6 @@ }, { "model": "evaluation.userprofile", - "pk": 674, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-01T17:52:10", @@ -115206,7 +114968,6 @@ }, { "model": "evaluation.userprofile", - "pk": 675, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-10T21:44:14.222", @@ -115229,7 +114990,6 @@ }, { "model": "evaluation.userprofile", - "pk": 676, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-10T17:32:03.488", @@ -115252,7 +115012,6 @@ }, { "model": "evaluation.userprofile", - "pk": 677, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-10T09:09:08.220", @@ -115275,7 +115034,6 @@ }, { "model": "evaluation.userprofile", - "pk": 679, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-03T08:42:40.410", @@ -115298,7 +115056,6 @@ }, { "model": "evaluation.userprofile", - "pk": 680, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-22T16:34:45.660", @@ -115321,7 +115078,6 @@ }, { "model": "evaluation.userprofile", - "pk": 681, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-03-01T13:31:23.413", @@ -115344,7 +115100,6 @@ }, { "model": "evaluation.userprofile", - "pk": 682, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-04T08:22:23.153", @@ -115367,7 +115122,6 @@ }, { "model": "evaluation.userprofile", - "pk": 683, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-18T20:17:01.986", @@ -115390,7 +115144,6 @@ }, { "model": "evaluation.userprofile", - "pk": 684, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-23T16:05:42.773", @@ -115413,7 +115166,6 @@ }, { "model": "evaluation.userprofile", - "pk": 685, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-26T15:26:45.194", @@ -115436,7 +115188,6 @@ }, { "model": "evaluation.userprofile", - "pk": 686, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-02T21:46:20.458", @@ -115459,7 +115210,6 @@ }, { "model": "evaluation.userprofile", - "pk": 687, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-07T13:35:24.761", @@ -115482,7 +115232,6 @@ }, { "model": "evaluation.userprofile", - "pk": 688, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-08T14:53:12.763", @@ -115505,7 +115254,6 @@ }, { "model": "evaluation.userprofile", - "pk": 689, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-10T10:51:46.256", @@ -115528,7 +115276,6 @@ }, { "model": "evaluation.userprofile", - "pk": 690, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-10T15:35:41.696", @@ -115551,7 +115298,6 @@ }, { "model": "evaluation.userprofile", - "pk": 691, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-10T17:29:53.306", @@ -115574,7 +115320,6 @@ }, { "model": "evaluation.userprofile", - "pk": 692, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-22T22:49:57.122", @@ -115597,7 +115342,6 @@ }, { "model": "evaluation.userprofile", - "pk": 693, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-16T12:48:01.632", @@ -115620,7 +115364,6 @@ }, { "model": "evaluation.userprofile", - "pk": 695, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T16:02:57.758", @@ -115643,7 +115386,6 @@ }, { "model": "evaluation.userprofile", - "pk": 696, "fields": { "password": "pbkdf2_sha256$20000$MapdKDF22w2c$+BDIKGr3INVhRWV25Y5UBG9mP/pJOiKPvgF2UK/aclc=", "last_login": "2015-11-08T14:34:10.243", @@ -115666,7 +115408,6 @@ }, { "model": "evaluation.userprofile", - "pk": 697, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T15:44:18.632", @@ -115689,7 +115430,6 @@ }, { "model": "evaluation.userprofile", - "pk": 699, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:58:07.212", @@ -115712,7 +115452,6 @@ }, { "model": "evaluation.userprofile", - "pk": 700, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-26T09:17:18.823", @@ -115735,7 +115474,6 @@ }, { "model": "evaluation.userprofile", - "pk": 701, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-03T20:01:38.610", @@ -115758,7 +115496,6 @@ }, { "model": "evaluation.userprofile", - "pk": 702, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T16:02:54.654", @@ -115781,7 +115518,6 @@ }, { "model": "evaluation.userprofile", - "pk": 703, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-07T12:27:44.048", @@ -115804,7 +115540,6 @@ }, { "model": "evaluation.userprofile", - "pk": 704, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-08-04T13:52:06.334", @@ -115827,7 +115562,6 @@ }, { "model": "evaluation.userprofile", - "pk": 705, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T09:16:24.696", @@ -115850,7 +115584,6 @@ }, { "model": "evaluation.userprofile", - "pk": 706, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-06T15:47:03.050", @@ -115873,7 +115606,6 @@ }, { "model": "evaluation.userprofile", - "pk": 707, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-31T07:51:49.472", @@ -115896,7 +115628,6 @@ }, { "model": "evaluation.userprofile", - "pk": 708, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-29T01:24:56.050", @@ -115919,7 +115650,6 @@ }, { "model": "evaluation.userprofile", - "pk": 709, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-04-02T13:21:09.494", @@ -115942,7 +115672,6 @@ }, { "model": "evaluation.userprofile", - "pk": 710, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:15.568", @@ -115965,7 +115694,6 @@ }, { "model": "evaluation.userprofile", - "pk": 711, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-26T09:22:05.989", @@ -115988,7 +115716,6 @@ }, { "model": "evaluation.userprofile", - "pk": 712, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-19T12:01:49.760", @@ -116011,7 +115738,6 @@ }, { "model": "evaluation.userprofile", - "pk": 713, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T15:51:28.646", @@ -116034,7 +115760,6 @@ }, { "model": "evaluation.userprofile", - "pk": 714, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-03T08:46:48.712", @@ -116057,7 +115782,6 @@ }, { "model": "evaluation.userprofile", - "pk": 715, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-22T21:05:21.778", @@ -116080,7 +115804,6 @@ }, { "model": "evaluation.userprofile", - "pk": 716, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-06-05T22:28:25.156", @@ -116103,7 +115826,6 @@ }, { "model": "evaluation.userprofile", - "pk": 717, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-12-18T15:33:29.791", @@ -116126,7 +115848,6 @@ }, { "model": "evaluation.userprofile", - "pk": 718, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-28T09:53:37.453", @@ -116149,7 +115870,6 @@ }, { "model": "evaluation.userprofile", - "pk": 719, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-13T22:14:34.781", @@ -116172,7 +115892,6 @@ }, { "model": "evaluation.userprofile", - "pk": 720, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-04-18T23:15:45.143", @@ -116195,7 +115914,6 @@ }, { "model": "evaluation.userprofile", - "pk": 721, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:10:16.988", @@ -116218,7 +115936,6 @@ }, { "model": "evaluation.userprofile", - "pk": 722, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-22T10:17:57.715", @@ -116234,7 +115951,9 @@ "login_key_valid_until": null, "is_active": true, "groups": [ - 1 + [ + "Manager" + ] ], "user_permissions": [], "delegates": [], @@ -116243,7 +115962,6 @@ }, { "model": "evaluation.userprofile", - "pk": 723, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T17:51:10.181", @@ -116266,7 +115984,6 @@ }, { "model": "evaluation.userprofile", - "pk": 724, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-30T19:26:37.650", @@ -116289,7 +116006,6 @@ }, { "model": "evaluation.userprofile", - "pk": 725, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-06-06T14:51:06.563", @@ -116312,7 +116028,6 @@ }, { "model": "evaluation.userprofile", - "pk": 726, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T15:52:03.602", @@ -116335,7 +116050,6 @@ }, { "model": "evaluation.userprofile", - "pk": 727, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T15:13:24.342", @@ -116358,7 +116072,6 @@ }, { "model": "evaluation.userprofile", - "pk": 728, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-31T23:40:10.825", @@ -116381,7 +116094,6 @@ }, { "model": "evaluation.userprofile", - "pk": 729, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-07T10:07:30.747", @@ -116404,7 +116116,6 @@ }, { "model": "evaluation.userprofile", - "pk": 730, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:38:13.699", @@ -116427,7 +116138,6 @@ }, { "model": "evaluation.userprofile", - "pk": 731, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-29T20:02:26.052", @@ -116450,7 +116160,6 @@ }, { "model": "evaluation.userprofile", - "pk": 732, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-28T10:57:50.631", @@ -116473,7 +116182,6 @@ }, { "model": "evaluation.userprofile", - "pk": 733, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T18:23:27.426", @@ -116496,7 +116204,6 @@ }, { "model": "evaluation.userprofile", - "pk": 734, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-07T15:00:33.447", @@ -116519,7 +116226,6 @@ }, { "model": "evaluation.userprofile", - "pk": 735, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-05T13:08:04.066", @@ -116542,7 +116248,6 @@ }, { "model": "evaluation.userprofile", - "pk": 736, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-31T10:17:59.824", @@ -116565,7 +116270,6 @@ }, { "model": "evaluation.userprofile", - "pk": 737, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-22T16:02:09.366", @@ -116588,7 +116292,6 @@ }, { "model": "evaluation.userprofile", - "pk": 738, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:19.962", @@ -116611,7 +116314,6 @@ }, { "model": "evaluation.userprofile", - "pk": 739, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-24T11:19:54.509", @@ -116627,7 +116329,9 @@ "login_key_valid_until": null, "is_active": true, "groups": [ - 1 + [ + "Manager" + ] ], "user_permissions": [], "delegates": [], @@ -116636,7 +116340,6 @@ }, { "model": "evaluation.userprofile", - "pk": 740, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-22T16:03:48.200", @@ -116659,7 +116362,6 @@ }, { "model": "evaluation.userprofile", - "pk": 741, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:10:48.296", @@ -116682,7 +116384,6 @@ }, { "model": "evaluation.userprofile", - "pk": 742, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T17:14:43.745", @@ -116705,7 +116406,6 @@ }, { "model": "evaluation.userprofile", - "pk": 744, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T16:13:10.828", @@ -116728,7 +116428,6 @@ }, { "model": "evaluation.userprofile", - "pk": 747, "fields": { "password": "pbkdf2_sha256$20000$4b9M7Kv45ghM$CIqoizm3HLhMh3D1+xye5Jqr6LV7IyXGBWmwmsVW/js=", "last_login": "2015-11-08T12:44:39.899", @@ -116751,7 +116450,6 @@ }, { "model": "evaluation.userprofile", - "pk": 748, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T13:39:24.115", @@ -116774,7 +116472,6 @@ }, { "model": "evaluation.userprofile", - "pk": 749, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-04T00:53:53.335", @@ -116797,7 +116494,6 @@ }, { "model": "evaluation.userprofile", - "pk": 750, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-11T21:23:39.762", @@ -116820,7 +116516,6 @@ }, { "model": "evaluation.userprofile", - "pk": 751, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:22.152", @@ -116843,7 +116538,6 @@ }, { "model": "evaluation.userprofile", - "pk": 752, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-08T08:52:55.707", @@ -116866,7 +116560,6 @@ }, { "model": "evaluation.userprofile", - "pk": 753, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-04-22T16:37:57.331", @@ -116889,7 +116582,6 @@ }, { "model": "evaluation.userprofile", - "pk": 754, "fields": { "password": "pbkdf2_sha256$20000$cZek9pUwPWjz$HOcVeL8Q7himlOTBlPRkP79kJq5aGpXRkzQy6Y0Twok=", "last_login": "2015-11-08T14:33:55.842", @@ -116912,7 +116604,6 @@ }, { "model": "evaluation.userprofile", - "pk": 755, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T07:11:18.259", @@ -116935,7 +116626,6 @@ }, { "model": "evaluation.userprofile", - "pk": 756, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T09:08:53.814", @@ -116958,7 +116648,6 @@ }, { "model": "evaluation.userprofile", - "pk": 757, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-09T00:31:01.004", @@ -116981,7 +116670,6 @@ }, { "model": "evaluation.userprofile", - "pk": 758, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:23.295", @@ -117004,7 +116692,6 @@ }, { "model": "evaluation.userprofile", - "pk": 759, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-18T14:16:22.169", @@ -117027,7 +116714,6 @@ }, { "model": "evaluation.userprofile", - "pk": 760, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:23.516", @@ -117050,7 +116736,6 @@ }, { "model": "evaluation.userprofile", - "pk": 761, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-13T17:20:30.190", @@ -117073,7 +116758,6 @@ }, { "model": "evaluation.userprofile", - "pk": 762, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-08T14:57:57.136", @@ -117096,7 +116780,6 @@ }, { "model": "evaluation.userprofile", - "pk": 763, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-23T15:45:57.358", @@ -117119,7 +116802,6 @@ }, { "model": "evaluation.userprofile", - "pk": 764, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-14T13:04:03.554", @@ -117142,7 +116824,6 @@ }, { "model": "evaluation.userprofile", - "pk": 765, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-24T19:46:34.696", @@ -117165,7 +116846,6 @@ }, { "model": "evaluation.userprofile", - "pk": 766, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-13T16:29:16.534", @@ -117188,7 +116868,6 @@ }, { "model": "evaluation.userprofile", - "pk": 767, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-09T06:40:44.829", @@ -117211,7 +116890,6 @@ }, { "model": "evaluation.userprofile", - "pk": 768, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T07:30:47.334", @@ -117234,7 +116912,6 @@ }, { "model": "evaluation.userprofile", - "pk": 769, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-07T09:46:02.467", @@ -117257,7 +116934,6 @@ }, { "model": "evaluation.userprofile", - "pk": 770, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-23T13:52:32.364", @@ -117280,7 +116956,6 @@ }, { "model": "evaluation.userprofile", - "pk": 771, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:25.133", @@ -117303,7 +116978,6 @@ }, { "model": "evaluation.userprofile", - "pk": 772, "fields": { "password": "pbkdf2_sha256$20000$384ADW2W9sEE$79veVLxuZa1S88YegvqOkqo3waDDqHGGLQ8QcBrV6ZQ=", "last_login": "2015-11-08T12:46:25.140", @@ -117326,7 +117000,6 @@ }, { "model": "evaluation.userprofile", - "pk": 773, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-02T23:22:23.103", @@ -117349,7 +117022,6 @@ }, { "model": "evaluation.userprofile", - "pk": 774, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-13T19:06:29.724", @@ -117372,7 +117044,6 @@ }, { "model": "evaluation.userprofile", - "pk": 775, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-13T16:38:42.007", @@ -117395,7 +117066,6 @@ }, { "model": "evaluation.userprofile", - "pk": 776, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T23:52:16.190", @@ -117418,7 +117088,6 @@ }, { "model": "evaluation.userprofile", - "pk": 777, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:26.206", @@ -117441,7 +117110,6 @@ }, { "model": "evaluation.userprofile", - "pk": 778, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-14T12:48:26.729", @@ -117464,7 +117132,6 @@ }, { "model": "evaluation.userprofile", - "pk": 779, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-03T13:07:11.525", @@ -117487,7 +117154,6 @@ }, { "model": "evaluation.userprofile", - "pk": 780, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-03T03:36:51.513", @@ -117510,7 +117176,6 @@ }, { "model": "evaluation.userprofile", - "pk": 781, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-13T13:16:03.591", @@ -117533,7 +117198,6 @@ }, { "model": "evaluation.userprofile", - "pk": 782, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-08T09:16:34.608", @@ -117556,7 +117220,6 @@ }, { "model": "evaluation.userprofile", - "pk": 783, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-03-21T13:00:11.106", @@ -117579,7 +117242,6 @@ }, { "model": "evaluation.userprofile", - "pk": 784, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-09T15:15:23.092", @@ -117602,7 +117264,6 @@ }, { "model": "evaluation.userprofile", - "pk": 785, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-27T18:06:32.610", @@ -117614,8 +117275,8 @@ "last_name": "Dexter", "language": null, "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, + "login_key": 979985223, + "login_key_valid_until": "2020-05-25", "is_active": true, "groups": [], "user_permissions": [], @@ -117625,7 +117286,6 @@ }, { "model": "evaluation.userprofile", - "pk": 786, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T15:50:01.083", @@ -117648,7 +117308,6 @@ }, { "model": "evaluation.userprofile", - "pk": 787, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T17:33:46.339", @@ -117671,7 +117330,6 @@ }, { "model": "evaluation.userprofile", - "pk": 789, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T18:19:19.030", @@ -117694,7 +117352,6 @@ }, { "model": "evaluation.userprofile", - "pk": 790, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-18T23:57:13.157", @@ -117717,7 +117374,6 @@ }, { "model": "evaluation.userprofile", - "pk": 791, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T22:00:27.184", @@ -117729,8 +117385,8 @@ "last_name": "Campos", "language": null, "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, + "login_key": 1818483627, + "login_key_valid_until": "2020-05-25", "is_active": true, "groups": [], "user_permissions": [], @@ -117740,7 +117396,6 @@ }, { "model": "evaluation.userprofile", - "pk": 792, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T16:24:39.841", @@ -117763,7 +117418,6 @@ }, { "model": "evaluation.userprofile", - "pk": 793, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T18:52:46.917", @@ -117786,7 +117440,6 @@ }, { "model": "evaluation.userprofile", - "pk": 794, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:28.729", @@ -117809,7 +117462,6 @@ }, { "model": "evaluation.userprofile", - "pk": 795, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-14T21:01:56.880", @@ -117832,7 +117484,6 @@ }, { "model": "evaluation.userprofile", - "pk": 796, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:29.052", @@ -117855,7 +117506,6 @@ }, { "model": "evaluation.userprofile", - "pk": 797, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-07T10:48:32.960", @@ -117878,7 +117528,6 @@ }, { "model": "evaluation.userprofile", - "pk": 798, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-10T08:12:29.144", @@ -117901,7 +117550,6 @@ }, { "model": "evaluation.userprofile", - "pk": 799, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T10:37:17.338", @@ -117924,7 +117572,6 @@ }, { "model": "evaluation.userprofile", - "pk": 800, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-02T14:33:40.885", @@ -117947,7 +117594,6 @@ }, { "model": "evaluation.userprofile", - "pk": 801, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T22:38:17.335", @@ -117970,7 +117616,6 @@ }, { "model": "evaluation.userprofile", - "pk": 802, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:30.052", @@ -117993,7 +117638,6 @@ }, { "model": "evaluation.userprofile", - "pk": 803, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-16T10:08:18.664", @@ -118016,7 +117660,6 @@ }, { "model": "evaluation.userprofile", - "pk": 804, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-27T00:30:31.661", @@ -118039,7 +117682,6 @@ }, { "model": "evaluation.userprofile", - "pk": 805, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-31T11:01:26.720", @@ -118062,7 +117704,6 @@ }, { "model": "evaluation.userprofile", - "pk": 806, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T17:13:03.122", @@ -118085,7 +117726,6 @@ }, { "model": "evaluation.userprofile", - "pk": 807, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-16T09:25:19.080", @@ -118108,7 +117748,6 @@ }, { "model": "evaluation.userprofile", - "pk": 808, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-02T23:41:43.043", @@ -118131,7 +117770,6 @@ }, { "model": "evaluation.userprofile", - "pk": 809, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-02T23:35:57.142", @@ -118154,7 +117792,6 @@ }, { "model": "evaluation.userprofile", - "pk": 810, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T15:44:43.594", @@ -118177,7 +117814,6 @@ }, { "model": "evaluation.userprofile", - "pk": 811, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-30T19:32:35.293", @@ -118200,7 +117836,6 @@ }, { "model": "evaluation.userprofile", - "pk": 812, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-21T22:32:40.335", @@ -118216,7 +117851,9 @@ "login_key_valid_until": "2014-01-30", "is_active": true, "groups": [ - 1 + [ + "Manager" + ] ], "user_permissions": [], "delegates": [], @@ -118225,7 +117862,6 @@ }, { "model": "evaluation.userprofile", - "pk": 814, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-24T17:45:28.383", @@ -118248,24 +117884,27 @@ }, { "model": "evaluation.userprofile", - "pk": 815, "fields": { - "password": "pbkdf2_sha256$100000$85ZeSerVM5mq$dt/svaAHtppUjGUjKMmmJCDCwJj8QxR0NyBdtJJCSak=", - "last_login": "2019-02-02T16:15:06.324", + "password": "pbkdf2_sha256$150000$VhbGuFyU0NsF$LaOk+e0jHdSnobNBx3Zv9+/jeVxWIJuz2IuLVJVgtNk=", + "last_login": "2019-10-28T18:35:38.084", "is_superuser": true, "username": "evap", "email": "[email protected]", "title": "", "first_name": "", "last_name": "evap", - "language": "en", + "language": "de", "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": "2014-02-18", + "login_key": 530207530, + "login_key_valid_until": "2020-05-25", "is_active": true, "groups": [ - 1, - 3 + [ + "Manager" + ], + [ + "Grade publisher" + ] ], "user_permissions": [], "delegates": [], @@ -118274,7 +117913,6 @@ }, { "model": "evaluation.userprofile", - "pk": 817, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-13T19:29:30.798", @@ -118297,7 +117935,6 @@ }, { "model": "evaluation.userprofile", - "pk": 818, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T11:34:58.706", @@ -118320,7 +117957,6 @@ }, { "model": "evaluation.userprofile", - "pk": 819, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T18:38:17.897", @@ -118343,7 +117979,6 @@ }, { "model": "evaluation.userprofile", - "pk": 820, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T17:37:41.844", @@ -118366,7 +118001,6 @@ }, { "model": "evaluation.userprofile", - "pk": 821, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T22:28:33.235", @@ -118389,7 +118023,6 @@ }, { "model": "evaluation.userprofile", - "pk": 822, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T09:45:48.903", @@ -118412,7 +118045,6 @@ }, { "model": "evaluation.userprofile", - "pk": 823, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-02T23:21:27.886", @@ -118435,7 +118067,6 @@ }, { "model": "evaluation.userprofile", - "pk": 824, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:33.482", @@ -118458,7 +118089,6 @@ }, { "model": "evaluation.userprofile", - "pk": 825, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:57:14.045", @@ -118481,7 +118111,6 @@ }, { "model": "evaluation.userprofile", - "pk": 826, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T11:34:17.043", @@ -118504,7 +118133,6 @@ }, { "model": "evaluation.userprofile", - "pk": 827, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-16T17:25:00.935", @@ -118527,7 +118155,6 @@ }, { "model": "evaluation.userprofile", - "pk": 828, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-06-05T22:30:44.546", @@ -118550,7 +118177,6 @@ }, { "model": "evaluation.userprofile", - "pk": 829, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-03T19:59:46.473", @@ -118573,7 +118199,6 @@ }, { "model": "evaluation.userprofile", - "pk": 830, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-29T09:30:22.542", @@ -118596,7 +118221,6 @@ }, { "model": "evaluation.userprofile", - "pk": 831, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-15T08:53:31.336", @@ -118619,7 +118243,6 @@ }, { "model": "evaluation.userprofile", - "pk": 832, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-08T21:32:22.282", @@ -118631,8 +118254,8 @@ "last_name": "Cupp", "language": null, "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, + "login_key": 71453046, + "login_key_valid_until": "2020-05-25", "is_active": true, "groups": [], "user_permissions": [], @@ -118642,7 +118265,6 @@ }, { "model": "evaluation.userprofile", - "pk": 833, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-08T10:14:16.419", @@ -118665,7 +118287,6 @@ }, { "model": "evaluation.userprofile", - "pk": 834, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:35.089", @@ -118688,7 +118309,6 @@ }, { "model": "evaluation.userprofile", - "pk": 835, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-04-08T01:02:52.588", @@ -118711,7 +118331,6 @@ }, { "model": "evaluation.userprofile", - "pk": 836, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-02T23:35:20.957", @@ -118734,7 +118353,6 @@ }, { "model": "evaluation.userprofile", - "pk": 837, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-02T21:15:35.175", @@ -118757,7 +118375,6 @@ }, { "model": "evaluation.userprofile", - "pk": 838, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-09T09:04:36.560", @@ -118780,7 +118397,6 @@ }, { "model": "evaluation.userprofile", - "pk": 839, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-02T14:27:47.386", @@ -118803,7 +118419,6 @@ }, { "model": "evaluation.userprofile", - "pk": 840, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-03-21T11:54:08.463", @@ -118826,7 +118441,6 @@ }, { "model": "evaluation.userprofile", - "pk": 841, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-22T19:54:53.840", @@ -118849,7 +118463,6 @@ }, { "model": "evaluation.userprofile", - "pk": 842, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:36.002", @@ -118872,7 +118485,6 @@ }, { "model": "evaluation.userprofile", - "pk": 843, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T19:24:01.703", @@ -118895,7 +118507,6 @@ }, { "model": "evaluation.userprofile", - "pk": 844, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-09T13:53:50.181", @@ -118918,7 +118529,6 @@ }, { "model": "evaluation.userprofile", - "pk": 845, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T18:05:19.669", @@ -118941,7 +118551,6 @@ }, { "model": "evaluation.userprofile", - "pk": 847, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-14T12:02:37.909", @@ -118964,7 +118573,6 @@ }, { "model": "evaluation.userprofile", - "pk": 848, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-12T22:27:25.456", @@ -118987,7 +118595,6 @@ }, { "model": "evaluation.userprofile", - "pk": 849, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T08:04:17.109", @@ -119010,7 +118617,6 @@ }, { "model": "evaluation.userprofile", - "pk": 850, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T14:23:10.645", @@ -119033,7 +118639,6 @@ }, { "model": "evaluation.userprofile", - "pk": 851, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:10:47.369", @@ -119056,7 +118661,6 @@ }, { "model": "evaluation.userprofile", - "pk": 852, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-08T22:33:33.258", @@ -119079,7 +118683,6 @@ }, { "model": "evaluation.userprofile", - "pk": 853, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T19:32:35.827", @@ -119102,7 +118705,6 @@ }, { "model": "evaluation.userprofile", - "pk": 854, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T23:00:08.483", @@ -119125,7 +118727,6 @@ }, { "model": "evaluation.userprofile", - "pk": 855, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-10T01:19:22.774", @@ -119148,7 +118749,6 @@ }, { "model": "evaluation.userprofile", - "pk": 856, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:37.745", @@ -119171,7 +118771,6 @@ }, { "model": "evaluation.userprofile", - "pk": 857, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T22:57:31.055", @@ -119194,7 +118793,6 @@ }, { "model": "evaluation.userprofile", - "pk": 858, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-15T13:29:47.113", @@ -119217,7 +118815,6 @@ }, { "model": "evaluation.userprofile", - "pk": 859, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T16:01:26.112", @@ -119240,7 +118837,6 @@ }, { "model": "evaluation.userprofile", - "pk": 860, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-08T13:00:15.973", @@ -119263,7 +118859,6 @@ }, { "model": "evaluation.userprofile", - "pk": 861, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T09:55:52.502", @@ -119286,7 +118881,6 @@ }, { "model": "evaluation.userprofile", - "pk": 862, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-26T00:55:06.746", @@ -119309,7 +118903,6 @@ }, { "model": "evaluation.userprofile", - "pk": 863, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:38.662", @@ -119332,7 +118925,6 @@ }, { "model": "evaluation.userprofile", - "pk": 864, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T15:11:57.827", @@ -119355,7 +118947,6 @@ }, { "model": "evaluation.userprofile", - "pk": 865, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T04:13:23.195", @@ -119378,7 +118969,6 @@ }, { "model": "evaluation.userprofile", - "pk": 866, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T15:40:22.025", @@ -119401,7 +118991,6 @@ }, { "model": "evaluation.userprofile", - "pk": 867, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T22:14:37.652", @@ -119424,7 +119013,6 @@ }, { "model": "evaluation.userprofile", - "pk": 868, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-01T14:07:23.055", @@ -119447,7 +119035,6 @@ }, { "model": "evaluation.userprofile", - "pk": 869, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:39.521", @@ -119470,7 +119057,6 @@ }, { "model": "evaluation.userprofile", - "pk": 870, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-05T11:21:24.794", @@ -119482,8 +119068,8 @@ "last_name": "Larry", "language": null, "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, + "login_key": 1209312068, + "login_key_valid_until": "2020-05-25", "is_active": true, "groups": [], "user_permissions": [], @@ -119493,7 +119079,6 @@ }, { "model": "evaluation.userprofile", - "pk": 871, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-06-06T12:59:03.780", @@ -119516,7 +119101,6 @@ }, { "model": "evaluation.userprofile", - "pk": 872, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T09:22:36.534", @@ -119539,7 +119123,6 @@ }, { "model": "evaluation.userprofile", - "pk": 873, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-28T10:55:54.200", @@ -119562,7 +119145,6 @@ }, { "model": "evaluation.userprofile", - "pk": 874, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-03T20:24:50.005", @@ -119585,7 +119167,6 @@ }, { "model": "evaluation.userprofile", - "pk": 875, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T15:43:54.085", @@ -119608,7 +119189,6 @@ }, { "model": "evaluation.userprofile", - "pk": 876, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-09T13:48:54.771", @@ -119631,7 +119211,6 @@ }, { "model": "evaluation.userprofile", - "pk": 877, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T16:23:44.702", @@ -119654,7 +119233,6 @@ }, { "model": "evaluation.userprofile", - "pk": 878, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-02T21:38:33.259", @@ -119677,7 +119255,6 @@ }, { "model": "evaluation.userprofile", - "pk": 879, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-08T11:46:48.358", @@ -119700,7 +119277,6 @@ }, { "model": "evaluation.userprofile", - "pk": 880, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-04-19T09:22:46.335", @@ -119723,7 +119299,6 @@ }, { "model": "evaluation.userprofile", - "pk": 881, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-27T10:03:37.557", @@ -119746,7 +119321,6 @@ }, { "model": "evaluation.userprofile", - "pk": 882, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T17:13:51.600", @@ -119769,7 +119343,6 @@ }, { "model": "evaluation.userprofile", - "pk": 883, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-20T19:33:27.473", @@ -119792,7 +119365,6 @@ }, { "model": "evaluation.userprofile", - "pk": 884, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T17:38:52.131", @@ -119815,7 +119387,6 @@ }, { "model": "evaluation.userprofile", - "pk": 885, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-21T09:42:31.361", @@ -119838,7 +119409,6 @@ }, { "model": "evaluation.userprofile", - "pk": 886, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-03T07:56:35.761", @@ -119861,7 +119431,6 @@ }, { "model": "evaluation.userprofile", - "pk": 887, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T19:51:46.531", @@ -119884,7 +119453,6 @@ }, { "model": "evaluation.userprofile", - "pk": 888, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-12T10:38:35.165", @@ -119907,7 +119475,6 @@ }, { "model": "evaluation.userprofile", - "pk": 889, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-30T20:09:43.194", @@ -119930,7 +119497,6 @@ }, { "model": "evaluation.userprofile", - "pk": 891, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-04-09T20:28:37.106", @@ -119953,7 +119519,6 @@ }, { "model": "evaluation.userprofile", - "pk": 892, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-02T23:36:09.667", @@ -119976,7 +119541,6 @@ }, { "model": "evaluation.userprofile", - "pk": 893, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-04-18T23:16:40.888", @@ -119999,7 +119563,6 @@ }, { "model": "evaluation.userprofile", - "pk": 894, "fields": { "password": "pbkdf2_sha256$20000$MFOXT3KjBzEo$ornMmvvGJgg0lbDMFL6uUEg5ejJLO98Tz6DWT4RLCY4=", "last_login": "2015-11-08T12:43:50.016", @@ -120022,7 +119585,6 @@ }, { "model": "evaluation.userprofile", - "pk": 895, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-10T21:39:20.259", @@ -120045,7 +119607,6 @@ }, { "model": "evaluation.userprofile", - "pk": 896, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T04:35:10.895", @@ -120068,7 +119629,6 @@ }, { "model": "evaluation.userprofile", - "pk": 897, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T15:12:13.962", @@ -120091,7 +119651,6 @@ }, { "model": "evaluation.userprofile", - "pk": 898, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-03-31T14:12:32.669", @@ -120114,7 +119673,6 @@ }, { "model": "evaluation.userprofile", - "pk": 899, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:43.664", @@ -120137,7 +119695,6 @@ }, { "model": "evaluation.userprofile", - "pk": 900, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-02T23:43:52.409", @@ -120160,7 +119717,6 @@ }, { "model": "evaluation.userprofile", - "pk": 901, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-14T12:41:41.729", @@ -120183,7 +119739,6 @@ }, { "model": "evaluation.userprofile", - "pk": 903, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-04T13:50:04.488", @@ -120206,7 +119761,6 @@ }, { "model": "evaluation.userprofile", - "pk": 904, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-03T09:08:27.634", @@ -120229,7 +119783,6 @@ }, { "model": "evaluation.userprofile", - "pk": 905, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-09T11:18:07.872", @@ -120252,7 +119805,6 @@ }, { "model": "evaluation.userprofile", - "pk": 906, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T08:46:53.510", @@ -120275,7 +119827,6 @@ }, { "model": "evaluation.userprofile", - "pk": 907, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T15:44:02.529", @@ -120298,7 +119849,6 @@ }, { "model": "evaluation.userprofile", - "pk": 908, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-19T11:39:34.560", @@ -120321,7 +119871,6 @@ }, { "model": "evaluation.userprofile", - "pk": 911, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T22:53:13.150", @@ -120344,7 +119893,6 @@ }, { "model": "evaluation.userprofile", - "pk": 912, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-02T17:55:12.113", @@ -120367,7 +119915,6 @@ }, { "model": "evaluation.userprofile", - "pk": 913, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-13T06:53:56.588", @@ -120390,7 +119937,6 @@ }, { "model": "evaluation.userprofile", - "pk": 914, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-02T23:23:14.748", @@ -120413,7 +119959,6 @@ }, { "model": "evaluation.userprofile", - "pk": 915, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T15:45:51.110", @@ -120436,7 +119981,6 @@ }, { "model": "evaluation.userprofile", - "pk": 916, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-30T20:25:28.519", @@ -120459,7 +120003,6 @@ }, { "model": "evaluation.userprofile", - "pk": 917, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-03-26T09:54:32.616", @@ -120482,7 +120025,6 @@ }, { "model": "evaluation.userprofile", - "pk": 918, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-31T15:59:01.922", @@ -120505,7 +120047,6 @@ }, { "model": "evaluation.userprofile", - "pk": 919, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-16T08:44:29.251", @@ -120528,7 +120069,6 @@ }, { "model": "evaluation.userprofile", - "pk": 920, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T15:50:28.800", @@ -120551,7 +120091,6 @@ }, { "model": "evaluation.userprofile", - "pk": 921, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-18T18:15:47.263", @@ -120574,7 +120113,6 @@ }, { "model": "evaluation.userprofile", - "pk": 922, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-08T10:31:06.071", @@ -120597,7 +120135,6 @@ }, { "model": "evaluation.userprofile", - "pk": 923, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-24T15:18:05.982", @@ -120620,7 +120157,6 @@ }, { "model": "evaluation.userprofile", - "pk": 924, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-07T18:19:39.897", @@ -120632,8 +120168,8 @@ "last_name": "Lu", "language": null, "is_proxy_user": false, - "login_key": null, - "login_key_valid_until": null, + "login_key": 679371237, + "login_key_valid_until": "2020-05-25", "is_active": true, "groups": [], "user_permissions": [], @@ -120643,7 +120179,6 @@ }, { "model": "evaluation.userprofile", - "pk": 925, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-08T12:04:40.513", @@ -120666,7 +120201,6 @@ }, { "model": "evaluation.userprofile", - "pk": 926, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-09T09:57:42.808", @@ -120689,7 +120223,6 @@ }, { "model": "evaluation.userprofile", - "pk": 927, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-18T19:27:06.576", @@ -120712,7 +120245,6 @@ }, { "model": "evaluation.userprofile", - "pk": 928, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T12:05:46.877", @@ -120735,7 +120267,6 @@ }, { "model": "evaluation.userprofile", - "pk": 929, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T23:32:30.882", @@ -120758,7 +120289,6 @@ }, { "model": "evaluation.userprofile", - "pk": 930, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-02T14:15:40.526", @@ -120781,7 +120311,6 @@ }, { "model": "evaluation.userprofile", - "pk": 931, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T10:25:52.856", @@ -120804,7 +120333,6 @@ }, { "model": "evaluation.userprofile", - "pk": 932, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T22:58:19.362", @@ -120827,7 +120355,6 @@ }, { "model": "evaluation.userprofile", - "pk": 933, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T16:26:00.969", @@ -120850,7 +120377,6 @@ }, { "model": "evaluation.userprofile", - "pk": 934, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-16T15:23:28.720", @@ -120873,7 +120399,6 @@ }, { "model": "evaluation.userprofile", - "pk": 935, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-10T09:51:24.472", @@ -120896,7 +120421,6 @@ }, { "model": "evaluation.userprofile", - "pk": 936, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-14T11:11:38.104", @@ -120914,15 +120438,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 2217, - 249 + [ + "nicholle.boyce" + ], + [ + "sunni.hollingsworth" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 937, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-31T09:32:31.564", @@ -120940,15 +120467,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 2217, - 249 + [ + "nicholle.boyce" + ], + [ + "sunni.hollingsworth" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 939, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-19T13:13:58.523", @@ -120971,7 +120501,6 @@ }, { "model": "evaluation.userprofile", - "pk": 940, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-07T16:04:02.080", @@ -120994,7 +120523,6 @@ }, { "model": "evaluation.userprofile", - "pk": 942, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-24T01:27:24.401", @@ -121017,7 +120545,6 @@ }, { "model": "evaluation.userprofile", - "pk": 944, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-19T00:10:32.552", @@ -121040,7 +120567,6 @@ }, { "model": "evaluation.userprofile", - "pk": 945, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-12-04T15:15:17.438", @@ -121063,7 +120589,6 @@ }, { "model": "evaluation.userprofile", - "pk": 946, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-19T00:10:54.570", @@ -121086,7 +120611,6 @@ }, { "model": "evaluation.userprofile", - "pk": 947, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-19T00:11:03.516", @@ -121109,7 +120633,6 @@ }, { "model": "evaluation.userprofile", - "pk": 949, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-19T00:11:26.664", @@ -121132,7 +120655,6 @@ }, { "model": "evaluation.userprofile", - "pk": 950, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-23T16:35:49.553", @@ -121155,7 +120677,6 @@ }, { "model": "evaluation.userprofile", - "pk": 957, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-19T00:11:27.520", @@ -121178,7 +120699,6 @@ }, { "model": "evaluation.userprofile", - "pk": 958, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-19T00:11:55.671", @@ -121201,7 +120721,6 @@ }, { "model": "evaluation.userprofile", - "pk": 959, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-19T00:11:57.518", @@ -121224,7 +120743,6 @@ }, { "model": "evaluation.userprofile", - "pk": 963, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-19T11:28:43.154", @@ -121247,7 +120765,6 @@ }, { "model": "evaluation.userprofile", - "pk": 964, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-26T12:35:59.514", @@ -121270,7 +120787,6 @@ }, { "model": "evaluation.userprofile", - "pk": 965, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-24T07:50:44.858", @@ -121293,7 +120809,6 @@ }, { "model": "evaluation.userprofile", - "pk": 970, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-24T23:20:57.209", @@ -121316,7 +120831,6 @@ }, { "model": "evaluation.userprofile", - "pk": 972, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-24T23:22:51.108", @@ -121339,7 +120853,6 @@ }, { "model": "evaluation.userprofile", - "pk": 973, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-24T23:23:39.726", @@ -121362,7 +120875,6 @@ }, { "model": "evaluation.userprofile", - "pk": 974, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-24T23:24:23.965", @@ -121385,7 +120897,6 @@ }, { "model": "evaluation.userprofile", - "pk": 975, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T14:31:54.681", @@ -121408,7 +120919,6 @@ }, { "model": "evaluation.userprofile", - "pk": 977, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-28T15:56:55.138", @@ -121431,7 +120941,6 @@ }, { "model": "evaluation.userprofile", - "pk": 980, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T21:38:05.492", @@ -121454,7 +120963,6 @@ }, { "model": "evaluation.userprofile", - "pk": 982, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:11:41.668", @@ -121477,7 +120985,6 @@ }, { "model": "evaluation.userprofile", - "pk": 984, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-30T13:29:34.870", @@ -121500,7 +121007,6 @@ }, { "model": "evaluation.userprofile", - "pk": 985, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-08-07T13:47:19.134", @@ -121523,7 +121029,6 @@ }, { "model": "evaluation.userprofile", - "pk": 986, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-30T13:33:16.547", @@ -121546,7 +121051,6 @@ }, { "model": "evaluation.userprofile", - "pk": 987, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-02T13:45:41.652", @@ -121569,7 +121073,6 @@ }, { "model": "evaluation.userprofile", - "pk": 989, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-30T14:36:05.698", @@ -121592,7 +121095,6 @@ }, { "model": "evaluation.userprofile", - "pk": 990, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-30T17:29:08.879", @@ -121615,7 +121117,6 @@ }, { "model": "evaluation.userprofile", - "pk": 991, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-30T17:29:50.227", @@ -121638,7 +121139,6 @@ }, { "model": "evaluation.userprofile", - "pk": 993, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-14T19:21:46.836", @@ -121656,15 +121156,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 2217, - 249 + [ + "nicholle.boyce" + ], + [ + "sunni.hollingsworth" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 994, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-30T17:49:45.055", @@ -121682,15 +121185,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 2217, - 249 + [ + "nicholle.boyce" + ], + [ + "sunni.hollingsworth" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 995, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-17T15:50:57.846", @@ -121713,7 +121219,6 @@ }, { "model": "evaluation.userprofile", - "pk": 996, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-30T18:19:49.165", @@ -121736,7 +121241,6 @@ }, { "model": "evaluation.userprofile", - "pk": 997, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-01-30T18:21:25.262", @@ -121759,7 +121263,6 @@ }, { "model": "evaluation.userprofile", - "pk": 998, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-02T15:42:00.154", @@ -121782,7 +121285,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1001, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-03T20:52:32.693", @@ -121805,7 +121307,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1002, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-31T14:19:19.845", @@ -121828,7 +121329,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1003, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-07T18:59:05.750", @@ -121851,7 +121351,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1004, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-12T15:22:35.949", @@ -121874,7 +121373,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1005, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-02T17:40:40.503", @@ -121892,14 +121390,15 @@ "groups": [], "user_permissions": [], "delegates": [ - 249 + [ + "sunni.hollingsworth" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 1008, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-04T02:06:16.918", @@ -121922,7 +121421,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1009, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-16T21:53:50.281", @@ -121940,15 +121438,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 641, - 995 + [ + "sandee.coker" + ], + [ + "earline.hills" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 1010, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-16T21:57:02.408", @@ -121966,15 +121467,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 641, - 995 + [ + "sandee.coker" + ], + [ + "earline.hills" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 1011, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-02-22T21:55:05.249", @@ -121992,14 +121496,15 @@ "groups": [], "user_permissions": [], "delegates": [ - 323 + [ + "jolene.squires" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 1013, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-03-29T21:50:58.578", @@ -122022,7 +121527,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1015, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-04-12T13:29:11.268", @@ -122045,7 +121549,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1016, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-24T12:21:45.796", @@ -122068,7 +121571,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1071, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-30T13:15:32.640", @@ -122091,7 +121593,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1072, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T11:42:00.270", @@ -122114,7 +121615,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1073, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-06T08:48:55.684", @@ -122137,7 +121637,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1075, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T15:58:46.999", @@ -122160,7 +121659,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1078, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-08T05:31:44.362", @@ -122183,7 +121681,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1079, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-27T16:53:03.280", @@ -122206,7 +121703,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1080, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-30T19:30:41.205", @@ -122229,7 +121725,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1081, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-13T22:38:29.694", @@ -122252,7 +121747,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1082, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-03-01T18:13:25.488", @@ -122275,7 +121769,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1084, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-19T13:04:41.845", @@ -122298,7 +121791,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1085, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-18T21:18:16.805", @@ -122321,7 +121813,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1086, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-23T11:12:45.731", @@ -122344,7 +121835,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1087, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-06-14T15:20:40.001", @@ -122367,7 +121857,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1088, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T17:31:47.858", @@ -122390,7 +121879,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1089, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T14:07:52.087", @@ -122413,7 +121901,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1090, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-06-14T15:20:49.050", @@ -122436,7 +121923,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1091, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-06-14T15:20:50.004", @@ -122459,7 +121945,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1094, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-22T09:30:52.994", @@ -122482,7 +121967,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1095, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T14:12:14.720", @@ -122505,7 +121989,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1098, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-22T18:17:10.843", @@ -122528,7 +122011,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1099, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-18T20:33:05.713", @@ -122551,7 +122033,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1100, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-12T08:45:05.211", @@ -122574,7 +122055,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1101, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-30T19:48:34.747", @@ -122597,7 +122077,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1102, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-02T23:20:00.628", @@ -122620,7 +122099,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1103, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T04:24:00.981", @@ -122643,7 +122121,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1104, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-12-04T14:46:31.919", @@ -122666,7 +122143,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1105, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T22:26:24.836", @@ -122684,15 +122160,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 2217, - 249 + [ + "nicholle.boyce" + ], + [ + "sunni.hollingsworth" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 1108, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-02T22:47:27.656", @@ -122715,7 +122194,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1109, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-02T22:51:15.718", @@ -122738,7 +122216,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1110, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-03T12:07:14.680", @@ -122761,7 +122238,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1111, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-03T14:52:59.325", @@ -122784,7 +122260,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1113, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:13:03.554", @@ -122807,7 +122282,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1115, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-04T20:04:49.118", @@ -122830,7 +122304,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1117, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-22T18:04:27.203", @@ -122853,7 +122326,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1119, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-06T11:37:12.107", @@ -122876,7 +122348,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1120, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-31T08:22:33.176", @@ -122899,7 +122370,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1124, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-13T11:22:23.383", @@ -122922,7 +122392,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1125, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-31T09:47:57.955", @@ -122945,7 +122414,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1127, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-06T16:11:15.271", @@ -122968,7 +122436,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1129, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-06T19:50:24.593", @@ -122991,7 +122458,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1134, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-31T09:32:18.046", @@ -123014,7 +122480,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1135, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-11-09T11:15:50.710", @@ -123037,7 +122502,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1136, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-10T08:02:50.234", @@ -123060,7 +122524,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1137, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-07-10T16:46:58.146", @@ -123083,7 +122546,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1139, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-04T12:58:12.400", @@ -123106,7 +122568,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1140, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-05-30T20:13:22.114", @@ -123129,7 +122590,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1141, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-02T13:52:41.361", @@ -123152,7 +122612,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1142, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-31T06:46:14.889", @@ -123175,7 +122634,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1143, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T09:02:36.659", @@ -123198,7 +122656,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1144, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T12:15:33.812", @@ -123221,7 +122678,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1146, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T19:10:20.421", @@ -123244,7 +122700,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1147, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-11-23T16:47:14.138", @@ -123267,7 +122722,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1148, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T16:16:31.182", @@ -123290,7 +122744,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1149, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2012-12-06T09:21:00.448", @@ -123313,7 +122766,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1151, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T18:16:03.480", @@ -123336,7 +122788,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1152, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-02T18:13:54.281", @@ -123352,7 +122803,9 @@ "login_key_valid_until": null, "is_active": true, "groups": [ - 1 + [ + "Manager" + ] ], "user_permissions": [], "delegates": [], @@ -123361,7 +122814,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1153, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-05T17:53:05.114", @@ -123384,7 +122836,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1154, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-07T19:58:48.906", @@ -123407,7 +122858,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1155, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-11T03:06:26.933", @@ -123430,7 +122880,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1531, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T15:44:16.550", @@ -123453,7 +122902,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1838, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-15T13:08:05.904", @@ -123476,7 +122924,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1839, "fields": { "password": "pbkdf2_sha256$20000$BwRiEGfjTCC7$RYDeoLBzk8Xj1FD9F9v2UgVHWIlGu1Hu9CyuucoiCMY=", "last_login": "2015-11-08T14:35:04.569", @@ -123499,7 +122946,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1840, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-24T01:20:24.674", @@ -123522,7 +122968,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1841, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-01-24T13:58:28.365", @@ -123545,7 +122990,6 @@ }, { "model": "evaluation.userprofile", - "pk": 1842, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-10T01:29:54.008", @@ -123568,7 +123012,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2012, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T23:18:10.128", @@ -123591,7 +123034,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2013, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-05T17:14:09.097", @@ -123614,7 +123056,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2014, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-31T15:35:19.400", @@ -123637,7 +123078,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2015, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-01-24T16:50:59.640", @@ -123660,7 +123100,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2016, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-01-24T16:50:59.670", @@ -123683,7 +123122,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2017, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T21:52:24.803", @@ -123706,7 +123144,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2018, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-07T09:46:01.104", @@ -123729,7 +123166,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2019, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T15:37:15.662", @@ -123752,7 +123188,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2020, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-01T00:01:58.948", @@ -123775,7 +123210,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2021, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-09T15:22:37.841", @@ -123798,7 +123232,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2022, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-08T16:59:39.507", @@ -123821,7 +123254,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2023, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T17:00:26.651", @@ -123844,7 +123276,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2024, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-02T14:16:44.510", @@ -123867,7 +123298,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2025, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-19T01:55:35.901", @@ -123890,7 +123320,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2026, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-05T18:39:46.512", @@ -123913,7 +123342,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2027, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-12T09:10:02.075", @@ -123936,7 +123364,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2028, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T22:24:32.499", @@ -123959,7 +123386,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2029, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-13T21:45:40.702", @@ -123982,7 +123408,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2030, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-14T23:53:58.898", @@ -124005,7 +123430,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2031, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T23:11:01.948", @@ -124028,7 +123452,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2032, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-08T09:39:25.200", @@ -124051,7 +123474,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2033, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-24T01:55:55.757", @@ -124074,7 +123496,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2034, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T16:31:05.952", @@ -124097,7 +123518,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2035, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-07T10:56:47.547", @@ -124120,7 +123540,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2036, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T22:55:31.384", @@ -124143,7 +123562,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2037, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T17:41:35.461", @@ -124166,7 +123584,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2038, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T19:39:30.929", @@ -124189,7 +123606,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2039, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T23:02:51.134", @@ -124212,7 +123628,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2040, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T15:56:56.046", @@ -124235,7 +123650,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2041, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-03T00:24:41.228", @@ -124258,7 +123672,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2042, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-09T10:24:28.384", @@ -124281,7 +123694,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2043, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-01-24T16:51:00.749", @@ -124304,7 +123716,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2044, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-02T14:11:53.731", @@ -124327,7 +123738,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2045, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T14:51:13.092", @@ -124350,7 +123760,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2046, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T11:33:59.881", @@ -124373,7 +123782,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2047, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-10T15:28:22.492", @@ -124396,7 +123804,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2048, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-31T10:43:28.497", @@ -124419,7 +123826,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2049, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-04T13:52:43.099", @@ -124442,7 +123848,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2050, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T12:51:48.135", @@ -124465,7 +123870,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2051, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-01T17:54:29.760", @@ -124488,7 +123892,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2052, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T15:09:14.183", @@ -124511,7 +123914,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2053, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-07T11:36:11.243", @@ -124534,7 +123936,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2054, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-24T14:49:39.646", @@ -124557,7 +123958,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2055, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T17:13:30.103", @@ -124580,7 +123980,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2056, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-05T17:14:15.435", @@ -124603,7 +124002,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2057, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T17:20:02.891", @@ -124626,7 +124024,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2058, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-05T18:13:41.775", @@ -124649,7 +124046,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2059, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-12T11:08:20.214", @@ -124672,7 +124068,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2060, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-07T21:55:50.678", @@ -124695,7 +124090,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2061, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-19T03:13:00.219", @@ -124718,7 +124112,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2062, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-09T00:01:19.137", @@ -124741,7 +124134,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2063, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-08T23:54:56.905", @@ -124764,7 +124156,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2064, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-13T15:37:07.066", @@ -124787,7 +124178,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2065, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-09T07:10:29.849", @@ -124810,7 +124200,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2066, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-09T07:16:09.848", @@ -124833,7 +124222,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2067, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-09T15:39:12.208", @@ -124856,7 +124244,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2068, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T15:52:06.542", @@ -124879,7 +124266,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2069, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T20:18:44.343", @@ -124902,7 +124288,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2070, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-24T14:54:21.051", @@ -124925,7 +124310,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2071, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T16:26:07.007", @@ -124948,7 +124332,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2072, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T19:35:24.016", @@ -124971,7 +124354,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2073, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T17:07:50.308", @@ -124994,7 +124376,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2074, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-05T17:44:05.374", @@ -125017,7 +124398,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2075, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-05T19:42:28.586", @@ -125040,7 +124420,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2076, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-08T23:58:00.245", @@ -125063,7 +124442,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2078, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T23:32:32.440", @@ -125086,7 +124464,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2079, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:31:55.267", @@ -125109,7 +124486,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2086, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-13T09:17:33.402", @@ -125128,14 +124504,17 @@ "user_permissions": [], "delegates": [], "cc_users": [ - 2217, - 249 + [ + "nicholle.boyce" + ], + [ + "sunni.hollingsworth" + ] ] } }, { "model": "evaluation.userprofile", - "pk": 2087, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-01-24T16:51:30.301", @@ -125158,7 +124537,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2089, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-07T22:00:32.077", @@ -125181,7 +124559,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2091, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T18:56:39.344", @@ -125204,7 +124581,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2093, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-08T08:21:14.072", @@ -125227,7 +124603,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2094, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T23:21:18.491", @@ -125250,7 +124625,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2095, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-31T08:23:30.741", @@ -125273,7 +124647,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2097, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-10T10:17:06.005", @@ -125296,7 +124669,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2098, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-06T13:16:27.116", @@ -125319,7 +124691,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2099, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-03T00:09:16.700", @@ -125342,7 +124713,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2100, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-03-01T10:52:08.996", @@ -125365,7 +124735,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2101, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:14:04.758", @@ -125388,7 +124757,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2105, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-28T10:29:06.118", @@ -125411,7 +124779,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2106, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T15:15:05.402", @@ -125434,7 +124801,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2110, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-01-24T16:51:53.099", @@ -125457,7 +124823,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2111, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-01-24T16:51:54.036", @@ -125480,7 +124845,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2118, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-01-25T17:20:03.827", @@ -125503,7 +124867,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2119, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-01-29T12:50:26.253", @@ -125526,7 +124889,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2123, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-02T17:22:15.401", @@ -125549,7 +124911,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2125, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T12:59:59", @@ -125572,7 +124933,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2126, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-01-31T17:28:32.063", @@ -125595,7 +124955,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2127, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-01-31T17:28:34.838", @@ -125618,7 +124977,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2130, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-02-03T21:04:16.840", @@ -125641,7 +124999,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2132, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-21T09:40:51.496", @@ -125664,7 +125021,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2134, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-27T10:05:08.265", @@ -125687,7 +125043,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2135, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-04-22T11:26:34.368", @@ -125710,7 +125065,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2137, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T20:52:03.373", @@ -125733,7 +125087,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2138, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T16:47:01.203", @@ -125756,7 +125109,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2139, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-22T16:09:29.496", @@ -125779,7 +125131,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2140, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T08:18:25.620", @@ -125802,7 +125153,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2141, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-18T19:20:53.058", @@ -125825,7 +125175,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2143, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-27T11:06:20.424", @@ -125848,7 +125197,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2144, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:29.477", @@ -125871,7 +125219,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2145, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-15T13:21:49.719", @@ -125889,15 +125236,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 2217, - 249 + [ + "nicholle.boyce" + ], + [ + "sunni.hollingsworth" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 2147, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:31.503", @@ -125920,7 +125270,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2148, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:33.539", @@ -125943,7 +125292,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2149, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:35.748", @@ -125966,7 +125314,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2150, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:35.791", @@ -125989,7 +125336,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2151, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:35.832", @@ -126012,7 +125358,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2152, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-19T09:44:02.379", @@ -126035,7 +125380,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2153, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:35.915", @@ -126058,7 +125402,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2154, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:35.957", @@ -126081,7 +125424,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2155, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.002", @@ -126104,7 +125446,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2156, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-23T20:05:11.967", @@ -126127,7 +125468,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2157, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-19T10:44:51.953", @@ -126150,7 +125490,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2158, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.132", @@ -126173,7 +125512,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2159, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.174", @@ -126196,7 +125534,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2160, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.216", @@ -126219,7 +125556,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2161, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.258", @@ -126242,7 +125578,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2162, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.300", @@ -126265,7 +125600,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2163, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-19T20:01:22.150", @@ -126288,7 +125622,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2164, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.384", @@ -126311,7 +125644,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2165, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.426", @@ -126334,7 +125666,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2166, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.479", @@ -126357,7 +125688,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2167, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.522", @@ -126380,7 +125710,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2168, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-21T20:52:56.417", @@ -126403,7 +125732,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2169, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.606", @@ -126426,7 +125754,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2170, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.648", @@ -126449,7 +125776,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2171, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.690", @@ -126472,7 +125798,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2172, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.732", @@ -126495,7 +125820,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2173, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-21T14:13:20.051", @@ -126518,7 +125842,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2174, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:36.815", @@ -126541,7 +125864,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2176, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:40.559", @@ -126564,7 +125886,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2178, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:41.626", @@ -126587,7 +125908,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2181, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:49.383", @@ -126610,7 +125930,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2182, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:52.747", @@ -126633,7 +125952,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2183, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:54.391", @@ -126656,7 +125974,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2184, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:43:57.125", @@ -126679,7 +125996,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2186, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:44:00.267", @@ -126702,7 +126018,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2189, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:44:05.777", @@ -126725,7 +126040,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2190, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-13T23:44:18.052", @@ -126748,7 +126062,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2192, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-09-23T20:19:26.722", @@ -126771,7 +126084,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2194, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-02T13:45:32.397", @@ -126794,7 +126106,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2196, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-19T14:46:14.587", @@ -126817,7 +126128,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2197, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-07T09:04:51.478", @@ -126840,7 +126150,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2198, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-06-28T15:29:33.590", @@ -126863,7 +126172,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2199, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-01T21:17:50.858", @@ -126886,7 +126194,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2200, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-01T21:18:24.621", @@ -126909,7 +126216,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2201, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-02T07:40:50.269", @@ -126932,7 +126238,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2202, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-02T10:13:59.379", @@ -126955,7 +126260,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2205, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-23T13:35:18.855", @@ -126978,7 +126282,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2210, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-07-14T12:56:16.798", @@ -127001,7 +126304,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2211, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-02T23:42:55.994", @@ -127024,7 +126326,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2212, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-06T19:38:33.700", @@ -127047,7 +126348,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2213, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T17:51:05.116", @@ -127070,7 +126370,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2214, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-10T16:59:40.468", @@ -127093,7 +126392,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2215, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-10-23T16:09:52.798", @@ -127116,7 +126414,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2217, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-13T15:21:44.045", @@ -127139,7 +126436,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2218, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T18:02:35.335", @@ -127162,7 +126458,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2219, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T18:41:43.424", @@ -127185,7 +126480,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2220, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T22:48:54.132", @@ -127208,7 +126502,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2221, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-31T14:00:23.895", @@ -127231,7 +126524,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2222, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T17:49:27.553", @@ -127254,7 +126546,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2223, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T23:14:22.839", @@ -127277,7 +126568,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2224, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T10:53:19.069", @@ -127300,7 +126590,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2225, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T12:48:59.772", @@ -127323,7 +126612,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2226, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T17:48:33.692", @@ -127346,7 +126634,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2227, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T11:50:48.658", @@ -127369,7 +126656,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2228, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-18T20:46:14.824", @@ -127392,7 +126678,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2229, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-22T16:32:36.064", @@ -127415,7 +126700,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2230, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T21:16:47.777", @@ -127438,7 +126722,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2231, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T03:30:51.032", @@ -127461,7 +126744,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2232, "fields": { "password": "pbkdf2_sha256$20000$W777baxi62RX$1un4e0MdvQvKWTwBBkO/TLOaHGBh1QDQ0XkNreDk77U=", "last_login": "2015-11-08T14:34:22.886", @@ -127484,7 +126766,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2233, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T17:46:12.938", @@ -127507,7 +126788,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2234, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T10:40:45.594", @@ -127530,7 +126810,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2235, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T14:00:42.693", @@ -127553,7 +126832,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2236, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-11T08:07:47.300", @@ -127576,7 +126854,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2237, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2013-12-19T09:21:30.582", @@ -127599,7 +126876,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2238, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-31T00:06:58.086", @@ -127622,7 +126898,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2240, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T15:26:09.952", @@ -127645,7 +126920,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2241, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T10:35:48.764", @@ -127668,7 +126942,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2242, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T17:10:23.915", @@ -127691,7 +126964,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2243, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-28T19:12:07.601", @@ -127714,7 +126986,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2244, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T12:37:19.033", @@ -127737,7 +127008,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2247, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:16:58.210", @@ -127760,7 +127030,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2248, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:16:58.243", @@ -127783,7 +127052,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2251, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:16:58.289", @@ -127806,7 +127074,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2252, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T22:35:17.346", @@ -127829,7 +127096,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2253, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T18:46:33.937", @@ -127852,7 +127118,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2254, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T12:07:26.020", @@ -127875,7 +127140,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2255, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T11:12:24.352", @@ -127898,7 +127162,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2256, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-17T12:09:33.327", @@ -127921,7 +127184,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2257, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-06-03T09:03:55.162", @@ -127937,7 +127199,9 @@ "login_key_valid_until": null, "is_active": true, "groups": [ - 1 + [ + "Manager" + ] ], "user_permissions": [], "delegates": [], @@ -127946,7 +127210,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2258, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-05T18:14:14.763", @@ -127969,7 +127232,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2259, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T13:34:34.741", @@ -127992,7 +127254,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2260, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T17:27:58.283", @@ -128015,7 +127276,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2261, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:47:15.216", @@ -128038,7 +127298,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2262, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:16:58.960", @@ -128061,7 +127320,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2263, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T15:34:05.088", @@ -128084,7 +127342,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2264, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T11:20:07.995", @@ -128107,7 +127364,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2265, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T11:43:21.320", @@ -128130,7 +127386,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2266, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:16:59.066", @@ -128153,7 +127408,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2267, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T18:30:26.255", @@ -128176,7 +127430,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2268, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-05T17:33:28.724", @@ -128199,7 +127452,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2269, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:16:59.167", @@ -128222,7 +127474,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2270, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T16:06:06.514", @@ -128245,7 +127496,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2271, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-01T13:44:58.055", @@ -128268,7 +127518,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2272, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T11:14:27.587", @@ -128291,7 +127540,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2273, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T10:36:28.123", @@ -128314,7 +127562,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2274, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-10T19:45:58.706", @@ -128337,7 +127584,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2275, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-01T13:05:15.478", @@ -128360,7 +127606,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2276, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-17T11:38:57.616", @@ -128383,7 +127628,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2277, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-08T10:25:33.348", @@ -128406,7 +127650,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2278, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T12:12:12.133", @@ -128429,7 +127672,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2279, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T12:49:56.336", @@ -128452,7 +127694,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2280, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-06T23:59:45.260", @@ -128475,7 +127716,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2281, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T19:12:28.541", @@ -128498,7 +127738,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2282, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T10:58:31.778", @@ -128521,7 +127760,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2283, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T17:53:39.160", @@ -128544,7 +127782,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2284, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:16:59.931", @@ -128567,7 +127804,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2285, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-10T13:13:09.375", @@ -128590,7 +127826,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2286, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-05T19:03:40.918", @@ -128613,7 +127848,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2287, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-30T13:29:27.440", @@ -128636,7 +127870,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2288, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:17:00.104", @@ -128659,7 +127892,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2289, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:17:00.144", @@ -128682,7 +127914,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2290, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T15:47:47.021", @@ -128705,7 +127936,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2291, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T13:31:15.967", @@ -128728,7 +127958,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2292, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T10:37:38.325", @@ -128751,7 +127980,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2293, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-08T17:58:42.666", @@ -128774,7 +128002,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2294, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:17:00.371", @@ -128797,7 +128024,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2295, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:17:00.411", @@ -128820,7 +128046,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2296, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-12T09:11:11.774", @@ -128843,7 +128068,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2297, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T17:17:20.145", @@ -128866,7 +128090,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2298, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-12T10:36:15.264", @@ -128889,7 +128112,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2299, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T16:06:34.277", @@ -128912,7 +128134,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2300, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-05T12:00:29.473", @@ -128935,7 +128156,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2301, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-13T08:51:46.860", @@ -128958,7 +128178,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2302, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T08:17:15.290", @@ -128981,7 +128200,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2303, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-05T09:32:29.397", @@ -129004,7 +128222,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2304, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-04T15:18:16.091", @@ -129027,7 +128244,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2305, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T22:24:02.751", @@ -129050,7 +128266,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2306, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T10:35:51.844", @@ -129073,7 +128288,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2307, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T16:34:13.221", @@ -129096,7 +128310,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2308, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-01T13:11:17.485", @@ -129119,7 +128332,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2310, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:17:02.217", @@ -129142,7 +128354,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2311, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:17:02.234", @@ -129165,7 +128376,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2312, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:17:02.247", @@ -129188,7 +128398,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2314, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-31T10:40:42.034", @@ -129211,7 +128420,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2315, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-11T21:05:51.120", @@ -129234,7 +128442,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2317, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:17:04.495", @@ -129257,7 +128464,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2319, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-23T16:12:02.409", @@ -129275,14 +128481,15 @@ "groups": [], "user_permissions": [], "delegates": [ - 395 + [ + "al.jean" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 2320, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:17:10.316", @@ -129305,7 +128512,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2322, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-08T23:17:14.490", @@ -129328,7 +128534,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2324, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T19:06:39.338", @@ -129351,7 +128556,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2325, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-23T12:34:57.219", @@ -129369,15 +128573,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 2217, - 249 + [ + "nicholle.boyce" + ], + [ + "sunni.hollingsworth" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 2326, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-01-29T17:32:33.519", @@ -129396,14 +128603,17 @@ "user_permissions": [], "delegates": [], "cc_users": [ - 2217, - 249 + [ + "nicholle.boyce" + ], + [ + "sunni.hollingsworth" + ] ] } }, { "model": "evaluation.userprofile", - "pk": 2330, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-16T09:26:54.996", @@ -129421,15 +128631,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 2217, - 249 + [ + "nicholle.boyce" + ], + [ + "sunni.hollingsworth" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 2336, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-10T09:58:11.987", @@ -129452,7 +128665,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2337, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-02-10T09:31:48.593", @@ -129475,7 +128687,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2341, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-05-11T15:51:00.667", @@ -129493,15 +128704,18 @@ "groups": [], "user_permissions": [], "delegates": [ - 2217, - 249 + [ + "nicholle.boyce" + ], + [ + "sunni.hollingsworth" + ] ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 2345, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-23T22:42:08.010", @@ -129524,7 +128738,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2349, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-23T23:03:16.324", @@ -129547,7 +128760,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2350, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-24T10:25:43.302", @@ -129570,7 +128782,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2353, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-23T23:05:59.690", @@ -129593,7 +128804,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2355, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-03-30T16:53:27.693", @@ -129616,7 +128826,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2357, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-01T14:26:12.951", @@ -129639,7 +128848,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2359, "fields": { "password": "pbkdf2_sha256$12000$lRV0h1V7qLSK$pKzYyUhT7l65JxoIv7Du3btUHYzfGCZ81JFtbF9ymOY=", "last_login": "2014-04-15T14:37:53.714", @@ -129662,7 +128870,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2370, "fields": { "password": "pbkdf2_sha256$100000$OqMHXWeUCCnd$0/jerl1QOWflFRxWyz1LNdEQBEZrYkLEUOQsspUB/70=", "last_login": "2017-12-23T18:14:16.042", @@ -129678,7 +128885,9 @@ "login_key_valid_until": null, "is_active": true, "groups": [ - 3 + [ + "Grade publisher" + ] ], "user_permissions": [], "delegates": [], @@ -129687,7 +128896,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2373, "fields": { "password": "pbkdf2_sha256$30000$fxnctep4sBM1$EvsaesmX21Z8vRLdBFKPqHJ1AzW9vlXBwo8740hIrKQ=", "last_login": null, @@ -129703,7 +128911,9 @@ "login_key_valid_until": null, "is_active": true, "groups": [ - 2 + [ + "Reviewer" + ] ], "user_permissions": [], "delegates": [], @@ -129712,7 +128922,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2374, "fields": { "password": "pbkdf2_sha256$30000$fxnctep4sBM1$EvsaesmX21Z8vRLdBFKPqHJ1AzW9vlXBwo8740hIrKQ=", "last_login": null, @@ -129728,16 +128937,24 @@ "login_key_valid_until": null, "is_active": true, "groups": [ - 2 + [ + "Reviewer" + ] ], "user_permissions": [], - "delegates": [2375, 2376], + "delegates": [ + [ + "proxy_delegate" + ], + [ + "proxy_delegate_2" + ] + ], "cc_users": [] } }, { "model": "evaluation.userprofile", - "pk": 2375, "fields": { "password": "pbkdf2_sha256$30000$fxnctep4sBM1$EvsaesmX21Z8vRLdBFKPqHJ1AzW9vlXBwo8740hIrKQ=", "last_login": null, @@ -129753,7 +128970,9 @@ "login_key_valid_until": null, "is_active": true, "groups": [ - 2 + [ + "Reviewer" + ] ], "user_permissions": [], "delegates": [], @@ -129762,7 +128981,6 @@ }, { "model": "evaluation.userprofile", - "pk": 2376, "fields": { "password": "pbkdf2_sha256$30000$fxnctep4sBM1$EvsaesmX21Z8vRLdBFKPqHJ1AzW9vlXBwo8740hIrKQ=", "last_login": null, @@ -129783,6 +129001,28 @@ "cc_users": [] } }, +{ + "model": "evaluation.userprofile", + "fields": { + "password": "", + "last_login": "2019-10-28T17:52:34.380", + "is_superuser": false, + "username": "richard.ebeling", + "email": "[email protected]", + "title": null, + "first_name": "Richard", + "last_name": "Ebeling", + "language": "en", + "is_proxy_user": false, + "login_key": null, + "login_key_valid_until": null, + "is_active": true, + "groups": [], + "user_permissions": [], + "delegates": [], + "cc_users": [] + } +}, { "model": "evaluation.emailtemplate", "pk": 1, @@ -129868,7 +129108,9 @@ "model": "rewards.rewardpointgranting", "pk": 1, "fields": { - "user_profile": 2227, + "user_profile": [ + "elfriede.aguiar" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.413", "value": 3 @@ -129878,7 +129120,9 @@ "model": "rewards.rewardpointgranting", "pk": 2, "fields": { - "user_profile": 562, + "user_profile": [ + "damion.aiken" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.424", "value": 3 @@ -129888,7 +129132,9 @@ "model": "rewards.rewardpointgranting", "pk": 3, "fields": { - "user_profile": 1839, + "user_profile": [ + "heide.andrew" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.455", "value": 3 @@ -129898,7 +129144,9 @@ "model": "rewards.rewardpointgranting", "pk": 4, "fields": { - "user_profile": 608, + "user_profile": [ + "valda.antoine" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.463", "value": 3 @@ -129908,7 +129156,9 @@ "model": "rewards.rewardpointgranting", "pk": 5, "fields": { - "user_profile": 2232, + "user_profile": [ + "alisa.askew" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.476", "value": 3 @@ -129918,7 +129168,9 @@ "model": "rewards.rewardpointgranting", "pk": 6, "fields": { - "user_profile": 696, + "user_profile": [ + "kristina.baker" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.484", "value": 3 @@ -129928,7 +129180,9 @@ "model": "rewards.rewardpointgranting", "pk": 7, "fields": { - "user_profile": 546, + "user_profile": [ + "justa.baughman" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.514", "value": 3 @@ -129938,7 +129192,9 @@ "model": "rewards.rewardpointgranting", "pk": 8, "fields": { - "user_profile": 568, + "user_profile": [ + "conception.belt" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.529", "value": 3 @@ -129948,7 +129204,9 @@ "model": "rewards.rewardpointgranting", "pk": 9, "fields": { - "user_profile": 713, + "user_profile": [ + "gwyn.berger" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.536", "value": 3 @@ -129958,7 +129216,9 @@ "model": "rewards.rewardpointgranting", "pk": 10, "fields": { - "user_profile": 2064, + "user_profile": [ + "elfrieda.bess" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.541", "value": 3 @@ -129968,7 +129228,9 @@ "model": "rewards.rewardpointgranting", "pk": 11, "fields": { - "user_profile": 800, + "user_profile": [ + "hester.bettencourt" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.548", "value": 3 @@ -129978,7 +129240,9 @@ "model": "rewards.rewardpointgranting", "pk": 12, "fields": { - "user_profile": 819, + "user_profile": [ + "cherly.bobbitt" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.572", "value": 3 @@ -129988,7 +129252,9 @@ "model": "rewards.rewardpointgranting", "pk": 13, "fields": { - "user_profile": 2235, + "user_profile": [ + "herta.bourne" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.600", "value": 3 @@ -129998,7 +129264,9 @@ "model": "rewards.rewardpointgranting", "pk": 14, "fields": { - "user_profile": 2218, + "user_profile": [ + "kristi.boykin" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.612", "value": 3 @@ -130008,7 +129276,9 @@ "model": "rewards.rewardpointgranting", "pk": 15, "fields": { - "user_profile": 726, + "user_profile": [ + "salina.boykin" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.617", "value": 3 @@ -130018,7 +129288,9 @@ "model": "rewards.rewardpointgranting", "pk": 16, "fields": { - "user_profile": 2244, + "user_profile": [ + "christine.brinkley" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.636", "value": 3 @@ -130028,7 +129300,9 @@ "model": "rewards.rewardpointgranting", "pk": 17, "fields": { - "user_profile": 2261, + "user_profile": [ + "marquis.brody" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.646", "value": 3 @@ -130038,7 +129312,9 @@ "model": "rewards.rewardpointgranting", "pk": 18, "fields": { - "user_profile": 836, + "user_profile": [ + "aida.broome" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.651", "value": 3 @@ -130048,7 +129324,9 @@ "model": "rewards.rewardpointgranting", "pk": 19, "fields": { - "user_profile": 908, + "user_profile": [ + "kimbery.burnette" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.680", "value": 3 @@ -130058,7 +129336,9 @@ "model": "rewards.rewardpointgranting", "pk": 20, "fields": { - "user_profile": 773, + "user_profile": [ + "kirstin.carbone" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.720", "value": 3 @@ -130068,7 +129348,9 @@ "model": "rewards.rewardpointgranting", "pk": 21, "fields": { - "user_profile": 839, + "user_profile": [ + "asa.carlton" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.726", "value": 3 @@ -130078,7 +129360,9 @@ "model": "rewards.rewardpointgranting", "pk": 22, "fields": { - "user_profile": 557, + "user_profile": [ + "osvaldo.carrier" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.748", "value": 3 @@ -130088,7 +129372,9 @@ "model": "rewards.rewardpointgranting", "pk": 23, "fields": { - "user_profile": 576, + "user_profile": [ + "elvie.chaffin" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.769", "value": 3 @@ -130098,7 +129384,9 @@ "model": "rewards.rewardpointgranting", "pk": 24, "fields": { - "user_profile": 625, + "user_profile": [ + "odette.chitwood" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.802", "value": 3 @@ -130108,7 +129396,9 @@ "model": "rewards.rewardpointgranting", "pk": 25, "fields": { - "user_profile": 621, + "user_profile": [ + "karly.clapp" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.817", "value": 3 @@ -130118,7 +129408,9 @@ "model": "rewards.rewardpointgranting", "pk": 26, "fields": { - "user_profile": 2275, + "user_profile": [ + "kellye.cobb" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.837", "value": 3 @@ -130128,7 +129420,9 @@ "model": "rewards.rewardpointgranting", "pk": 27, "fields": { - "user_profile": 868, + "user_profile": [ + "dannie.cochran" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.844", "value": 3 @@ -130138,7 +129432,9 @@ "model": "rewards.rewardpointgranting", "pk": 28, "fields": { - "user_profile": 730, + "user_profile": [ + "almeta.cody" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.852", "value": 3 @@ -130148,7 +129444,9 @@ "model": "rewards.rewardpointgranting", "pk": 29, "fields": { - "user_profile": 2259, + "user_profile": [ + "ngan.corbin" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.911", "value": 3 @@ -130158,7 +129456,9 @@ "model": "rewards.rewardpointgranting", "pk": 30, "fields": { - "user_profile": 387, + "user_profile": [ + "jina.cushman" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.952", "value": 3 @@ -130168,7 +129468,9 @@ "model": "rewards.rewardpointgranting", "pk": 31, "fields": { - "user_profile": 2035, + "user_profile": [ + "scotty.daily" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.959", "value": 3 @@ -130178,7 +129480,9 @@ "model": "rewards.rewardpointgranting", "pk": 32, "fields": { - "user_profile": 591, + "user_profile": [ + "delegate" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.970", "value": 3 @@ -130188,7 +129492,9 @@ "model": "rewards.rewardpointgranting", "pk": 33, "fields": { - "user_profile": 2094, + "user_profile": [ + "diann.deloach" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.978", "value": 3 @@ -130198,7 +129504,9 @@ "model": "rewards.rewardpointgranting", "pk": 34, "fields": { - "user_profile": 2041, + "user_profile": [ + "eryn.devore" + ], "semester": 19, "granting_time": "2015-11-08T14:27:23.995", "value": 3 @@ -130208,7 +129516,9 @@ "model": "rewards.rewardpointgranting", "pk": 35, "fields": { - "user_profile": 785, + "user_profile": [ + "maxine.dexter" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.003", "value": 3 @@ -130218,7 +129528,9 @@ "model": "rewards.rewardpointgranting", "pk": 36, "fields": { - "user_profile": 2230, + "user_profile": [ + "catherine.dillon" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.009", "value": 3 @@ -130228,7 +129540,9 @@ "model": "rewards.rewardpointgranting", "pk": 37, "fields": { - "user_profile": 2130, + "user_profile": [ + "cassey.earley" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.035", "value": 3 @@ -130238,7 +129552,9 @@ "model": "rewards.rewardpointgranting", "pk": 38, "fields": { - "user_profile": 2012, + "user_profile": [ + "dominga.earley" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.040", "value": 3 @@ -130248,7 +129564,9 @@ "model": "rewards.rewardpointgranting", "pk": 39, "fields": { - "user_profile": 688, + "user_profile": [ + "milly.early" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.045", "value": 3 @@ -130258,7 +129576,9 @@ "model": "rewards.rewardpointgranting", "pk": 40, "fields": { - "user_profile": 2036, + "user_profile": [ + "haley.engle" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.072", "value": 3 @@ -130268,7 +129588,9 @@ "model": "rewards.rewardpointgranting", "pk": 41, "fields": { - "user_profile": 614, + "user_profile": [ + "britany.estrella" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.086", "value": 3 @@ -130278,7 +129600,9 @@ "model": "rewards.rewardpointgranting", "pk": 42, "fields": { - "user_profile": 815, + "user_profile": [ + "evap" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.091", "value": 3 @@ -130288,7 +129612,9 @@ "model": "rewards.rewardpointgranting", "pk": 43, "fields": { - "user_profile": 2229, + "user_profile": [ + "kristle.ewing" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.101", "value": 3 @@ -130298,7 +129624,9 @@ "model": "rewards.rewardpointgranting", "pk": 44, "fields": { - "user_profile": 2264, + "user_profile": [ + "levi.findley" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.125", "value": 3 @@ -130308,7 +129636,9 @@ "model": "rewards.rewardpointgranting", "pk": 45, "fields": { - "user_profile": 580, + "user_profile": [ + "chelsey.fried" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.153", "value": 3 @@ -130318,7 +129648,9 @@ "model": "rewards.rewardpointgranting", "pk": 46, "fields": { - "user_profile": 859, + "user_profile": [ + "benito.fuqua" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.160", "value": 3 @@ -130328,7 +129660,9 @@ "model": "rewards.rewardpointgranting", "pk": 47, "fields": { - "user_profile": 2273, + "user_profile": [ + "hollie.gallardo" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.174", "value": 3 @@ -130338,7 +129672,9 @@ "model": "rewards.rewardpointgranting", "pk": 48, "fields": { - "user_profile": 2058, + "user_profile": [ + "shakira.gilmer" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.198", "value": 3 @@ -130348,7 +129684,9 @@ "model": "rewards.rewardpointgranting", "pk": 49, "fields": { - "user_profile": 543, + "user_profile": [ + "majorie.godfrey" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.209", "value": 3 @@ -130358,7 +129696,9 @@ "model": "rewards.rewardpointgranting", "pk": 50, "fields": { - "user_profile": 1100, + "user_profile": [ + "jackelyn.gooding" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.219", "value": 3 @@ -130368,7 +129708,9 @@ "model": "rewards.rewardpointgranting", "pk": 51, "fields": { - "user_profile": 2042, + "user_profile": [ + "fran.goodrich" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.224", "value": 3 @@ -130378,7 +129720,9 @@ "model": "rewards.rewardpointgranting", "pk": 52, "fields": { - "user_profile": 2238, + "user_profile": [ + "marybeth.groff" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.264", "value": 3 @@ -130388,7 +129732,9 @@ "model": "rewards.rewardpointgranting", "pk": 53, "fields": { - "user_profile": 649, + "user_profile": [ + "callie.grove" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.270", "value": 3 @@ -130398,7 +129744,9 @@ "model": "rewards.rewardpointgranting", "pk": 54, "fields": { - "user_profile": 872, + "user_profile": [ + "marshall.guerrero" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.281", "value": 3 @@ -130408,7 +129756,9 @@ "model": "rewards.rewardpointgranting", "pk": 55, "fields": { - "user_profile": 766, + "user_profile": [ + "risa.hammer" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.295", "value": 3 @@ -130418,7 +129768,9 @@ "model": "rewards.rewardpointgranting", "pk": 56, "fields": { - "user_profile": 913, + "user_profile": [ + "etha.hastings" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.319", "value": 3 @@ -130428,7 +129780,9 @@ "model": "rewards.rewardpointgranting", "pk": 57, "fields": { - "user_profile": 685, + "user_profile": [ + "mercedes.hatch" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.323", "value": 3 @@ -130438,7 +129792,9 @@ "model": "rewards.rewardpointgranting", "pk": 58, "fields": { - "user_profile": 2303, + "user_profile": [ + "aurea.hay" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.330", "value": 3 @@ -130448,7 +129804,9 @@ "model": "rewards.rewardpointgranting", "pk": 59, "fields": { - "user_profile": 2044, + "user_profile": [ + "yetta.heck" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.341", "value": 3 @@ -130458,7 +129816,9 @@ "model": "rewards.rewardpointgranting", "pk": 60, "fields": { - "user_profile": 2291, + "user_profile": [ + "vonnie.hills" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.374", "value": 3 @@ -130468,7 +129828,9 @@ "model": "rewards.rewardpointgranting", "pk": 61, "fields": { - "user_profile": 280, + "user_profile": [ + "portia.hoffman" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.381", "value": 3 @@ -130478,7 +129840,9 @@ "model": "rewards.rewardpointgranting", "pk": 62, "fields": { - "user_profile": 2022, + "user_profile": [ + "carylon.hoffmann" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.386", "value": 3 @@ -130488,7 +129852,9 @@ "model": "rewards.rewardpointgranting", "pk": 63, "fields": { - "user_profile": 750, + "user_profile": [ + "kristyn.holcomb" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.393", "value": 3 @@ -130498,7 +129864,9 @@ "model": "rewards.rewardpointgranting", "pk": 64, "fields": { - "user_profile": 1134, + "user_profile": [ + "beula.hopkins" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.405", "value": 3 @@ -130508,7 +129876,9 @@ "model": "rewards.rewardpointgranting", "pk": 65, "fields": { - "user_profile": 2034, + "user_profile": [ + "enrique.horne" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.410", "value": 3 @@ -130518,7 +129888,9 @@ "model": "rewards.rewardpointgranting", "pk": 66, "fields": { - "user_profile": 2302, + "user_profile": [ + "lorna.hubert" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.428", "value": 3 @@ -130528,7 +129900,9 @@ "model": "rewards.rewardpointgranting", "pk": 67, "fields": { - "user_profile": 574, + "user_profile": [ + "amado.huggins" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.432", "value": 3 @@ -130538,7 +129912,9 @@ "model": "rewards.rewardpointgranting", "pk": 68, "fields": { - "user_profile": 733, + "user_profile": [ + "shayna.hyde" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.454", "value": 3 @@ -130548,7 +129924,9 @@ "model": "rewards.rewardpointgranting", "pk": 69, "fields": { - "user_profile": 914, + "user_profile": [ + "tami.isaac" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.460", "value": 3 @@ -130558,7 +129936,9 @@ "model": "rewards.rewardpointgranting", "pk": 70, "fields": { - "user_profile": 2219, + "user_profile": [ + "keisha.jordon" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.489", "value": 3 @@ -130568,7 +129948,9 @@ "model": "rewards.rewardpointgranting", "pk": 71, "fields": { - "user_profile": 774, + "user_profile": [ + "kelsey.kay" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.500", "value": 3 @@ -130578,7 +129960,9 @@ "model": "rewards.rewardpointgranting", "pk": 72, "fields": { - "user_profile": 703, + "user_profile": [ + "jenniffer.kinard" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.528", "value": 3 @@ -130588,7 +129972,9 @@ "model": "rewards.rewardpointgranting", "pk": 73, "fields": { - "user_profile": 548, + "user_profile": [ + "clarence.kirkland" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.533", "value": 3 @@ -130598,7 +129984,9 @@ "model": "rewards.rewardpointgranting", "pk": 74, "fields": { - "user_profile": 674, + "user_profile": [ + "matthias.kober" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.549", "value": 3 @@ -130608,7 +129996,9 @@ "model": "rewards.rewardpointgranting", "pk": 75, "fields": { - "user_profile": 542, + "user_profile": [ + "laura.lamb" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.563", "value": 3 @@ -130618,7 +130008,9 @@ "model": "rewards.rewardpointgranting", "pk": 76, "fields": { - "user_profile": 586, + "user_profile": [ + "antony.landry" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.572", "value": 3 @@ -130628,7 +130020,9 @@ "model": "rewards.rewardpointgranting", "pk": 77, "fields": { - "user_profile": 867, + "user_profile": [ + "melody.large" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.586", "value": 3 @@ -130638,7 +130032,9 @@ "model": "rewards.rewardpointgranting", "pk": 78, "fields": { - "user_profile": 65, + "user_profile": [ + "marna.leboeuf" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.604", "value": 3 @@ -130648,7 +130044,9 @@ "model": "rewards.rewardpointgranting", "pk": 79, "fields": { - "user_profile": 330, + "user_profile": [ + "joette.lindley" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.628", "value": 3 @@ -130658,7 +130056,9 @@ "model": "rewards.rewardpointgranting", "pk": 80, "fields": { - "user_profile": 2278, + "user_profile": [ + "pedro.logue" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.642", "value": 3 @@ -130668,7 +130068,9 @@ "model": "rewards.rewardpointgranting", "pk": 81, "fields": { - "user_profile": 924, + "user_profile": [ + "marcella.lu" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.668", "value": 3 @@ -130678,7 +130080,9 @@ "model": "rewards.rewardpointgranting", "pk": 82, "fields": { - "user_profile": 570, + "user_profile": [ + "candie.lugo" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.676", "value": 3 @@ -130688,7 +130092,9 @@ "model": "rewards.rewardpointgranting", "pk": 83, "fields": { - "user_profile": 556, + "user_profile": [ + "corine.lunsford" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.683", "value": 3 @@ -130698,7 +130104,9 @@ "model": "rewards.rewardpointgranting", "pk": 84, "fields": { - "user_profile": 2297, + "user_profile": [ + "penni.luong" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.688", "value": 3 @@ -130708,7 +130116,9 @@ "model": "rewards.rewardpointgranting", "pk": 85, "fields": { - "user_profile": 901, + "user_profile": [ + "tuan.malcolm" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.704", "value": 3 @@ -130718,7 +130128,9 @@ "model": "rewards.rewardpointgranting", "pk": 86, "fields": { - "user_profile": 722, + "user_profile": [ + "earlene.marquis" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.720", "value": 3 @@ -130728,7 +130140,9 @@ "model": "rewards.rewardpointgranting", "pk": 87, "fields": { - "user_profile": 2267, + "user_profile": [ + "effie.martindale" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.727", "value": 3 @@ -130738,7 +130152,9 @@ "model": "rewards.rewardpointgranting", "pk": 88, "fields": { - "user_profile": 2293, + "user_profile": [ + "gaylord.mcafee" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.743", "value": 3 @@ -130748,7 +130164,9 @@ "model": "rewards.rewardpointgranting", "pk": 89, "fields": { - "user_profile": 584, + "user_profile": [ + "marlana.mclain" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.786", "value": 3 @@ -130758,7 +130176,9 @@ "model": "rewards.rewardpointgranting", "pk": 90, "fields": { - "user_profile": 793, + "user_profile": [ + "antonetta.middleton" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.824", "value": 3 @@ -130768,7 +130188,9 @@ "model": "rewards.rewardpointgranting", "pk": 91, "fields": { - "user_profile": 865, + "user_profile": [ + "maureen.moe" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.830", "value": 3 @@ -130778,7 +130200,9 @@ "model": "rewards.rewardpointgranting", "pk": 92, "fields": { - "user_profile": 735, + "user_profile": [ + "minerva.moe" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.834", "value": 3 @@ -130788,7 +130212,9 @@ "model": "rewards.rewardpointgranting", "pk": 93, "fields": { - "user_profile": 857, + "user_profile": [ + "marilynn.oconnor" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.893", "value": 3 @@ -130798,7 +130224,9 @@ "model": "rewards.rewardpointgranting", "pk": 94, "fields": { - "user_profile": 749, + "user_profile": [ + "alona.oldham" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.897", "value": 3 @@ -130808,7 +130236,9 @@ "model": "rewards.rewardpointgranting", "pk": 95, "fields": { - "user_profile": 887, + "user_profile": [ + "roxy.olds" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.902", "value": 3 @@ -130818,7 +130248,9 @@ "model": "rewards.rewardpointgranting", "pk": 96, "fields": { - "user_profile": 919, + "user_profile": [ + "lashandra.peacock" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.933", "value": 3 @@ -130828,7 +130260,9 @@ "model": "rewards.rewardpointgranting", "pk": 97, "fields": { - "user_profile": 2137, + "user_profile": [ + "armand.person" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.948", "value": 3 @@ -130838,7 +130272,9 @@ "model": "rewards.rewardpointgranting", "pk": 98, "fields": { - "user_profile": 2226, + "user_profile": [ + "latasha.pham" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.960", "value": 3 @@ -130848,7 +130284,9 @@ "model": "rewards.rewardpointgranting", "pk": 99, "fields": { - "user_profile": 2070, + "user_profile": [ + "arletha.picard" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.969", "value": 3 @@ -130858,7 +130296,9 @@ "model": "rewards.rewardpointgranting", "pk": 100, "fields": { - "user_profile": 2300, + "user_profile": [ + "eleanor.pinkston" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.977", "value": 3 @@ -130868,7 +130308,9 @@ "model": "rewards.rewardpointgranting", "pk": 101, "fields": { - "user_profile": 2299, + "user_profile": [ + "lenard.post" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.987", "value": 3 @@ -130878,7 +130320,9 @@ "model": "rewards.rewardpointgranting", "pk": 102, "fields": { - "user_profile": 267, + "user_profile": [ + "karine.prater" + ], "semester": 19, "granting_time": "2015-11-08T14:27:24.991", "value": 3 @@ -130888,7 +130332,9 @@ "model": "rewards.rewardpointgranting", "pk": 103, "fields": { - "user_profile": 2271, + "user_profile": [ + "sandra.pulido" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.004", "value": 3 @@ -130898,7 +130344,9 @@ "model": "rewards.rewardpointgranting", "pk": 104, "fields": { - "user_profile": 2030, + "user_profile": [ + "porfirio.rasmussen" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.019", "value": 3 @@ -130908,7 +130356,9 @@ "model": "rewards.rewardpointgranting", "pk": 105, "fields": { - "user_profile": 628, + "user_profile": [ + "noriko.rau" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.023", "value": 3 @@ -130918,7 +130368,9 @@ "model": "rewards.rewardpointgranting", "pk": 106, "fields": { - "user_profile": 708, + "user_profile": [ + "lita.regan" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.047", "value": 3 @@ -130928,7 +130380,9 @@ "model": "rewards.rewardpointgranting", "pk": 107, "fields": { - "user_profile": 741, + "user_profile": [ + "randell.reis" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.054", "value": 3 @@ -130938,7 +130392,9 @@ "model": "rewards.rewardpointgranting", "pk": 108, "fields": { - "user_profile": 2097, + "user_profile": [ + "darci.rinehart" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.068", "value": 3 @@ -130948,7 +130404,9 @@ "model": "rewards.rewardpointgranting", "pk": 109, "fields": { - "user_profile": 2277, + "user_profile": [ + "claudine.ritchey" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.072", "value": 3 @@ -130958,7 +130416,9 @@ "model": "rewards.rewardpointgranting", "pk": 110, "fields": { - "user_profile": 851, + "user_profile": [ + "chauncey.rivera" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.076", "value": 3 @@ -130968,7 +130428,9 @@ "model": "rewards.rewardpointgranting", "pk": 111, "fields": { - "user_profile": 2220, + "user_profile": [ + "tod.rowe" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.113", "value": 3 @@ -130978,7 +130440,9 @@ "model": "rewards.rewardpointgranting", "pk": 112, "fields": { - "user_profile": 918, + "user_profile": [ + "ethyl.rust" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.137", "value": 3 @@ -130988,7 +130452,9 @@ "model": "rewards.rewardpointgranting", "pk": 113, "fields": { - "user_profile": 885, + "user_profile": [ + "sherie.ruth" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.142", "value": 3 @@ -130998,7 +130464,9 @@ "model": "rewards.rewardpointgranting", "pk": 114, "fields": { - "user_profile": 1142, + "user_profile": [ + "lin.sales" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.152", "value": 3 @@ -131008,7 +130476,9 @@ "model": "rewards.rewardpointgranting", "pk": 115, "fields": { - "user_profile": 2240, + "user_profile": [ + "cyndy.salter" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.160", "value": 3 @@ -131018,7 +130488,9 @@ "model": "rewards.rewardpointgranting", "pk": 116, "fields": { - "user_profile": 616, + "user_profile": [ + "maribel.scales" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.182", "value": 3 @@ -131028,7 +130500,9 @@ "model": "rewards.rewardpointgranting", "pk": 117, "fields": { - "user_profile": 806, + "user_profile": [ + "rebecca.schuler" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.188", "value": 3 @@ -131038,7 +130512,9 @@ "model": "rewards.rewardpointgranting", "pk": 118, "fields": { - "user_profile": 686, + "user_profile": [ + "michaele.shuler" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.212", "value": 3 @@ -131048,7 +130524,9 @@ "model": "rewards.rewardpointgranting", "pk": 119, "fields": { - "user_profile": 2282, + "user_profile": [ + "nan.simpkins" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.227", "value": 3 @@ -131058,7 +130536,9 @@ "model": "rewards.rewardpointgranting", "pk": 120, "fields": { - "user_profile": 2285, + "user_profile": [ + "celestina.slattery" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.244", "value": 3 @@ -131068,7 +130548,9 @@ "model": "rewards.rewardpointgranting", "pk": 121, "fields": { - "user_profile": 2224, + "user_profile": [ + "ossie.stamper" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.295", "value": 3 @@ -131078,7 +130560,9 @@ "model": "rewards.rewardpointgranting", "pk": 122, "fields": { - "user_profile": 596, + "user_profile": [ + "meagan.steed" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.304", "value": 3 @@ -131088,7 +130572,9 @@ "model": "rewards.rewardpointgranting", "pk": 123, "fields": { - "user_profile": 2233, + "user_profile": [ + "russel.stroup" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.324", "value": 3 @@ -131098,7 +130584,9 @@ "model": "rewards.rewardpointgranting", "pk": 124, "fields": { - "user_profile": 845, + "user_profile": [ + "kristie.stump" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.335", "value": 3 @@ -131108,7 +130596,9 @@ "model": "rewards.rewardpointgranting", "pk": 125, "fields": { - "user_profile": 2132, + "user_profile": [ + "tayna.tarver" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.358", "value": 3 @@ -131118,7 +130608,9 @@ "model": "rewards.rewardpointgranting", "pk": 126, "fields": { - "user_profile": 669, + "user_profile": [ + "reynaldo.thayer" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.370", "value": 3 @@ -131128,7 +130620,9 @@ "model": "rewards.rewardpointgranting", "pk": 127, "fields": { - "user_profile": 2281, + "user_profile": [ + "clement.tibbetts" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.387", "value": 3 @@ -131138,7 +130632,9 @@ "model": "rewards.rewardpointgranting", "pk": 128, "fields": { - "user_profile": 843, + "user_profile": [ + "irwin.tompkins" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.405", "value": 3 @@ -131148,7 +130644,9 @@ "model": "rewards.rewardpointgranting", "pk": 129, "fields": { - "user_profile": 2272, + "user_profile": [ + "ingrid.trice" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.418", "value": 3 @@ -131158,7 +130656,9 @@ "model": "rewards.rewardpointgranting", "pk": 130, "fields": { - "user_profile": 2223, + "user_profile": [ + "brianna.true" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.423", "value": 3 @@ -131168,7 +130668,9 @@ "model": "rewards.rewardpointgranting", "pk": 131, "fields": { - "user_profile": 2274, + "user_profile": [ + "shandra.turner" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.430", "value": 3 @@ -131178,7 +130680,9 @@ "model": "rewards.rewardpointgranting", "pk": 132, "fields": { - "user_profile": 2053, + "user_profile": [ + "shelia.turney" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.434", "value": 3 @@ -131188,7 +130692,9 @@ "model": "rewards.rewardpointgranting", "pk": 133, "fields": { - "user_profile": 2254, + "user_profile": [ + "isabelle.veal" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.454", "value": 3 @@ -131198,7 +130704,9 @@ "model": "rewards.rewardpointgranting", "pk": 134, "fields": { - "user_profile": 874, + "user_profile": [ + "dominga.vega" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.459", "value": 3 @@ -131208,7 +130716,9 @@ "model": "rewards.rewardpointgranting", "pk": 135, "fields": { - "user_profile": 719, + "user_profile": [ + "stanford.vernon" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.463", "value": 3 @@ -131218,7 +130728,9 @@ "model": "rewards.rewardpointgranting", "pk": 136, "fields": { - "user_profile": 613, + "user_profile": [ + "emmaline.voigt" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.469", "value": 3 @@ -131228,7 +130740,9 @@ "model": "rewards.rewardpointgranting", "pk": 137, "fields": { - "user_profile": 673, + "user_profile": [ + "myrtle.wahl" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.480", "value": 3 @@ -131238,7 +130752,9 @@ "model": "rewards.rewardpointgranting", "pk": 138, "fields": { - "user_profile": 592, + "user_profile": [ + "giuseppina.waldrop" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.484", "value": 3 @@ -131248,7 +130764,9 @@ "model": "rewards.rewardpointgranting", "pk": 139, "fields": { - "user_profile": 764, + "user_profile": [ + "florencia.washington" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.493", "value": 3 @@ -131258,7 +130776,9 @@ "model": "rewards.rewardpointgranting", "pk": 140, "fields": { - "user_profile": 2234, + "user_profile": [ + "stacy.webber" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.503", "value": 3 @@ -131268,7 +130788,9 @@ "model": "rewards.rewardpointgranting", "pk": 141, "fields": { - "user_profile": 792, + "user_profile": [ + "mistie.weddle" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.507", "value": 3 @@ -131278,7 +130800,9 @@ "model": "rewards.rewardpointgranting", "pk": 142, "fields": { - "user_profile": 682, + "user_profile": [ + "taunya.weinstein" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.512", "value": 3 @@ -131288,7 +130812,9 @@ "model": "rewards.rewardpointgranting", "pk": 143, "fields": { - "user_profile": 2225, + "user_profile": [ + "suzi.wick" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.527", "value": 3 @@ -131298,7 +130824,9 @@ "model": "rewards.rewardpointgranting", "pk": 144, "fields": { - "user_profile": 2241, + "user_profile": [ + "reid.willingham" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.541", "value": 3 @@ -131308,7 +130836,9 @@ "model": "rewards.rewardpointgranting", "pk": 145, "fields": { - "user_profile": 821, + "user_profile": [ + "lelia.worley" + ], "semester": 19, "granting_time": "2015-11-08T14:27:25.555", "value": 3 @@ -131318,7 +130848,9 @@ "model": "rewards.rewardpointgranting", "pk": 146, "fields": { - "user_profile": 608, + "user_profile": [ + "valda.antoine" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.091", "value": 3 @@ -131328,7 +130860,9 @@ "model": "rewards.rewardpointgranting", "pk": 147, "fields": { - "user_profile": 809, + "user_profile": [ + "billi.arce" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.097", "value": 3 @@ -131338,7 +130872,9 @@ "model": "rewards.rewardpointgranting", "pk": 148, "fields": { - "user_profile": 754, + "user_profile": [ + "sheena.arsenault" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.115", "value": 3 @@ -131348,7 +130884,9 @@ "model": "rewards.rewardpointgranting", "pk": 149, "fields": { - "user_profile": 665, + "user_profile": [ + "diedra.batson" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.140", "value": 3 @@ -131358,7 +130896,9 @@ "model": "rewards.rewardpointgranting", "pk": 150, "fields": { - "user_profile": 823, + "user_profile": [ + "terisa.bottoms" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.201", "value": 3 @@ -131368,7 +130908,9 @@ "model": "rewards.rewardpointgranting", "pk": 151, "fields": { - "user_profile": 836, + "user_profile": [ + "aida.broome" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.242", "value": 3 @@ -131378,7 +130920,9 @@ "model": "rewards.rewardpointgranting", "pk": 152, "fields": { - "user_profile": 773, + "user_profile": [ + "kirstin.carbone" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.293", "value": 3 @@ -131388,7 +130932,9 @@ "model": "rewards.rewardpointgranting", "pk": 153, "fields": { - "user_profile": 808, + "user_profile": [ + "virgina.carrasco" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.313", "value": 3 @@ -131398,7 +130944,9 @@ "model": "rewards.rewardpointgranting", "pk": 154, "fields": { - "user_profile": 894, + "user_profile": [ + "jeremy.carrington" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.320", "value": 3 @@ -131408,7 +130956,9 @@ "model": "rewards.rewardpointgranting", "pk": 155, "fields": { - "user_profile": 730, + "user_profile": [ + "almeta.cody" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.376", "value": 3 @@ -131418,7 +130968,9 @@ "model": "rewards.rewardpointgranting", "pk": 156, "fields": { - "user_profile": 141, + "user_profile": [ + "cherry.doughty" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.467", "value": 3 @@ -131428,7 +130980,9 @@ "model": "rewards.rewardpointgranting", "pk": 157, "fields": { - "user_profile": 892, + "user_profile": [ + "kiana.easley" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.492", "value": 3 @@ -131438,7 +130992,9 @@ "model": "rewards.rewardpointgranting", "pk": 158, "fields": { - "user_profile": 2211, + "user_profile": [ + "jarrett.flannery" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.546", "value": 3 @@ -131448,7 +131004,9 @@ "model": "rewards.rewardpointgranting", "pk": 159, "fields": { - "user_profile": 14, + "user_profile": [ + "willena.hemphill" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.704", "value": 3 @@ -131458,7 +131016,9 @@ "model": "rewards.rewardpointgranting", "pk": 160, "fields": { - "user_profile": 747, + "user_profile": [ + "lachelle.hermann" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.715", "value": 3 @@ -131468,7 +131028,9 @@ "model": "rewards.rewardpointgranting", "pk": 161, "fields": { - "user_profile": 24, + "user_profile": [ + "maryetta.hollingsworth" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.738", "value": 3 @@ -131478,7 +131040,9 @@ "model": "rewards.rewardpointgranting", "pk": 162, "fields": { - "user_profile": 914, + "user_profile": [ + "tami.isaac" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.778", "value": 3 @@ -131488,7 +131052,9 @@ "model": "rewards.rewardpointgranting", "pk": 163, "fields": { - "user_profile": 674, + "user_profile": [ + "matthias.kober" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.833", "value": 3 @@ -131498,7 +131064,9 @@ "model": "rewards.rewardpointgranting", "pk": 164, "fields": { - "user_profile": 556, + "user_profile": [ + "corine.lunsford" + ], "semester": 21, "granting_time": "2015-11-08T14:31:14.927", "value": 3 @@ -131508,7 +131076,9 @@ "model": "rewards.rewardpointgranting", "pk": 165, "fields": { - "user_profile": 900, + "user_profile": [ + "odessa.mcmullen" + ], "semester": 21, "granting_time": "2015-11-08T14:31:15.008", "value": 3 @@ -131518,7 +131088,9 @@ "model": "rewards.rewardpointgranting", "pk": 166, "fields": { - "user_profile": 662, + "user_profile": [ + "felice.meek" + ], "semester": 21, "granting_time": "2015-11-08T14:31:15.022", "value": 3 @@ -131528,7 +131100,9 @@ "model": "rewards.rewardpointgranting", "pk": 167, "fields": { - "user_profile": 848, + "user_profile": [ + "tawanna.negrete" + ], "semester": 21, "granting_time": "2015-11-08T14:31:15.074", "value": 3 @@ -131538,7 +131112,9 @@ "model": "rewards.rewardpointgranting", "pk": 168, "fields": { - "user_profile": 763, + "user_profile": [ + "armida.nobles" + ], "semester": 21, "granting_time": "2015-11-08T14:31:15.086", "value": 3 @@ -131548,7 +131124,9 @@ "model": "rewards.rewardpointgranting", "pk": 169, "fields": { - "user_profile": 887, + "user_profile": [ + "roxy.olds" + ], "semester": 21, "granting_time": "2015-11-08T14:31:15.102", "value": 3 @@ -131558,7 +131136,9 @@ "model": "rewards.rewardpointgranting", "pk": 170, "fields": { - "user_profile": 1, + "user_profile": [ + "luann.schulz" + ], "semester": 21, "granting_time": "2015-11-08T14:31:15.310", "value": 3 @@ -131568,7 +131148,9 @@ "model": "rewards.rewardpointgranting", "pk": 171, "fields": { - "user_profile": 686, + "user_profile": [ + "michaele.shuler" + ], "semester": 21, "granting_time": "2015-11-08T14:31:15.344", "value": 3 @@ -131578,7 +131160,9 @@ "model": "rewards.rewardpointgranting", "pk": 172, "fields": { - "user_profile": 772, + "user_profile": [ + "alton.smalley" + ], "semester": 21, "granting_time": "2015-11-08T14:31:15.376", "value": 3 @@ -131588,7 +131172,9 @@ "model": "rewards.rewardpointgranting", "pk": 173, "fields": { - "user_profile": 1078, + "user_profile": [ + "raymonde.stock" + ], "semester": 21, "granting_time": "2015-11-08T14:31:15.431", "value": 3 @@ -131598,7 +131184,9 @@ "model": "rewards.rewardpointgranting", "pk": 174, "fields": { - "user_profile": 673, + "user_profile": [ + "myrtle.wahl" + ], "semester": 21, "granting_time": "2015-11-08T14:31:15.547", "value": 3 @@ -131608,7 +131196,9 @@ "model": "rewards.rewardpointgranting", "pk": 175, "fields": { - "user_profile": 592, + "user_profile": [ + "giuseppina.waldrop" + ], "semester": 21, "granting_time": "2015-11-08T14:31:15.552", "value": 3 @@ -131618,7 +131208,9 @@ "model": "rewards.rewardpointgranting", "pk": 176, "fields": { - "user_profile": 675, + "user_profile": [ + "fay.westmoreland" + ], "semester": 21, "granting_time": "2015-11-08T14:31:15.577", "value": 3 @@ -131628,7 +131220,9 @@ "model": "rewards.rewardpointredemption", "pk": 1, "fields": { - "user_profile": 665, + "user_profile": [ + "diedra.batson" + ], "redemption_time": "2015-11-08T14:33:43.674", "value": 3, "event": 1 @@ -131638,7 +131232,9 @@ "model": "rewards.rewardpointredemption", "pk": 2, "fields": { - "user_profile": 754, + "user_profile": [ + "sheena.arsenault" + ], "redemption_time": "2015-11-08T14:34:00.945", "value": 3, "event": 1 @@ -131648,7 +131244,9 @@ "model": "rewards.rewardpointredemption", "pk": 3, "fields": { - "user_profile": 696, + "user_profile": [ + "kristina.baker" + ], "redemption_time": "2015-11-08T14:34:14.636", "value": 2, "event": 1 @@ -131658,7 +131256,9 @@ "model": "rewards.rewardpointredemption", "pk": 4, "fields": { - "user_profile": 2232, + "user_profile": [ + "alisa.askew" + ], "redemption_time": "2015-11-08T14:34:28.035", "value": 1, "event": 1 @@ -131668,7 +131268,9 @@ "model": "rewards.rewardpointredemption", "pk": 5, "fields": { - "user_profile": 608, + "user_profile": [ + "valda.antoine" + ], "redemption_time": "2015-11-08T14:34:44.250", "value": 2, "event": 1 @@ -131678,7 +131280,9 @@ "model": "rewards.rewardpointredemption", "pk": 6, "fields": { - "user_profile": 608, + "user_profile": [ + "valda.antoine" + ], "redemption_time": "2015-11-08T14:34:50.295", "value": 4, "event": 1 @@ -131688,7 +131292,9 @@ "model": "rewards.rewardpointredemption", "pk": 7, "fields": { - "user_profile": 1839, + "user_profile": [ + "heide.andrew" + ], "redemption_time": "2015-11-08T14:35:08.786", "value": 3, "event": 1 @@ -131720,7 +131326,9 @@ "description_de": "Final grades", "description_en": "Final grades", "last_modified_time": "2016-02-01T21:56:14.372", - "last_modified_user": 2370 + "last_modified_user": [ + "grade_publisher" + ] } }, { @@ -131733,7 +131341,9 @@ "description_de": "Midterm grades", "description_en": "Midterm grades", "last_modified_time": "2016-02-01T21:56:14.373", - "last_modified_user": 2370 + "last_modified_user": [ + "grade_publisher" + ] } }, { @@ -131746,7 +131356,9 @@ "description_de": "Midterm grades", "description_en": "Midterm grades", "last_modified_time": "2016-02-01T21:56:14.374", - "last_modified_user": 2370 + "last_modified_user": [ + "grade_publisher" + ] } }, { @@ -131770,7 +131382,9 @@ "pk": 90, "fields": { "evaluation": 34, - "contributor": 173, + "contributor": [ + "chieko.lehman" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -131803,7 +131417,9 @@ "pk": 789, "fields": { "evaluation": 310, - "contributor": 207, + "contributor": [ + "ellsworth.thornburg" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -131835,7 +131451,9 @@ "pk": 791, "fields": { "evaluation": 311, - "contributor": 207, + "contributor": [ + "ellsworth.thornburg" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -131868,7 +131486,9 @@ "pk": 805, "fields": { "evaluation": 318, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -131903,7 +131523,9 @@ "pk": 823, "fields": { "evaluation": 327, - "contributor": 640, + "contributor": [ + "arnold.lane" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -131936,7 +131558,9 @@ "pk": 827, "fields": { "evaluation": 329, - "contributor": 127, + "contributor": [ + "elena.kline" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -131969,7 +131593,9 @@ "pk": 833, "fields": { "evaluation": 332, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132001,7 +131627,9 @@ "pk": 835, "fields": { "evaluation": 333, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132036,7 +131664,9 @@ "pk": 837, "fields": { "evaluation": 334, - "contributor": 93, + "contributor": [ + "viola.barringer" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132069,7 +131699,9 @@ "pk": 841, "fields": { "evaluation": 336, - "contributor": 2341, + "contributor": [ + "luciana.graves" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132102,7 +131734,9 @@ "pk": 859, "fields": { "evaluation": 345, - "contributor": 249, + "contributor": [ + "sunni.hollingsworth" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132136,7 +131770,9 @@ "pk": 863, "fields": { "evaluation": 347, - "contributor": 641, + "contributor": [ + "sandee.coker" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132169,7 +131805,9 @@ "pk": 865, "fields": { "evaluation": 348, - "contributor": 641, + "contributor": [ + "sandee.coker" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132201,7 +131839,9 @@ "pk": 869, "fields": { "evaluation": 350, - "contributor": 186, + "contributor": [ + "ranae.fry.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132236,7 +131876,9 @@ "pk": 881, "fields": { "evaluation": 356, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132272,7 +131914,9 @@ "pk": 885, "fields": { "evaluation": 358, - "contributor": 2086, + "contributor": [ + "amelia.handy.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132305,7 +131949,9 @@ "pk": 887, "fields": { "evaluation": 359, - "contributor": 2341, + "contributor": [ + "luciana.graves" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132339,7 +131985,9 @@ "pk": 895, "fields": { "evaluation": 363, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132372,7 +132020,9 @@ "pk": 909, "fields": { "evaluation": 370, - "contributor": 236, + "contributor": [ + "ingeborg.herring" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132407,7 +132057,9 @@ "pk": 913, "fields": { "evaluation": 372, - "contributor": 249, + "contributor": [ + "sunni.hollingsworth" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132440,7 +132092,9 @@ "pk": 919, "fields": { "evaluation": 375, - "contributor": 186, + "contributor": [ + "ranae.fry.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132477,7 +132131,9 @@ "pk": 1145, "fields": { "evaluation": 478, - "contributor": 181, + "contributor": [ + "denisha.chance" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132497,7 +132153,9 @@ "pk": 1146, "fields": { "evaluation": 478, - "contributor": 1, + "contributor": [ + "luann.schulz" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132512,7 +132170,9 @@ "pk": 1151, "fields": { "evaluation": 332, - "contributor": 318, + "contributor": [ + "laurence.tipton" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132528,7 +132188,9 @@ "pk": 1154, "fields": { "evaluation": 370, - "contributor": 408, + "contributor": [ + "britteny.easley" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132545,7 +132207,9 @@ "pk": 1156, "fields": { "evaluation": 363, - "contributor": 392, + "contributor": [ + "hipolito.morse" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132561,7 +132225,9 @@ "pk": 1157, "fields": { "evaluation": 363, - "contributor": 423, + "contributor": [ + "sharon.cress" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132577,7 +132243,9 @@ "pk": 1165, "fields": { "evaluation": 333, - "contributor": 318, + "contributor": [ + "laurence.tipton" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132593,7 +132261,9 @@ "pk": 1186, "fields": { "evaluation": 370, - "contributor": 28, + "contributor": [ + "lynn.baptiste" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132608,7 +132278,9 @@ "pk": 1187, "fields": { "evaluation": 370, - "contributor": 883, + "contributor": [ + "kayce.grigsby" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132623,7 +132295,9 @@ "pk": 1188, "fields": { "evaluation": 370, - "contributor": 759, + "contributor": [ + "concha.ezell" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132638,7 +132312,9 @@ "pk": 1189, "fields": { "evaluation": 370, - "contributor": 900, + "contributor": [ + "odessa.mcmullen" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132653,7 +132329,9 @@ "pk": 1194, "fields": { "evaluation": 363, - "contributor": 975, + "contributor": [ + "joella.naquin" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132686,7 +132364,9 @@ "pk": 1201, "fields": { "evaluation": 482, - "contributor": 93, + "contributor": [ + "viola.barringer" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132702,7 +132382,9 @@ "pk": 1202, "fields": { "evaluation": 482, - "contributor": 13, + "contributor": [ + "starla.lyons" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132718,7 +132400,9 @@ "pk": 1203, "fields": { "evaluation": 482, - "contributor": 593, + "contributor": [ + "yolanda.farley" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132734,7 +132418,9 @@ "pk": 1204, "fields": { "evaluation": 482, - "contributor": 4, + "contributor": [ + "chanelle.perales" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132750,7 +132436,9 @@ "pk": 1205, "fields": { "evaluation": 482, - "contributor": 30, + "contributor": [ + "ozella.hooper" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132766,7 +132454,9 @@ "pk": 1206, "fields": { "evaluation": 482, - "contributor": 596, + "contributor": [ + "meagan.steed" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132782,7 +132472,9 @@ "pk": 1207, "fields": { "evaluation": 482, - "contributor": 605, + "contributor": [ + "kathyrn.linder" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132798,7 +132490,9 @@ "pk": 1217, "fields": { "evaluation": 356, - "contributor": 482, + "contributor": [ + "kyra.hart" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132814,7 +132508,9 @@ "pk": 1228, "fields": { "evaluation": 318, - "contributor": 987, + "contributor": [ + "doria.matthews" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132830,7 +132526,9 @@ "pk": 1235, "fields": { "evaluation": 310, - "contributor": 395, + "contributor": [ + "al.jean" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132846,7 +132544,9 @@ "pk": 1242, "fields": { "evaluation": 310, - "contributor": 675, + "contributor": [ + "fay.westmoreland" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132861,7 +132561,9 @@ "pk": 1243, "fields": { "evaluation": 310, - "contributor": 71, + "contributor": [ + "jeannie.guffey" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132876,7 +132578,9 @@ "pk": 1244, "fields": { "evaluation": 311, - "contributor": 267, + "contributor": [ + "karine.prater" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132892,7 +132596,9 @@ "pk": 1246, "fields": { "evaluation": 359, - "contributor": 991, + "contributor": [ + "kacy.galvan.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132908,7 +132614,9 @@ "pk": 1247, "fields": { "evaluation": 359, - "contributor": 990, + "contributor": [ + "reyna.masterson.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132924,7 +132632,9 @@ "pk": 1249, "fields": { "evaluation": 329, - "contributor": 409, + "contributor": [ + "pamula.sims" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132940,7 +132650,9 @@ "pk": 1250, "fields": { "evaluation": 345, - "contributor": 993, + "contributor": [ + "beau.saunders.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132956,7 +132668,9 @@ "pk": 1253, "fields": { "evaluation": 329, - "contributor": 44, + "contributor": [ + "yong.shuler" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -132972,7 +132686,9 @@ "pk": 1256, "fields": { "evaluation": 348, - "contributor": 995, + "contributor": [ + "earline.hills" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -132987,7 +132703,9 @@ "pk": 1257, "fields": { "evaluation": 348, - "contributor": 996, + "contributor": [ + "mandy.harman" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133002,7 +132720,9 @@ "pk": 1258, "fields": { "evaluation": 348, - "contributor": 997, + "contributor": [ + "tonie.helms" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133017,7 +132737,9 @@ "pk": 1266, "fields": { "evaluation": 311, - "contributor": 998, + "contributor": [ + "vanetta.fleck" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133033,7 +132755,9 @@ "pk": 1282, "fields": { "evaluation": 327, - "contributor": 980, + "contributor": [ + "kassie.lockett" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133048,7 +132772,9 @@ "pk": 1283, "fields": { "evaluation": 327, - "contributor": 977, + "contributor": [ + "valery.bassett" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133063,7 +132789,9 @@ "pk": 1284, "fields": { "evaluation": 327, - "contributor": 1001, + "contributor": [ + "randee.griffith" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133078,7 +132806,9 @@ "pk": 1287, "fields": { "evaluation": 372, - "contributor": 994, + "contributor": [ + "merle.higdon.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133094,7 +132824,9 @@ "pk": 1288, "fields": { "evaluation": 372, - "contributor": 1005, + "contributor": [ + "millard.heath.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133110,7 +132842,9 @@ "pk": 1297, "fields": { "evaluation": 347, - "contributor": 1009, + "contributor": [ + "shayne.scruggs.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133126,7 +132860,9 @@ "pk": 1298, "fields": { "evaluation": 347, - "contributor": 1010, + "contributor": [ + "donetta.huffman.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133161,7 +132897,9 @@ "pk": 1613, "fields": { "evaluation": 641, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133177,7 +132915,9 @@ "pk": 1617, "fields": { "evaluation": 643, - "contributor": 93, + "contributor": [ + "viola.barringer" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133232,7 +132972,9 @@ "pk": 1635, "fields": { "evaluation": 652, - "contributor": 236, + "contributor": [ + "ingeborg.herring" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133265,7 +133007,9 @@ "pk": 1639, "fields": { "evaluation": 654, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133298,7 +133042,9 @@ "pk": 1641, "fields": { "evaluation": 655, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133330,7 +133076,9 @@ "pk": 1645, "fields": { "evaluation": 657, - "contributor": 186, + "contributor": [ + "ranae.fry.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133363,7 +133111,9 @@ "pk": 1657, "fields": { "evaluation": 663, - "contributor": 936, + "contributor": [ + "gaylene.timmons.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133397,7 +133147,9 @@ "pk": 1659, "fields": { "evaluation": 664, - "contributor": 116, + "contributor": [ + "hugh.runyon" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133430,7 +133182,9 @@ "pk": 1661, "fields": { "evaluation": 665, - "contributor": 1072, + "contributor": [ + "donnetta.casillas" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133463,7 +133217,9 @@ "pk": 1663, "fields": { "evaluation": 666, - "contributor": 283, + "contributor": [ + "darlena.holliman.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133498,7 +133254,9 @@ "pk": 1669, "fields": { "evaluation": 669, - "contributor": 116, + "contributor": [ + "hugh.runyon" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133532,7 +133290,9 @@ "pk": 1681, "fields": { "evaluation": 675, - "contributor": 648, + "contributor": [ + "henriette.park" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133565,7 +133325,9 @@ "pk": 1695, "fields": { "evaluation": 682, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133597,7 +133359,9 @@ "pk": 1703, "fields": { "evaluation": 686, - "contributor": 300, + "contributor": [ + "charity.leonard" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133648,7 +133412,9 @@ "pk": 1721, "fields": { "evaluation": 695, - "contributor": 173, + "contributor": [ + "chieko.lehman" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133685,7 +133451,9 @@ "pk": 1725, "fields": { "evaluation": 697, - "contributor": 222, + "contributor": [ + "evie.martz" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133718,7 +133486,9 @@ "pk": 1727, "fields": { "evaluation": 698, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133751,7 +133521,9 @@ "pk": 1735, "fields": { "evaluation": 702, - "contributor": 186, + "contributor": [ + "ranae.fry.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133784,7 +133556,9 @@ "pk": 1749, "fields": { "evaluation": 709, - "contributor": 326, + "contributor": [ + "junie.hicks" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -133800,7 +133574,9 @@ "pk": 1776, "fields": { "evaluation": 652, - "contributor": 408, + "contributor": [ + "britteny.easley" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133817,7 +133593,9 @@ "pk": 1777, "fields": { "evaluation": 652, - "contributor": 28, + "contributor": [ + "lynn.baptiste" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133833,7 +133611,9 @@ "pk": 1778, "fields": { "evaluation": 652, - "contributor": 495, + "contributor": [ + "juanita.kimbrough" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133849,7 +133629,9 @@ "pk": 1779, "fields": { "evaluation": 652, - "contributor": 942, + "contributor": [ + "reyna.mondragon" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133865,7 +133647,9 @@ "pk": 1780, "fields": { "evaluation": 652, - "contributor": 274, + "contributor": [ + "janna.langlois" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133881,7 +133665,9 @@ "pk": 1781, "fields": { "evaluation": 652, - "contributor": 578, + "contributor": [ + "darnell.aguilera" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133897,7 +133683,9 @@ "pk": 1782, "fields": { "evaluation": 652, - "contributor": 49, + "contributor": [ + "oscar.christie" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133913,7 +133701,9 @@ "pk": 1783, "fields": { "evaluation": 652, - "contributor": 1084, + "contributor": [ + "melania.wolfe" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133929,7 +133719,9 @@ "pk": 1784, "fields": { "evaluation": 652, - "contributor": 883, + "contributor": [ + "kayce.grigsby" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133945,7 +133737,9 @@ "pk": 1785, "fields": { "evaluation": 652, - "contributor": 759, + "contributor": [ + "concha.ezell" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133961,7 +133755,9 @@ "pk": 1786, "fields": { "evaluation": 652, - "contributor": 900, + "contributor": [ + "odessa.mcmullen" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133977,7 +133773,9 @@ "pk": 1797, "fields": { "evaluation": 675, - "contributor": 1103, + "contributor": [ + "sunni.patten" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -133993,7 +133791,9 @@ "pk": 1798, "fields": { "evaluation": 675, - "contributor": 690, + "contributor": [ + "january.copeland" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134009,7 +133809,9 @@ "pk": 1799, "fields": { "evaluation": 675, - "contributor": 1, + "contributor": [ + "luann.schulz" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134025,7 +133827,9 @@ "pk": 1802, "fields": { "evaluation": 648, - "contributor": 945, + "contributor": [ + "lakisha.tisdale.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134041,7 +133845,9 @@ "pk": 1803, "fields": { "evaluation": 648, - "contributor": 844, + "contributor": [ + "esther.ulrich" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134057,7 +133863,9 @@ "pk": 1804, "fields": { "evaluation": 648, - "contributor": 701, + "contributor": [ + "arturo.heflin" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134073,7 +133881,9 @@ "pk": 1805, "fields": { "evaluation": 648, - "contributor": 972, + "contributor": [ + "chrissy.rector.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134089,7 +133899,9 @@ "pk": 1806, "fields": { "evaluation": 648, - "contributor": 974, + "contributor": [ + "jen.jacoby.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134105,7 +133917,9 @@ "pk": 1807, "fields": { "evaluation": 648, - "contributor": 970, + "contributor": [ + "inell.bolden.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134121,7 +133935,9 @@ "pk": 1808, "fields": { "evaluation": 648, - "contributor": 2322, + "contributor": [ + "wes.eaton.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134137,7 +133953,9 @@ "pk": 1809, "fields": { "evaluation": 663, - "contributor": 1105, + "contributor": [ + "qiana.briscoe.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134153,7 +133971,9 @@ "pk": 1810, "fields": { "evaluation": 648, - "contributor": 973, + "contributor": [ + "dorla.hudgins.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134169,7 +133989,9 @@ "pk": 1811, "fields": { "evaluation": 648, - "contributor": 1108, + "contributor": [ + "zita.marshall.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134185,7 +134007,9 @@ "pk": 1812, "fields": { "evaluation": 648, - "contributor": 1109, + "contributor": [ + "madaline.marcum.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134202,7 +134026,9 @@ "pk": 1822, "fields": { "evaluation": 665, - "contributor": 99, + "contributor": [ + "sindy.boisvert" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134218,7 +134044,9 @@ "pk": 1824, "fields": { "evaluation": 665, - "contributor": 1110, + "contributor": [ + "miles.huntington" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134234,7 +134062,9 @@ "pk": 1825, "fields": { "evaluation": 641, - "contributor": 633, + "contributor": [ + "wyatt.fairchild.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134250,7 +134080,9 @@ "pk": 1826, "fields": { "evaluation": 641, - "contributor": 200, + "contributor": [ + "randolph.patrick" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134266,7 +134098,9 @@ "pk": 1827, "fields": { "evaluation": 641, - "contributor": 539, + "contributor": [ + "georgann.mcneill" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134282,7 +134116,9 @@ "pk": 1828, "fields": { "evaluation": 698, - "contributor": 178, + "contributor": [ + "lindsy.clement.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134298,7 +134134,9 @@ "pk": 1835, "fields": { "evaluation": 643, - "contributor": 897, + "contributor": [ + "bailey.roybal" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134314,7 +134152,9 @@ "pk": 1836, "fields": { "evaluation": 643, - "contributor": 915, + "contributor": [ + "catharine.medeiros" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134349,7 +134189,9 @@ "pk": 1842, "fields": { "evaluation": 686, - "contributor": 484, + "contributor": [ + "harriet.rushing" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134365,7 +134207,9 @@ "pk": 1843, "fields": { "evaluation": 686, - "contributor": 208, + "contributor": [ + "gabriela.carlisle" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134381,7 +134225,9 @@ "pk": 1844, "fields": { "evaluation": 686, - "contributor": 61, + "contributor": [ + "eboni.maldonado.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134397,7 +134243,9 @@ "pk": 1845, "fields": { "evaluation": 686, - "contributor": 191, + "contributor": [ + "errol.simon" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134413,7 +134261,9 @@ "pk": 1849, "fields": { "evaluation": 686, - "contributor": 1113, + "contributor": [ + "damion.navarrete" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134429,7 +134279,9 @@ "pk": 1851, "fields": { "evaluation": 698, - "contributor": 423, + "contributor": [ + "sharon.cress" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134445,7 +134297,9 @@ "pk": 1852, "fields": { "evaluation": 648, - "contributor": 251, + "contributor": [ + "kindra.hancock.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -134460,7 +134314,9 @@ "pk": 1860, "fields": { "evaluation": 690, - "contributor": 987, + "contributor": [ + "doria.matthews" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134477,7 +134333,9 @@ "pk": 1863, "fields": { "evaluation": 709, - "contributor": 985, + "contributor": [ + "olivia.trevino" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134493,7 +134351,9 @@ "pk": 1866, "fields": { "evaluation": 690, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -134508,7 +134368,9 @@ "pk": 1867, "fields": { "evaluation": 654, - "contributor": 482, + "contributor": [ + "kyra.hart" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134524,7 +134386,9 @@ "pk": 1868, "fields": { "evaluation": 654, - "contributor": 982, + "contributor": [ + "malika.hansen" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134540,7 +134404,9 @@ "pk": 1869, "fields": { "evaluation": 654, - "contributor": 1119, + "contributor": [ + "tequila.huang" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134556,7 +134422,9 @@ "pk": 1870, "fields": { "evaluation": 654, - "contributor": 145, + "contributor": [ + "beth.carlton" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134572,7 +134440,9 @@ "pk": 1871, "fields": { "evaluation": 654, - "contributor": 984, + "contributor": [ + "alix.mancini" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134588,7 +134458,9 @@ "pk": 1872, "fields": { "evaluation": 655, - "contributor": 482, + "contributor": [ + "kyra.hart" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134604,7 +134476,9 @@ "pk": 1873, "fields": { "evaluation": 655, - "contributor": 982, + "contributor": [ + "malika.hansen" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134620,7 +134494,9 @@ "pk": 1874, "fields": { "evaluation": 655, - "contributor": 1120, + "contributor": [ + "xavier.luciano" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134636,7 +134512,9 @@ "pk": 1880, "fields": { "evaluation": 682, - "contributor": 986, + "contributor": [ + "sherlene.bobbitt.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134652,7 +134530,9 @@ "pk": 1881, "fields": { "evaluation": 682, - "contributor": 985, + "contributor": [ + "olivia.trevino" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134668,7 +134548,9 @@ "pk": 1884, "fields": { "evaluation": 697, - "contributor": 419, + "contributor": [ + "tonita.gallardo" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -134701,7 +134583,9 @@ "pk": 1922, "fields": { "evaluation": 730, - "contributor": 937, + "contributor": [ + "sonia.dominguez.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -134737,7 +134621,9 @@ "pk": 3355, "fields": { "evaluation": 1454, - "contributor": 643, + "contributor": [ + "arron.tran" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -134769,7 +134655,9 @@ "pk": 3367, "fields": { "evaluation": 1460, - "contributor": 236, + "contributor": [ + "ingeborg.herring" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -134801,7 +134689,9 @@ "pk": 3373, "fields": { "evaluation": 1463, - "contributor": 2325, + "contributor": [ + "mariann.locke.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -134833,7 +134723,9 @@ "pk": 3383, "fields": { "evaluation": 1468, - "contributor": 648, + "contributor": [ + "henriette.park" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -134868,7 +134760,9 @@ "pk": 3391, "fields": { "evaluation": 1472, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -134903,7 +134797,9 @@ "pk": 3395, "fields": { "evaluation": 1474, - "contributor": 127, + "contributor": [ + "elena.kline" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -134936,7 +134832,9 @@ "pk": 3405, "fields": { "evaluation": 1479, - "contributor": 2341, + "contributor": [ + "luciana.graves" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -134972,7 +134870,9 @@ "pk": 3407, "fields": { "evaluation": 1480, - "contributor": 222, + "contributor": [ + "evie.martz" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135004,7 +134904,9 @@ "pk": 3417, "fields": { "evaluation": 1485, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135038,7 +134940,9 @@ "pk": 3423, "fields": { "evaluation": 1488, - "contributor": 251, + "contributor": [ + "kindra.hancock.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135073,7 +134977,9 @@ "pk": 3435, "fields": { "evaluation": 1494, - "contributor": 2086, + "contributor": [ + "amelia.handy.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135121,11 +135027,13 @@ "pk": 3443, "fields": { "evaluation": 1498, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, - "order": 1, + "order": 2, "questionnaires": [] } }, @@ -135151,7 +135059,9 @@ "pk": 3445, "fields": { "evaluation": 1499, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135183,7 +135093,9 @@ "pk": 3447, "fields": { "evaluation": 1500, - "contributor": 641, + "contributor": [ + "sandee.coker" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135214,7 +135126,9 @@ "pk": 3451, "fields": { "evaluation": 1502, - "contributor": 2325, + "contributor": [ + "mariann.locke.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135247,7 +135161,9 @@ "pk": 3453, "fields": { "evaluation": 1503, - "contributor": 204, + "contributor": [ + "lizabeth.steward" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135280,7 +135196,9 @@ "pk": 3455, "fields": { "evaluation": 1504, - "contributor": 484, + "contributor": [ + "harriet.rushing" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135310,7 +135228,9 @@ "pk": 3459, "fields": { "evaluation": 1506, - "contributor": 648, + "contributor": [ + "henriette.park" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135338,7 +135258,9 @@ "pk": 3461, "fields": { "evaluation": 1507, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135370,7 +135292,9 @@ "pk": 3463, "fields": { "evaluation": 1508, - "contributor": 1075, + "contributor": [ + "trudie.huntley" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135403,7 +135327,9 @@ "pk": 3467, "fields": { "evaluation": 1510, - "contributor": 127, + "contributor": [ + "elena.kline" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135438,7 +135364,9 @@ "pk": 3473, "fields": { "evaluation": 1513, - "contributor": 994, + "contributor": [ + "merle.higdon.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135473,7 +135401,9 @@ "pk": 3475, "fields": { "evaluation": 1514, - "contributor": 236, + "contributor": [ + "ingeborg.herring" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135504,7 +135434,9 @@ "pk": 3483, "fields": { "evaluation": 1518, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135535,7 +135467,9 @@ "pk": 3487, "fields": { "evaluation": 1520, - "contributor": 236, + "contributor": [ + "ingeborg.herring" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135568,7 +135502,9 @@ "pk": 3497, "fields": { "evaluation": 1525, - "contributor": 236, + "contributor": [ + "ingeborg.herring" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135600,7 +135536,9 @@ "pk": 3509, "fields": { "evaluation": 1531, - "contributor": 236, + "contributor": [ + "ingeborg.herring" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135616,7 +135554,9 @@ "pk": 3515, "fields": { "evaluation": 1531, - "contributor": 495, + "contributor": [ + "juanita.kimbrough" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135632,7 +135572,9 @@ "pk": 3516, "fields": { "evaluation": 1520, - "contributor": 578, + "contributor": [ + "darnell.aguilera" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135649,7 +135591,9 @@ "pk": 3517, "fields": { "evaluation": 1520, - "contributor": 28, + "contributor": [ + "lynn.baptiste" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135666,7 +135610,9 @@ "pk": 3518, "fields": { "evaluation": 1520, - "contributor": 274, + "contributor": [ + "janna.langlois" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135683,7 +135629,9 @@ "pk": 3519, "fields": { "evaluation": 1514, - "contributor": 490, + "contributor": [ + "elbert.baber.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135699,7 +135647,9 @@ "pk": 3525, "fields": { "evaluation": 1460, - "contributor": 28, + "contributor": [ + "lynn.baptiste" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135715,7 +135665,9 @@ "pk": 3526, "fields": { "evaluation": 1460, - "contributor": 1084, + "contributor": [ + "melania.wolfe" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135731,7 +135683,9 @@ "pk": 3528, "fields": { "evaluation": 1510, - "contributor": 217, + "contributor": [ + "tanna.worsham.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135748,7 +135702,9 @@ "pk": 3529, "fields": { "evaluation": 1474, - "contributor": 14, + "contributor": [ + "willena.hemphill" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135764,7 +135720,9 @@ "pk": 3530, "fields": { "evaluation": 1474, - "contributor": 217, + "contributor": [ + "tanna.worsham.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135781,7 +135739,9 @@ "pk": 3536, "fields": { "evaluation": 1518, - "contributor": 318, + "contributor": [ + "laurence.tipton" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135797,7 +135757,9 @@ "pk": 3545, "fields": { "evaluation": 1497, - "contributor": 985, + "contributor": [ + "olivia.trevino" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135814,7 +135776,9 @@ "pk": 3546, "fields": { "evaluation": 1497, - "contributor": 326, + "contributor": [ + "junie.hicks" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135831,7 +135795,9 @@ "pk": 3551, "fields": { "evaluation": 1472, - "contributor": 987, + "contributor": [ + "doria.matthews" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135847,7 +135813,9 @@ "pk": 3552, "fields": { "evaluation": 1472, - "contributor": 1117, + "contributor": [ + "toi.grantham" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135863,7 +135831,9 @@ "pk": 3553, "fields": { "evaluation": 1472, - "contributor": 52, + "contributor": [ + "sharee.hoskins" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135879,7 +135849,9 @@ "pk": 3555, "fields": { "evaluation": 1485, - "contributor": 1120, + "contributor": [ + "xavier.luciano" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135895,7 +135867,9 @@ "pk": 3556, "fields": { "evaluation": 1514, - "contributor": 2118, + "contributor": [ + "karan.bloom.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135911,7 +135885,9 @@ "pk": 3560, "fields": { "evaluation": 1497, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -135926,7 +135902,9 @@ "pk": 3566, "fields": { "evaluation": 1480, - "contributor": 1125, + "contributor": [ + "elias.troy" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135942,7 +135920,9 @@ "pk": 3589, "fields": { "evaluation": 1513, - "contributor": 650, + "contributor": [ + "lisandra.grace.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135958,7 +135938,9 @@ "pk": 3592, "fields": { "evaluation": 1488, - "contributor": 974, + "contributor": [ + "jen.jacoby.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135974,7 +135956,9 @@ "pk": 3593, "fields": { "evaluation": 1488, - "contributor": 1840, + "contributor": [ + "verdell.joyner" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -135990,7 +135974,9 @@ "pk": 3594, "fields": { "evaluation": 1488, - "contributor": 972, + "contributor": [ + "chrissy.rector.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136006,7 +135992,9 @@ "pk": 3595, "fields": { "evaluation": 1488, - "contributor": 2322, + "contributor": [ + "wes.eaton.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136022,7 +136010,9 @@ "pk": 3596, "fields": { "evaluation": 1488, - "contributor": 970, + "contributor": [ + "inell.bolden.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136038,7 +136028,9 @@ "pk": 3597, "fields": { "evaluation": 1488, - "contributor": 2126, + "contributor": [ + "rubin.gaston.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136054,7 +136046,9 @@ "pk": 3598, "fields": { "evaluation": 1488, - "contributor": 2127, + "contributor": [ + "antwan.brady.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136070,7 +136064,9 @@ "pk": 3603, "fields": { "evaluation": 1479, - "contributor": 990, + "contributor": [ + "reyna.masterson.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136085,7 +136081,9 @@ "pk": 3606, "fields": { "evaluation": 1479, - "contributor": 991, + "contributor": [ + "kacy.galvan.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136100,7 +136098,9 @@ "pk": 3607, "fields": { "evaluation": 1504, - "contributor": 950, + "contributor": [ + "leola.parrott.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136118,7 +136118,9 @@ "pk": 3608, "fields": { "evaluation": 1504, - "contributor": 395, + "contributor": [ + "al.jean" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136136,7 +136138,9 @@ "pk": 3609, "fields": { "evaluation": 1504, - "contributor": 675, + "contributor": [ + "fay.westmoreland" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136153,7 +136157,9 @@ "pk": 3610, "fields": { "evaluation": 1504, - "contributor": 60, + "contributor": [ + "maegan.mccorkle" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136170,7 +136176,9 @@ "pk": 3620, "fields": { "evaluation": 1504, - "contributor": 208, + "contributor": [ + "gabriela.carlisle" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136185,7 +136193,9 @@ "pk": 3631, "fields": { "evaluation": 1454, - "contributor": 174, + "contributor": [ + "lois.seibert" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136200,7 +136210,9 @@ "pk": 3634, "fields": { "evaluation": 1468, - "contributor": 690, + "contributor": [ + "january.copeland" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136216,7 +136228,9 @@ "pk": 3635, "fields": { "evaluation": 1468, - "contributor": 1103, + "contributor": [ + "sunni.patten" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136232,7 +136246,9 @@ "pk": 3636, "fields": { "evaluation": 1468, - "contributor": 464, + "contributor": [ + "tabitha.sutter" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136248,7 +136264,9 @@ "pk": 3637, "fields": { "evaluation": 1468, - "contributor": 1149, + "contributor": [ + "rey.stamper.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136264,7 +136282,9 @@ "pk": 3638, "fields": { "evaluation": 1468, - "contributor": 1104, + "contributor": [ + "pearline.ellington" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136296,7 +136316,9 @@ "pk": 3646, "fields": { "evaluation": 1534, - "contributor": 300, + "contributor": [ + "charity.leonard" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136313,7 +136335,9 @@ "pk": 3647, "fields": { "evaluation": 1534, - "contributor": 484, + "contributor": [ + "harriet.rushing" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136329,7 +136353,9 @@ "pk": 3648, "fields": { "evaluation": 1534, - "contributor": 323, + "contributor": [ + "jolene.squires" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136345,7 +136371,9 @@ "pk": 3649, "fields": { "evaluation": 1534, - "contributor": 950, + "contributor": [ + "leola.parrott.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136361,7 +136389,9 @@ "pk": 3650, "fields": { "evaluation": 1534, - "contributor": 61, + "contributor": [ + "eboni.maldonado.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136377,7 +136407,9 @@ "pk": 3651, "fields": { "evaluation": 1534, - "contributor": 1113, + "contributor": [ + "damion.navarrete" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136393,7 +136425,9 @@ "pk": 3652, "fields": { "evaluation": 1534, - "contributor": 191, + "contributor": [ + "errol.simon" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136409,7 +136443,9 @@ "pk": 3653, "fields": { "evaluation": 1534, - "contributor": 998, + "contributor": [ + "vanetta.fleck" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136425,7 +136461,9 @@ "pk": 3654, "fields": { "evaluation": 1534, - "contributor": 395, + "contributor": [ + "al.jean" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136459,7 +136497,9 @@ "pk": 3666, "fields": { "evaluation": 1540, - "contributor": 648, + "contributor": [ + "henriette.park" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136493,7 +136533,9 @@ "pk": 3674, "fields": { "evaluation": 1544, - "contributor": 1105, + "contributor": [ + "qiana.briscoe.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136526,7 +136568,9 @@ "pk": 3676, "fields": { "evaluation": 1545, - "contributor": 1105, + "contributor": [ + "qiana.briscoe.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136562,7 +136606,9 @@ "pk": 3680, "fields": { "evaluation": 1547, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136594,7 +136640,9 @@ "pk": 3682, "fields": { "evaluation": 1548, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136626,7 +136674,9 @@ "pk": 3684, "fields": { "evaluation": 1549, - "contributor": 633, + "contributor": [ + "wyatt.fairchild.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -136659,7 +136709,9 @@ "pk": 3686, "fields": { "evaluation": 1550, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136691,7 +136743,9 @@ "pk": 3694, "fields": { "evaluation": 1554, - "contributor": 127, + "contributor": [ + "elena.kline" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136722,7 +136776,9 @@ "pk": 3704, "fields": { "evaluation": 1559, - "contributor": 283, + "contributor": [ + "darlena.holliman.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136758,7 +136814,9 @@ "pk": 3712, "fields": { "evaluation": 1563, - "contributor": 236, + "contributor": [ + "ingeborg.herring" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136791,7 +136849,9 @@ "pk": 3714, "fields": { "evaluation": 1564, - "contributor": 2086, + "contributor": [ + "amelia.handy.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136827,7 +136887,9 @@ "pk": 3722, "fields": { "evaluation": 1568, - "contributor": 251, + "contributor": [ + "kindra.hancock.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136860,7 +136922,9 @@ "pk": 3724, "fields": { "evaluation": 1569, - "contributor": 249, + "contributor": [ + "sunni.hollingsworth" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136895,7 +136959,9 @@ "pk": 3726, "fields": { "evaluation": 1570, - "contributor": 249, + "contributor": [ + "sunni.hollingsworth" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136928,7 +136994,9 @@ "pk": 3728, "fields": { "evaluation": 1571, - "contributor": 2325, + "contributor": [ + "mariann.locke.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136962,7 +137030,9 @@ "pk": 3736, "fields": { "evaluation": 1575, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -136997,7 +137067,9 @@ "pk": 3740, "fields": { "evaluation": 1577, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137031,7 +137103,9 @@ "pk": 3746, "fields": { "evaluation": 1580, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137063,7 +137137,9 @@ "pk": 3752, "fields": { "evaluation": 1583, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137097,7 +137173,9 @@ "pk": 3756, "fields": { "evaluation": 1585, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137130,7 +137208,9 @@ "pk": 3758, "fields": { "evaluation": 1586, - "contributor": 2186, + "contributor": [ + "emilee.beavers.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": "", @@ -137164,7 +137244,9 @@ "pk": 3760, "fields": { "evaluation": 1587, - "contributor": 484, + "contributor": [ + "harriet.rushing" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137199,7 +137281,9 @@ "pk": 3776, "fields": { "evaluation": 1595, - "contributor": 204, + "contributor": [ + "lizabeth.steward" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137234,7 +137318,9 @@ "pk": 3782, "fields": { "evaluation": 1598, - "contributor": 74, + "contributor": [ + "brian.david.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137267,7 +137353,9 @@ "pk": 3786, "fields": { "evaluation": 1600, - "contributor": 173, + "contributor": [ + "chieko.lehman" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137300,7 +137388,9 @@ "pk": 3792, "fields": { "evaluation": 1603, - "contributor": 173, + "contributor": [ + "chieko.lehman" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137333,7 +137423,9 @@ "pk": 3796, "fields": { "evaluation": 1605, - "contributor": 640, + "contributor": [ + "arnold.lane" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137366,7 +137458,9 @@ "pk": 3806, "fields": { "evaluation": 1610, - "contributor": 937, + "contributor": [ + "sonia.dominguez.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137400,7 +137494,9 @@ "pk": 3812, "fields": { "evaluation": 1613, - "contributor": 641, + "contributor": [ + "sandee.coker" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137433,7 +137529,9 @@ "pk": 3814, "fields": { "evaluation": 1614, - "contributor": 641, + "contributor": [ + "sandee.coker" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137465,7 +137563,9 @@ "pk": 3822, "fields": { "evaluation": 1618, - "contributor": 635, + "contributor": [ + "jospeh.thorp.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137481,7 +137581,9 @@ "pk": 3831, "fields": { "evaluation": 1585, - "contributor": 2141, + "contributor": [ + "vania.talbert.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137497,7 +137599,9 @@ "pk": 3832, "fields": { "evaluation": 1585, - "contributor": 2140, + "contributor": [ + "pamala.galbraith.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137513,7 +137617,9 @@ "pk": 3834, "fields": { "evaluation": 1598, - "contributor": 33, + "contributor": [ + "latosha.moon" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137529,7 +137635,9 @@ "pk": 3835, "fields": { "evaluation": 1598, - "contributor": 208, + "contributor": [ + "gabriela.carlisle" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137545,7 +137653,9 @@ "pk": 3847, "fields": { "evaluation": 1563, - "contributor": 495, + "contributor": [ + "juanita.kimbrough" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137561,7 +137671,9 @@ "pk": 3848, "fields": { "evaluation": 1563, - "contributor": 28, + "contributor": [ + "lynn.baptiste" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137577,7 +137689,9 @@ "pk": 3849, "fields": { "evaluation": 1595, - "contributor": 1075, + "contributor": [ + "trudie.huntley" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137593,7 +137707,9 @@ "pk": 3852, "fields": { "evaluation": 1595, - "contributor": 2192, + "contributor": [ + "silva.couture" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137609,7 +137725,9 @@ "pk": 3855, "fields": { "evaluation": 1569, - "contributor": 993, + "contributor": [ + "beau.saunders.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137625,7 +137743,9 @@ "pk": 3859, "fields": { "evaluation": 1570, - "contributor": 1005, + "contributor": [ + "millard.heath.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137641,7 +137761,9 @@ "pk": 3862, "fields": { "evaluation": 1600, - "contributor": 2194, + "contributor": [ + "anglea.akers" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137657,7 +137779,9 @@ "pk": 3879, "fields": { "evaluation": 1559, - "contributor": 2196, + "contributor": [ + "hyon.sherry.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137673,7 +137797,9 @@ "pk": 3881, "fields": { "evaluation": 1540, - "contributor": 817, + "contributor": [ + "elissa.fowler" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137689,7 +137815,9 @@ "pk": 3882, "fields": { "evaluation": 1540, - "contributor": 830, + "contributor": [ + "criselda.henry" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137705,7 +137833,9 @@ "pk": 3883, "fields": { "evaluation": 1540, - "contributor": 882, + "contributor": [ + "eugenia.bauer" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137721,7 +137851,9 @@ "pk": 3884, "fields": { "evaluation": 1540, - "contributor": 731, + "contributor": [ + "mirtha.cleveland" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137737,7 +137869,9 @@ "pk": 3885, "fields": { "evaluation": 1549, - "contributor": 178, + "contributor": [ + "lindsy.clement.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137753,7 +137887,9 @@ "pk": 3886, "fields": { "evaluation": 1549, - "contributor": 1016, + "contributor": [ + "ricki.canada.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137769,7 +137905,9 @@ "pk": 3890, "fields": { "evaluation": 1548, - "contributor": 318, + "contributor": [ + "laurence.tipton" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137785,7 +137923,9 @@ "pk": 3893, "fields": { "evaluation": 1547, - "contributor": 2125, + "contributor": [ + "lashaunda.benoit" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137801,7 +137941,9 @@ "pk": 3894, "fields": { "evaluation": 1550, - "contributor": 2125, + "contributor": [ + "lashaunda.benoit" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137817,7 +137959,9 @@ "pk": 3895, "fields": { "evaluation": 1550, - "contributor": 200, + "contributor": [ + "randolph.patrick" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137833,7 +137977,9 @@ "pk": 3896, "fields": { "evaluation": 1550, - "contributor": 975, + "contributor": [ + "joella.naquin" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137849,7 +137995,9 @@ "pk": 3899, "fields": { "evaluation": 1605, - "contributor": 1001, + "contributor": [ + "randee.griffith" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137865,7 +138013,9 @@ "pk": 3900, "fields": { "evaluation": 1605, - "contributor": 1002, + "contributor": [ + "charlsie.pressley" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137881,7 +138031,9 @@ "pk": 3909, "fields": { "evaluation": 1549, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -137896,7 +138048,9 @@ "pk": 3912, "fields": { "evaluation": 1618, - "contributor": 2139, + "contributor": [ + "albina.dibble" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137912,7 +138066,9 @@ "pk": 3913, "fields": { "evaluation": 1618, - "contributor": 2199, + "contributor": [ + "aline.canady.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137928,7 +138084,9 @@ "pk": 3914, "fields": { "evaluation": 1618, - "contributor": 2200, + "contributor": [ + "velvet.paradis.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137944,7 +138102,9 @@ "pk": 3915, "fields": { "evaluation": 1564, - "contributor": 2201, + "contributor": [ + "carlo.breaux.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137960,7 +138120,9 @@ "pk": 3916, "fields": { "evaluation": 1568, - "contributor": 2068, + "contributor": [ + "domingo.mcnutt" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137976,7 +138138,9 @@ "pk": 3917, "fields": { "evaluation": 1568, - "contributor": 2202, + "contributor": [ + "candie.glaser.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -137992,7 +138156,9 @@ "pk": 3918, "fields": { "evaluation": 1568, - "contributor": 708, + "contributor": [ + "lita.regan" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138008,7 +138174,9 @@ "pk": 3919, "fields": { "evaluation": 1568, - "contributor": 974, + "contributor": [ + "jen.jacoby.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138024,7 +138192,9 @@ "pk": 3920, "fields": { "evaluation": 1568, - "contributor": 972, + "contributor": [ + "chrissy.rector.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138040,7 +138210,9 @@ "pk": 3921, "fields": { "evaluation": 1568, - "contributor": 1154, + "contributor": [ + "trey.ruby" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138056,7 +138228,9 @@ "pk": 3922, "fields": { "evaluation": 1568, - "contributor": 2126, + "contributor": [ + "rubin.gaston.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138072,7 +138246,9 @@ "pk": 3923, "fields": { "evaluation": 1554, - "contributor": 14, + "contributor": [ + "willena.hemphill" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138088,7 +138264,9 @@ "pk": 3929, "fields": { "evaluation": 1547, - "contributor": 2205, + "contributor": [ + "fernande.edwards" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138104,7 +138282,9 @@ "pk": 3932, "fields": { "evaluation": 1577, - "contributor": 52, + "contributor": [ + "sharee.hoskins" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138120,7 +138300,9 @@ "pk": 3934, "fields": { "evaluation": 1583, - "contributor": 982, + "contributor": [ + "malika.hansen" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138136,7 +138318,9 @@ "pk": 3935, "fields": { "evaluation": 1583, - "contributor": 1136, + "contributor": [ + "timika.angel.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138152,7 +138336,9 @@ "pk": 3936, "fields": { "evaluation": 1577, - "contributor": 2197, + "contributor": [ + "shanae.sam" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138168,7 +138354,9 @@ "pk": 3939, "fields": { "evaluation": 1580, - "contributor": 296, + "contributor": [ + "royce.vann.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138184,7 +138372,9 @@ "pk": 3941, "fields": { "evaluation": 1575, - "contributor": 987, + "contributor": [ + "doria.matthews" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138200,7 +138390,9 @@ "pk": 3942, "fields": { "evaluation": 1575, - "contributor": 52, + "contributor": [ + "sharee.hoskins" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138216,7 +138408,9 @@ "pk": 3943, "fields": { "evaluation": 1575, - "contributor": 1117, + "contributor": [ + "toi.grantham" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138232,7 +138426,9 @@ "pk": 3944, "fields": { "evaluation": 1575, - "contributor": 2197, + "contributor": [ + "shanae.sam" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138248,7 +138444,9 @@ "pk": 3960, "fields": { "evaluation": 1587, - "contributor": 191, + "contributor": [ + "errol.simon" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138265,7 +138463,9 @@ "pk": 3961, "fields": { "evaluation": 1587, - "contributor": 1113, + "contributor": [ + "damion.navarrete" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -138300,7 +138500,9 @@ "pk": 3975, "fields": { "evaluation": 1624, - "contributor": 173, + "contributor": [ + "chieko.lehman" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138333,7 +138535,9 @@ "pk": 3977, "fields": { "evaluation": 1625, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138367,7 +138571,9 @@ "pk": 3985, "fields": { "evaluation": 1629, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138403,7 +138609,9 @@ "pk": 3995, "fields": { "evaluation": 1634, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138436,7 +138644,9 @@ "pk": 4003, "fields": { "evaluation": 1638, - "contributor": 204, + "contributor": [ + "lizabeth.steward" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138469,7 +138679,9 @@ "pk": 4009, "fields": { "evaluation": 1641, - "contributor": 204, + "contributor": [ + "lizabeth.steward" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138499,7 +138711,9 @@ "pk": 4019, "fields": { "evaluation": 1646, - "contributor": 127, + "contributor": [ + "elena.kline" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138529,7 +138743,9 @@ "pk": 4021, "fields": { "evaluation": 1647, - "contributor": 127, + "contributor": [ + "elena.kline" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138566,7 +138782,9 @@ "pk": 4023, "fields": { "evaluation": 1648, - "contributor": 127, + "contributor": [ + "elena.kline" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138600,7 +138818,9 @@ "pk": 4025, "fields": { "evaluation": 1649, - "contributor": 127, + "contributor": [ + "elena.kline" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138634,7 +138854,9 @@ "pk": 4029, "fields": { "evaluation": 1651, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138662,7 +138884,9 @@ "pk": 4033, "fields": { "evaluation": 1653, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138692,7 +138916,9 @@ "pk": 4037, "fields": { "evaluation": 1655, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138726,7 +138952,9 @@ "pk": 4039, "fields": { "evaluation": 1656, - "contributor": 234, + "contributor": [ + "lahoma.gage" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138760,7 +138988,9 @@ "pk": 4041, "fields": { "evaluation": 1657, - "contributor": 959, + "contributor": [ + "lyndia.higdon" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138797,7 +139027,9 @@ "pk": 4047, "fields": { "evaluation": 1660, - "contributor": 222, + "contributor": [ + "evie.martz" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138832,7 +139064,9 @@ "pk": 4053, "fields": { "evaluation": 1663, - "contributor": 2319, + "contributor": [ + "salena.soriano" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138860,7 +139094,9 @@ "pk": 4063, "fields": { "evaluation": 1668, - "contributor": 2319, + "contributor": [ + "salena.soriano" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138890,7 +139126,9 @@ "pk": 4073, "fields": { "evaluation": 1673, - "contributor": 648, + "contributor": [ + "henriette.park" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": "", @@ -138926,7 +139164,9 @@ "pk": 4085, "fields": { "evaluation": 1679, - "contributor": 236, + "contributor": [ + "ingeborg.herring" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -138960,7 +139200,9 @@ "pk": 4091, "fields": { "evaluation": 1682, - "contributor": 236, + "contributor": [ + "ingeborg.herring" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": "", @@ -138991,7 +139233,9 @@ "pk": 4093, "fields": { "evaluation": 1683, - "contributor": 236, + "contributor": [ + "ingeborg.herring" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -139021,7 +139265,9 @@ "pk": 4095, "fields": { "evaluation": 1684, - "contributor": 937, + "contributor": [ + "sonia.dominguez.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -139056,7 +139302,9 @@ "pk": 4101, "fields": { "evaluation": 1687, - "contributor": 249, + "contributor": [ + "sunni.hollingsworth" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -139091,7 +139339,9 @@ "pk": 4113, "fields": { "evaluation": 1693, - "contributor": 815, + "contributor": [ + "evap" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -139124,7 +139374,9 @@ "pk": 4115, "fields": { "evaluation": 1694, - "contributor": 255, + "contributor": [ + "responsible" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -139159,7 +139411,9 @@ "pk": 4117, "fields": { "evaluation": 1695, - "contributor": 310, + "contributor": [ + "amos.benoit" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -139193,7 +139447,9 @@ "pk": 4119, "fields": { "evaluation": 1696, - "contributor": 650, + "contributor": [ + "lisandra.grace.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -139229,7 +139485,9 @@ "pk": 4121, "fields": { "evaluation": 1697, - "contributor": 2324, + "contributor": [ + "odis.cantu.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -139260,7 +139518,9 @@ "pk": 4123, "fields": { "evaluation": 1698, - "contributor": 2325, + "contributor": [ + "mariann.locke.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -139295,7 +139555,9 @@ "pk": 4129, "fields": { "evaluation": 1701, - "contributor": 2326, + "contributor": [ + "xuan.bustamante.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -139331,7 +139593,9 @@ "pk": 4139, "fields": { "evaluation": 1706, - "contributor": 2086, + "contributor": [ + "amelia.handy.ext" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -139363,7 +139627,9 @@ "pk": 4141, "fields": { "evaluation": 1707, - "contributor": 2341, + "contributor": [ + "luciana.graves" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -139379,7 +139645,9 @@ "pk": 4146, "fields": { "evaluation": 1641, - "contributor": 546, + "contributor": [ + "justa.baughman" + ], "can_edit": true, "textanswer_visibility": "OWN", "label": null, @@ -139395,7 +139663,9 @@ "pk": 4148, "fields": { "evaluation": 1687, - "contributor": 2330, + "contributor": [ + "sudie.phelan.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139411,7 +139681,9 @@ "pk": 4152, "fields": { "evaluation": 1679, - "contributor": 49, + "contributor": [ + "oscar.christie" + ], "can_edit": true, "textanswer_visibility": "OWN", "label": null, @@ -139428,7 +139700,9 @@ "pk": 4153, "fields": { "evaluation": 1679, - "contributor": 28, + "contributor": [ + "lynn.baptiste" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139444,7 +139718,9 @@ "pk": 4154, "fields": { "evaluation": 1679, - "contributor": 621, + "contributor": [ + "karly.clapp" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139460,7 +139736,9 @@ "pk": 4155, "fields": { "evaluation": 1679, - "contributor": 759, + "contributor": [ + "concha.ezell" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139476,7 +139754,9 @@ "pk": 4156, "fields": { "evaluation": 1679, - "contributor": 915, + "contributor": [ + "catharine.medeiros" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139492,7 +139772,9 @@ "pk": 4161, "fields": { "evaluation": 1625, - "contributor": 987, + "contributor": [ + "doria.matthews" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139508,7 +139790,9 @@ "pk": 4177, "fields": { "evaluation": 1696, - "contributor": 994, + "contributor": [ + "merle.higdon.ext" + ], "can_edit": true, "textanswer_visibility": "OWN", "label": null, @@ -139541,7 +139825,9 @@ "pk": 4186, "fields": { "evaluation": 1710, - "contributor": 116, + "contributor": [ + "hugh.runyon" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -139556,7 +139842,9 @@ "pk": 4187, "fields": { "evaluation": 1710, - "contributor": 586, + "contributor": [ + "antony.landry" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139572,7 +139860,9 @@ "pk": 4188, "fields": { "evaluation": 1710, - "contributor": 857, + "contributor": [ + "marilynn.oconnor" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139588,7 +139878,9 @@ "pk": 4189, "fields": { "evaluation": 1710, - "contributor": 1141, + "contributor": [ + "hilda.rocha" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139604,7 +139896,9 @@ "pk": 4190, "fields": { "evaluation": 1710, - "contributor": 731, + "contributor": [ + "mirtha.cleveland" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139620,7 +139914,9 @@ "pk": 4191, "fields": { "evaluation": 1710, - "contributor": 2095, + "contributor": [ + "ali.best" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139636,7 +139932,9 @@ "pk": 4192, "fields": { "evaluation": 1710, - "contributor": 808, + "contributor": [ + "virgina.carrasco" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139652,7 +139950,9 @@ "pk": 4203, "fields": { "evaluation": 1651, - "contributor": 633, + "contributor": [ + "wyatt.fairchild.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139668,7 +139968,9 @@ "pk": 4204, "fields": { "evaluation": 1651, - "contributor": 2125, + "contributor": [ + "lashaunda.benoit" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139684,7 +139986,9 @@ "pk": 4205, "fields": { "evaluation": 1651, - "contributor": 2205, + "contributor": [ + "fernande.edwards" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139700,7 +140004,9 @@ "pk": 4223, "fields": { "evaluation": 1663, - "contributor": 191, + "contributor": [ + "errol.simon" + ], "can_edit": true, "textanswer_visibility": "OWN", "label": null, @@ -139717,7 +140023,9 @@ "pk": 4227, "fields": { "evaluation": 1656, - "contributor": 633, + "contributor": [ + "wyatt.fairchild.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139733,7 +140041,9 @@ "pk": 4228, "fields": { "evaluation": 1656, - "contributor": 178, + "contributor": [ + "lindsy.clement.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139749,7 +140059,9 @@ "pk": 4229, "fields": { "evaluation": 1655, - "contributor": 633, + "contributor": [ + "wyatt.fairchild.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139765,7 +140077,9 @@ "pk": 4232, "fields": { "evaluation": 1624, - "contributor": 2194, + "contributor": [ + "anglea.akers" + ], "can_edit": true, "textanswer_visibility": "OWN", "label": null, @@ -139780,7 +140094,9 @@ "pk": 4233, "fields": { "evaluation": 1647, - "contributor": 2143, + "contributor": [ + "val.crocker.ext" + ], "can_edit": true, "textanswer_visibility": "OWN", "label": null, @@ -139796,7 +140112,9 @@ "pk": 4234, "fields": { "evaluation": 1647, - "contributor": 18, + "contributor": [ + "sergio.reichert.ext" + ], "can_edit": true, "textanswer_visibility": "OWN", "label": null, @@ -139812,7 +140130,9 @@ "pk": 4243, "fields": { "evaluation": 1649, - "contributor": 169, + "contributor": [ + "hue.fontenot.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139828,7 +140148,9 @@ "pk": 4244, "fields": { "evaluation": 1648, - "contributor": 169, + "contributor": [ + "hue.fontenot.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139845,7 +140167,9 @@ "pk": 4261, "fields": { "evaluation": 1660, - "contributor": 1125, + "contributor": [ + "elias.troy" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139861,7 +140185,9 @@ "pk": 4265, "fields": { "evaluation": 1663, - "contributor": 33, + "contributor": [ + "latosha.moon" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139877,7 +140203,9 @@ "pk": 4266, "fields": { "evaluation": 1663, - "contributor": 74, + "contributor": [ + "brian.david.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139893,7 +140221,9 @@ "pk": 4267, "fields": { "evaluation": 1663, - "contributor": 16, + "contributor": [ + "lyndsey.lattimore" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139909,7 +140239,9 @@ "pk": 4268, "fields": { "evaluation": 1663, - "contributor": 120, + "contributor": [ + "diane.carlton" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139925,7 +140257,9 @@ "pk": 4269, "fields": { "evaluation": 1663, - "contributor": 651, + "contributor": [ + "veta.branson" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139941,7 +140275,9 @@ "pk": 4270, "fields": { "evaluation": 1663, - "contributor": 267, + "contributor": [ + "karine.prater" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139957,7 +140293,9 @@ "pk": 4271, "fields": { "evaluation": 1663, - "contributor": 69, + "contributor": [ + "adriane.strain" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139973,7 +140311,9 @@ "pk": 4272, "fields": { "evaluation": 1663, - "contributor": 998, + "contributor": [ + "vanetta.fleck" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -139989,7 +140329,9 @@ "pk": 4278, "fields": { "evaluation": 1629, - "contributor": 2141, + "contributor": [ + "vania.talbert.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -140005,7 +140347,9 @@ "pk": 4279, "fields": { "evaluation": 1629, - "contributor": 2140, + "contributor": [ + "pamala.galbraith.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -140021,7 +140365,9 @@ "pk": 4283, "fields": { "evaluation": 1707, - "contributor": 991, + "contributor": [ + "kacy.galvan.ext" + ], "can_edit": true, "textanswer_visibility": "OWN", "label": null, @@ -140037,7 +140383,9 @@ "pk": 4284, "fields": { "evaluation": 1707, - "contributor": 990, + "contributor": [ + "reyna.masterson.ext" + ], "can_edit": true, "textanswer_visibility": "OWN", "label": null, @@ -140073,7 +140421,9 @@ "pk": 4293, "fields": { "evaluation": 1712, - "contributor": 601, + "contributor": [ + "corinne.tolliver" + ], "can_edit": true, "textanswer_visibility": "GENERAL", "label": null, @@ -140089,7 +140439,9 @@ "pk": 4294, "fields": { "evaluation": 1712, - "contributor": 611, + "contributor": [ + "editor" + ], "can_edit": true, "textanswer_visibility": "OWN", "label": null, @@ -140105,7 +140457,9 @@ "pk": 4295, "fields": { "evaluation": 1693, - "contributor": 714, + "contributor": [ + "contributor" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": null, @@ -140121,7 +140475,9 @@ "pk": 4296, "fields": { "evaluation": 1499, - "contributor": 815, + "contributor": [ + "evap" + ], "can_edit": true, "textanswer_visibility": "OWN", "label": null, @@ -140137,7 +140493,9 @@ "pk": 4297, "fields": { "evaluation": 1586, - "contributor": 91, + "contributor": [ + "nolan.pope.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": "Guest lecturer", @@ -140153,7 +140511,9 @@ "pk": 4298, "fields": { "evaluation": 1673, - "contributor": 490, + "contributor": [ + "elbert.baber.ext" + ], "can_edit": false, "textanswer_visibility": "OWN", "label": "Assistant", @@ -140207,6 +140567,21 @@ "questionnaires": [] } }, +{ + "model": "evaluation.contribution", + "pk": 4304, + "fields": { + "evaluation": 1498, + "contributor": [ + "keva.cheng" + ], + "can_edit": false, + "textanswer_visibility": "OWN", + "label": null, + "order": 1, + "questionnaires": [] + } +}, { "model": "evaluation.evaluation", "pk": 34, @@ -140227,20 +140602,44 @@ "last_modified_time": "2018-06-06T09:06:22.498", "last_modified_user": null, "participants": [ - 292, - 281, - 260, - 280, - 276, - 267, - 125 + [ + "trudie.clawson.ext" + ], + [ + "ema.clevenger.ext" + ], + [ + "jana.faust.ext" + ], + [ + "portia.hoffman" + ], + [ + "corliss.isaacson.ext" + ], + [ + "karine.prater" + ], + [ + "christel.skinner.ext" + ] ], "voters": [ - 260, - 280, - 276, - 267, - 125 + [ + "jana.faust.ext" + ], + [ + "portia.hoffman" + ], + [ + "corliss.isaacson.ext" + ], + [ + "karine.prater" + ], + [ + "christel.skinner.ext" + ] ] } }, @@ -140264,22 +140663,50 @@ "last_modified_time": "2018-06-03T10:22:16.291", "last_modified_user": null, "participants": [ - 608, - 561, - 651, - 557, - 690, - 570, - 60, - 616 + [ + "valda.antoine" + ], + [ + "lelia.beall" + ], + [ + "veta.branson" + ], + [ + "osvaldo.carrier" + ], + [ + "january.copeland" + ], + [ + "candie.lugo" + ], + [ + "maegan.mccorkle" + ], + [ + "maribel.scales" + ] ], "voters": [ - 608, - 561, - 557, - 690, - 570, - 616 + [ + "valda.antoine" + ], + [ + "lelia.beall" + ], + [ + "osvaldo.carrier" + ], + [ + "january.copeland" + ], + [ + "candie.lugo" + ], + [ + "maribel.scales" + ] ] } }, @@ -140303,16 +140730,32 @@ "last_modified_time": "2018-06-03T10:22:16.339", "last_modified_user": null, "participants": [ - 608, - 561, - 557, - 543, - 616, - 596 + [ + "valda.antoine" + ], + [ + "lelia.beall" + ], + [ + "osvaldo.carrier" + ], + [ + "majorie.godfrey" + ], + [ + "maribel.scales" + ], + [ + "meagan.steed" + ] ], "voters": [ - 561, - 557 + [ + "lelia.beall" + ], + [ + "osvaldo.carrier" + ] ] } }, @@ -140336,27 +140779,65 @@ "last_modified_time": "2018-06-06T09:06:22.574", "last_modified_user": null, "participants": [ - 665, - 680, - 671, - 645, - 559, - 39, - 668, - 672, - 653, - 686, - 669, - 591 + [ + "diedra.batson" + ], + [ + "jarod.cate" + ], + [ + "lavina.connor" + ], + [ + "cole.gamboa" + ], + [ + "elma.huynh" + ], + [ + "chanell.ly" + ], + [ + "lorene.moultrie" + ], + [ + "alfreda.roche" + ], + [ + "aleta.seymour" + ], + [ + "michaele.shuler" + ], + [ + "reynaldo.thayer" + ], + [ + "delegate" + ] ], "voters": [ - 665, - 671, - 559, - 668, - 672, - 686, - 591 + [ + "diedra.batson" + ], + [ + "lavina.connor" + ], + [ + "elma.huynh" + ], + [ + "lorene.moultrie" + ], + [ + "alfreda.roche" + ], + [ + "michaele.shuler" + ], + [ + "delegate" + ] ] } }, @@ -140380,36 +140861,92 @@ "last_modified_time": "2018-06-06T09:06:22.597", "last_modified_user": null, "participants": [ - 665, - 568, - 671, - 692, - 683, - 685, - 574, - 559, - 674, - 606, - 681, - 668, - 569, - 628, - 672, - 602, - 653, - 686, - 682 + [ + "diedra.batson" + ], + [ + "conception.belt" + ], + [ + "lavina.connor" + ], + [ + "wava.dolan" + ], + [ + "delena.gooch" + ], + [ + "mercedes.hatch" + ], + [ + "amado.huggins" + ], + [ + "elma.huynh" + ], + [ + "matthias.kober" + ], + [ + "halley.landrum" + ], + [ + "renaldo.melendez" + ], + [ + "lorene.moultrie" + ], + [ + "gracia.mullins" + ], + [ + "noriko.rau" + ], + [ + "alfreda.roche" + ], + [ + "sunshine.ruby" + ], + [ + "aleta.seymour" + ], + [ + "michaele.shuler" + ], + [ + "taunya.weinstein" + ] ], "voters": [ - 665, - 568, - 685, - 574, - 674, - 628, - 672, - 686, - 682 + [ + "diedra.batson" + ], + [ + "conception.belt" + ], + [ + "mercedes.hatch" + ], + [ + "amado.huggins" + ], + [ + "matthias.kober" + ], + [ + "noriko.rau" + ], + [ + "alfreda.roche" + ], + [ + "michaele.shuler" + ], + [ + "taunya.weinstein" + ] ] } }, @@ -140431,26 +140968,60 @@ "vote_start_datetime": "2012-03-01T00:00:00", "vote_end_date": "2012-03-18", "last_modified_time": "2018-06-03T10:22:16.361", - "last_modified_user": 1, + "last_modified_user": [ + "luann.schulz" + ], "participants": [ - 562, - 51, - 588, - 651, - 625, - 614, - 655, - 606, - 65, - 662, - 40, - 44, - 613 + [ + "damion.aiken" + ], + [ + "alanna.ali" + ], + [ + "lenard.bean" + ], + [ + "veta.branson" + ], + [ + "odette.chitwood" + ], + [ + "britany.estrella" + ], + [ + "sybil.everett" + ], + [ + "halley.landrum" + ], + [ + "marna.leboeuf" + ], + [ + "felice.meek" + ], + [ + "priscilla.shah" + ], + [ + "yong.shuler" + ], + [ + "emmaline.voigt" + ] ], "voters": [ - 625, - 662, - 40 + [ + "odette.chitwood" + ], + [ + "felice.meek" + ], + [ + "priscilla.shah" + ] ] } }, @@ -140472,25 +141043,57 @@ "vote_start_datetime": "2012-02-29T00:00:00", "vote_end_date": "2012-03-07", "last_modified_time": "2018-06-06T09:06:22.626", - "last_modified_user": 1, + "last_modified_user": [ + "luann.schulz" + ], "participants": [ - 581, - 547, - 590, - 658, - 684, - 542, - 65, - 672, - 939, - 565, - 604 + [ + "oma.abner" + ], + [ + "hilde.blankenship" + ], + [ + "jeni.cloutier" + ], + [ + "ardath.cross" + ], + [ + "ariana.houghton" + ], + [ + "laura.lamb" + ], + [ + "marna.leboeuf" + ], + [ + "alfreda.roche" + ], + [ + "elden.seitz" + ], + [ + "marleen.spivey" + ], + [ + "ilse.switzer" + ] ], "voters": [ - 590, - 542, - 65, - 939 + [ + "jeni.cloutier" + ], + [ + "laura.lamb" + ], + [ + "marna.leboeuf" + ], + [ + "elden.seitz" + ] ] } }, @@ -140514,11 +141117,21 @@ "last_modified_time": "2016-02-22T22:08:19.827", "last_modified_user": null, "participants": [ - 588, - 566, - 590, - 41, - 604 + [ + "lenard.bean" + ], + [ + "raisa.burbank" + ], + [ + "jeni.cloutier" + ], + [ + "alan.lachance" + ], + [ + "ilse.switzer" + ] ], "voters": [] } @@ -140543,79 +141156,221 @@ "last_modified_time": "2018-06-03T10:22:16.333", "last_modified_user": null, "participants": [ - 581, - 578, - 560, - 642, - 665, - 568, - 564, - 566, - 691, - 551, - 677, - 680, - 25, - 627, - 671, - 658, - 161, - 141, - 593, - 645, - 676, - 685, - 2183, - 674, - 605, - 80, - 584, - 623, - 681, - 689, - 668, - 569, - 4, - 672, - 663, - 660, - 597, - 664, - 79, - 939, - 653, - 686, - 609, - 582, - 596, - 661, - 667, - 673, - 682, - 3, - 687 + [ + "oma.abner" + ], + [ + "darnell.aguilera" + ], + [ + "mariann.alfonso" + ], + [ + "felton.alvarez" + ], + [ + "diedra.batson" + ], + [ + "conception.belt" + ], + [ + "ezequiel.brock" + ], + [ + "raisa.burbank" + ], + [ + "jeremiah.burkholder" + ], + [ + "kayleen.carper" + ], + [ + "josef.castellano" + ], + [ + "jarod.cate" + ], + [ + "isaiah.chisholm" + ], + [ + "leigha.christie" + ], + [ + "lavina.connor" + ], + [ + "ardath.cross" + ], + [ + "michell.dabbs" + ], + [ + "cherry.doughty" + ], + [ + "yolanda.farley" + ], + [ + "cole.gamboa" + ], + [ + "collin.hanley" + ], + [ + "mercedes.hatch" + ], + [ + "jaquelyn.huang" + ], + [ + "matthias.kober" + ], + [ + "kathyrn.linder" + ], + [ + "shela.lowell" + ], + [ + "marlana.mclain" + ], + [ + "nana.meador" + ], + [ + "renaldo.melendez" + ], + [ + "marya.metcalf" + ], + [ + "lorene.moultrie" + ], + [ + "gracia.mullins" + ], + [ + "chanelle.perales" + ], + [ + "alfreda.roche" + ], + [ + "macie.roller" + ], + [ + "nora.rowley" + ], + [ + "wade.ryan" + ], + [ + "keith.sanchez" + ], + [ + "alexis.sandoval" + ], + [ + "elden.seitz" + ], + [ + "aleta.seymour" + ], + [ + "michaele.shuler" + ], + [ + "lyndia.song" + ], + [ + "gilda.soper" + ], + [ + "meagan.steed" + ], + [ + "eugene.tennant" + ], + [ + "magen.thorn" + ], + [ + "myrtle.wahl" + ], + [ + "taunya.weinstein" + ], + [ + "barabara.whitlow" + ], + [ + "randi.woody" + ] ], "voters": [ - 581, - 578, - 560, - 665, - 568, - 161, - 593, - 676, - 685, - 674, - 584, - 689, - 672, - 663, - 939, - 686, - 596, - 673, - 682, - 3 + [ + "oma.abner" + ], + [ + "darnell.aguilera" + ], + [ + "mariann.alfonso" + ], + [ + "diedra.batson" + ], + [ + "conception.belt" + ], + [ + "michell.dabbs" + ], + [ + "yolanda.farley" + ], + [ + "collin.hanley" + ], + [ + "mercedes.hatch" + ], + [ + "matthias.kober" + ], + [ + "marlana.mclain" + ], + [ + "marya.metcalf" + ], + [ + "alfreda.roche" + ], + [ + "macie.roller" + ], + [ + "elden.seitz" + ], + [ + "michaele.shuler" + ], + [ + "meagan.steed" + ], + [ + "myrtle.wahl" + ], + [ + "taunya.weinstein" + ], + [ + "barabara.whitlow" + ] ] } }, @@ -140639,23 +141394,53 @@ "last_modified_time": "2018-06-06T09:06:22.679", "last_modified_user": null, "participants": [ - 562, - 2311, - 621, - 676, - 60, - 579, - 660, - 613, - 624, - 591 + [ + "damion.aiken" + ], + [ + "audra.alston.ext" + ], + [ + "karly.clapp" + ], + [ + "collin.hanley" + ], + [ + "maegan.mccorkle" + ], + [ + "wendie.pike" + ], + [ + "nora.rowley" + ], + [ + "emmaline.voigt" + ], + [ + "jennifer.yarbrough" + ], + [ + "delegate" + ] ], "voters": [ - 562, - 621, - 676, - 613, - 591 + [ + "damion.aiken" + ], + [ + "karly.clapp" + ], + [ + "collin.hanley" + ], + [ + "emmaline.voigt" + ], + [ + "delegate" + ] ] } }, @@ -140679,36 +141464,92 @@ "last_modified_time": "2018-06-06T09:06:22.592", "last_modified_user": null, "participants": [ - 642, - 588, - 566, - 656, - 627, - 590, - 658, - 387, - 649, - 2183, - 542, - 606, - 555, - 584, - 569, - 939, - 596, - 604, - 673, - 679 + [ + "felton.alvarez" + ], + [ + "lenard.bean" + ], + [ + "raisa.burbank" + ], + [ + "marquetta.cano" + ], + [ + "leigha.christie" + ], + [ + "jeni.cloutier" + ], + [ + "ardath.cross" + ], + [ + "jina.cushman" + ], + [ + "callie.grove" + ], + [ + "jaquelyn.huang" + ], + [ + "laura.lamb" + ], + [ + "halley.landrum" + ], + [ + "jacqui.lindsey" + ], + [ + "marlana.mclain" + ], + [ + "gracia.mullins" + ], + [ + "elden.seitz" + ], + [ + "meagan.steed" + ], + [ + "ilse.switzer" + ], + [ + "myrtle.wahl" + ], + [ + "student" + ] ], "voters": [ - 387, - 649, - 542, - 584, - 569, - 939, - 596, - 673 + [ + "jina.cushman" + ], + [ + "callie.grove" + ], + [ + "laura.lamb" + ], + [ + "marlana.mclain" + ], + [ + "gracia.mullins" + ], + [ + "elden.seitz" + ], + [ + "meagan.steed" + ], + [ + "myrtle.wahl" + ] ] } }, @@ -140732,29 +141573,71 @@ "last_modified_time": "2018-06-03T10:22:16.199", "last_modified_user": null, "participants": [ - 32, - 141, - 655, - 71, - 14, - 674, - 556, - 1004, - 662, - 686, - 673, - 675 + [ + "aleisha.brandon" + ], + [ + "cherry.doughty" + ], + [ + "sybil.everett" + ], + [ + "jeannie.guffey" + ], + [ + "willena.hemphill" + ], + [ + "matthias.kober" + ], + [ + "corine.lunsford" + ], + [ + "lissette.mccallister.ext" + ], + [ + "felice.meek" + ], + [ + "michaele.shuler" + ], + [ + "myrtle.wahl" + ], + [ + "fay.westmoreland" + ] ], "voters": [ - 141, - 14, - 674, - 556, - 1004, - 662, - 686, - 673, - 675 + [ + "cherry.doughty" + ], + [ + "willena.hemphill" + ], + [ + "matthias.kober" + ], + [ + "corine.lunsford" + ], + [ + "lissette.mccallister.ext" + ], + [ + "felice.meek" + ], + [ + "michaele.shuler" + ], + [ + "myrtle.wahl" + ], + [ + "fay.westmoreland" + ] ] } }, @@ -140776,27 +141659,63 @@ "vote_start_datetime": "2014-05-01T00:00:00", "vote_end_date": "2014-05-31", "last_modified_time": "2019-01-28T10:28:15.171", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 809, - 836, - 892, - 24, - 1140, - 848, - 1, - 592, - 675 + [ + "billi.arce" + ], + [ + "aida.broome" + ], + [ + "kiana.easley" + ], + [ + "maryetta.hollingsworth" + ], + [ + "ling.mcdade" + ], + [ + "tawanna.negrete" + ], + [ + "luann.schulz" + ], + [ + "giuseppina.waldrop" + ], + [ + "fay.westmoreland" + ] ], "voters": [ - 809, - 836, - 892, - 24, - 848, - 1, - 592, - 675 + [ + "billi.arce" + ], + [ + "aida.broome" + ], + [ + "kiana.easley" + ], + [ + "maryetta.hollingsworth" + ], + [ + "tawanna.negrete" + ], + [ + "luann.schulz" + ], + [ + "giuseppina.waldrop" + ], + [ + "fay.westmoreland" + ] ] } }, @@ -140820,22 +141739,50 @@ "last_modified_time": "2018-06-06T09:06:22.661", "last_modified_user": null, "participants": [ - 578, - 2311, - 571, - 684, - 548, - 659, - 65, - 660, - 174 + [ + "darnell.aguilera" + ], + [ + "audra.alston.ext" + ], + [ + "brenda.conway" + ], + [ + "ariana.houghton" + ], + [ + "clarence.kirkland" + ], + [ + "sabine.knight" + ], + [ + "marna.leboeuf" + ], + [ + "nora.rowley" + ], + [ + "lois.seibert" + ] ], "voters": [ - 578, - 571, - 684, - 548, - 659 + [ + "darnell.aguilera" + ], + [ + "brenda.conway" + ], + [ + "ariana.houghton" + ], + [ + "clarence.kirkland" + ], + [ + "sabine.knight" + ] ] } }, @@ -140859,104 +141806,296 @@ "last_modified_time": "2018-06-03T10:22:16.390", "last_modified_user": null, "participants": [ - 736, - 754, - 713, - 800, - 726, - 834, - 853, - 927, - 825, - 877, - 917, - 831, - 732, - 837, - 898, - 751, - 801, - 872, - 849, - 913, - 822, - 711, - 740, - 830, - 893, - 699, - 769, - 727, - 774, - 854, - 873, - 826, - 779, - 722, - 781, - 896, - 840, - 915, - 865, - 799, - 756, - 729, - 749, - 887, - 728, - 734, - 758, - 802, - 1141, - 806, - 705, - 724, - 757, - 742, - 786, - 862, - 838, - 844, - 810, - 714, - 815 + [ + "sandie.aiello" + ], + [ + "sheena.arsenault" + ], + [ + "gwyn.berger" + ], + [ + "hester.bettencourt" + ], + [ + "salina.boykin" + ], + [ + "angelo.bridges" + ], + [ + "jennette.briggs" + ], + [ + "delbert.calkins" + ], + [ + "cecile.caron" + ], + [ + "lindsey.carranza" + ], + [ + "gracie.childs" + ], + [ + "larita.dejesus" + ], + [ + "mickie.england" + ], + [ + "yong.furr" + ], + [ + "louann.gee" + ], + [ + "annmarie.godfrey" + ], + [ + "monet.greenlee" + ], + [ + "marshall.guerrero" + ], + [ + "isiah.hammonds" + ], + [ + "etha.hastings" + ], + [ + "mitchel.heard" + ], + [ + "lucia.helton" + ], + [ + "bertram.hendrick" + ], + [ + "criselda.henry" + ], + [ + "brigette.holden" + ], + [ + "marcos.huang" + ], + [ + "caryl.ivory" + ], + [ + "shanta.jay" + ], + [ + "kelsey.kay" + ], + [ + "velda.kimble" + ], + [ + "aide.kraft" + ], + [ + "kristine.leatherman" + ], + [ + "allie.lowell" + ], + [ + "earlene.marquis" + ], + [ + "dannielle.mattingly" + ], + [ + "ashlyn.mccartney" + ], + [ + "birdie.mcclintock" + ], + [ + "catharine.medeiros" + ], + [ + "maureen.moe" + ], + [ + "daphne.moll" + ], + [ + "xiomara.nakamura" + ], + [ + "shemeka.nieves" + ], + [ + "alona.oldham" + ], + [ + "roxy.olds" + ], + [ + "larraine.olson" + ], + [ + "tyrell.pfeiffer" + ], + [ + "precious.reiss" + ], + [ + "enid.robb" + ], + [ + "hilda.rocha" + ], + [ + "rebecca.schuler" + ], + [ + "camila.sharp" + ], + [ + "carman.slagle" + ], + [ + "jeannie.spears" + ], + [ + "kymberly.strange" + ], + [ + "rozella.swenson" + ], + [ + "karan.thacker" + ], + [ + "stacey.timmerman" + ], + [ + "esther.ulrich" + ], + [ + "danika.wills" + ], + [ + "contributor" + ], + [ + "evap" + ] ], "voters": [ - 754, - 713, - 800, - 726, - 927, - 825, - 877, - 831, - 732, - 801, - 872, - 913, - 822, - 711, - 830, - 893, - 699, - 727, - 774, - 873, - 826, - 779, - 722, - 896, - 865, - 756, - 729, - 749, - 734, - 806, - 742, - 786, - 844, - 714, - 815 + [ + "sheena.arsenault" + ], + [ + "gwyn.berger" + ], + [ + "hester.bettencourt" + ], + [ + "salina.boykin" + ], + [ + "delbert.calkins" + ], + [ + "cecile.caron" + ], + [ + "lindsey.carranza" + ], + [ + "larita.dejesus" + ], + [ + "mickie.england" + ], + [ + "monet.greenlee" + ], + [ + "marshall.guerrero" + ], + [ + "etha.hastings" + ], + [ + "mitchel.heard" + ], + [ + "lucia.helton" + ], + [ + "criselda.henry" + ], + [ + "brigette.holden" + ], + [ + "marcos.huang" + ], + [ + "shanta.jay" + ], + [ + "kelsey.kay" + ], + [ + "aide.kraft" + ], + [ + "kristine.leatherman" + ], + [ + "allie.lowell" + ], + [ + "earlene.marquis" + ], + [ + "ashlyn.mccartney" + ], + [ + "maureen.moe" + ], + [ + "xiomara.nakamura" + ], + [ + "shemeka.nieves" + ], + [ + "alona.oldham" + ], + [ + "tyrell.pfeiffer" + ], + [ + "rebecca.schuler" + ], + [ + "kymberly.strange" + ], + [ + "rozella.swenson" + ], + [ + "esther.ulrich" + ], + [ + "contributor" + ], + [ + "evap" + ] ] } }, @@ -140980,122 +142119,350 @@ "last_modified_time": "2018-06-06T09:06:22.587", "last_modified_user": null, "participants": [ - 693, - 881, - 819, - 866, - 725, - 823, - 723, - 797, - 791, - 773, - 780, - 894, - 888, - 770, - 935, - 868, - 828, - 775, - 767, - 832, - 785, - 807, - 891, - 817, - 875, - 820, - 811, - 855, - 766, - 871, - 701, - 747, - 750, - 914, - 782, - 905, - 886, - 867, - 870, - 856, - 812, - 704, - 924, - 762, - 901, - 700, - 814, - 932, - 735, - 710, - 2144, - 869, - 919, - 827, - 911, - 718, - 923, - 708, - 885, - 772, - 798, - 761, - 920, - 804, - 2132, - 862, - 922, - 843, - 926, - 876, - 765, - 874, - 719, - 803, - 764, - 792, - 821, - 833 + [ + "herminia.alley" + ], + [ + "shaunna.barnard" + ], + [ + "cherly.bobbitt" + ], + [ + "myrtice.bohannon" + ], + [ + "vincenzo.boston" + ], + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "annmarie.briscoe" + ], + [ + "margery.campos" + ], + [ + "kirstin.carbone" + ], + [ + "florene.carney" + ], + [ + "jeremy.carrington" + ], + [ + "alene.casas" + ], + [ + "zack.chaffin" + ], + [ + "keva.cheng" + ], + [ + "dannie.cochran" + ], + [ + "maribeth.compton" + ], + [ + "penelope.covert" + ], + [ + "mable.craddock" + ], + [ + "mercedez.cupp" + ], + [ + "maxine.dexter" + ], + [ + "dale.earnest" + ], + [ + "hester.ferro" + ], + [ + "elissa.fowler" + ], + [ + "delila.fredrickson" + ], + [ + "wilmer.goodson" + ], + [ + "wyatt.hale" + ], + [ + "kaitlin.hamblin" + ], + [ + "risa.hammer" + ], + [ + "azzie.heaton" + ], + [ + "arturo.heflin" + ], + [ + "lachelle.hermann" + ], + [ + "kristyn.holcomb" + ], + [ + "tami.isaac" + ], + [ + "corrine.kell" + ], + [ + "genevive.kelly" + ], + [ + "hollie.labonte" + ], + [ + "melody.large" + ], + [ + "ta.larry" + ], + [ + "bud.ledbetter" + ], + [ + "denna.lester" + ], + [ + "corey.loera" + ], + [ + "marcella.lu" + ], + [ + "audie.luna" + ], + [ + "tuan.malcolm" + ], + [ + "sima.marquardt" + ], + [ + "irving.mcdade" + ], + [ + "carmelo.michael" + ], + [ + "minerva.moe" + ], + [ + "kandra.monahan" + ], + [ + "alta.omalley" + ], + [ + "fabian.orta" + ], + [ + "lashandra.peacock" + ], + [ + "wava.pearl" + ], + [ + "ileana.puente" + ], + [ + "felicia.rawlings" + ], + [ + "christel.rayburn" + ], + [ + "lita.regan" + ], + [ + "sherie.ruth" + ], + [ + "alton.smalley" + ], + [ + "maura.sosa" + ], + [ + "chia.spalding" + ], + [ + "yong.staley" + ], + [ + "gidget.stern" + ], + [ + "tayna.tarver" + ], + [ + "karan.thacker" + ], + [ + "chong.thorne" + ], + [ + "irwin.tompkins" + ], + [ + "marcia.trammell" + ], + [ + "vella.valerio" + ], + [ + "gladis.vandiver" + ], + [ + "dominga.vega" + ], + [ + "stanford.vernon" + ], + [ + "madelyn.walker" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ], + [ + "lelia.worley" + ], + [ + "carlota.zaragoza" + ] ], "voters": [ - 693, - 819, - 823, - 723, - 797, - 773, - 894, - 828, - 832, - 891, - 766, - 871, - 747, - 750, - 782, - 870, - 762, - 901, - 735, - 911, - 718, - 708, - 885, - 772, - 798, - 761, - 920, - 843, - 926, - 874, - 719, - 803, - 764, - 792, - 821, - 833 + [ + "herminia.alley" + ], + [ + "cherly.bobbitt" + ], + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "annmarie.briscoe" + ], + [ + "kirstin.carbone" + ], + [ + "jeremy.carrington" + ], + [ + "maribeth.compton" + ], + [ + "mercedez.cupp" + ], + [ + "hester.ferro" + ], + [ + "risa.hammer" + ], + [ + "azzie.heaton" + ], + [ + "lachelle.hermann" + ], + [ + "kristyn.holcomb" + ], + [ + "corrine.kell" + ], + [ + "ta.larry" + ], + [ + "audie.luna" + ], + [ + "tuan.malcolm" + ], + [ + "minerva.moe" + ], + [ + "ileana.puente" + ], + [ + "felicia.rawlings" + ], + [ + "lita.regan" + ], + [ + "sherie.ruth" + ], + [ + "alton.smalley" + ], + [ + "maura.sosa" + ], + [ + "chia.spalding" + ], + [ + "yong.staley" + ], + [ + "irwin.tompkins" + ], + [ + "marcia.trammell" + ], + [ + "dominga.vega" + ], + [ + "stanford.vernon" + ], + [ + "madelyn.walker" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ], + [ + "lelia.worley" + ], + [ + "carlota.zaragoza" + ] ] } }, @@ -141119,58 +142486,158 @@ "last_modified_time": "2018-06-06T09:06:22.503", "last_modified_user": null, "participants": [ - 713, - 800, - 853, - 895, - 861, - 912, - 927, - 917, - 753, - 831, - 928, - 739, - 702, - 737, - 860, - 916, - 847, - 830, - 716, - 727, - 933, - 748, - 330, - 779, - 697, - 889, - 776, - 915, - 865, - 728, - 931, - 879, - 806, - 744, - 771, - 1081 + [ + "gwyn.berger" + ], + [ + "hester.bettencourt" + ], + [ + "jennette.briggs" + ], + [ + "mariano.burns" + ], + [ + "shemeka.cabrera" + ], + [ + "edda.cady" + ], + [ + "delbert.calkins" + ], + [ + "gracie.childs" + ], + [ + "lupe.comstock" + ], + [ + "larita.dejesus" + ], + [ + "randee.dellinger" + ], + [ + "hassie.dortch" + ], + [ + "rhona.earl" + ], + [ + "elenora.ellis" + ], + [ + "virgie.engle" + ], + [ + "tia.gall" + ], + [ + "evelyne.grigsby" + ], + [ + "criselda.henry" + ], + [ + "agatha.howe" + ], + [ + "shanta.jay" + ], + [ + "hilde.langston" + ], + [ + "sheridan.limon" + ], + [ + "joette.lindley" + ], + [ + "allie.lowell" + ], + [ + "cheryl.lucas" + ], + [ + "arline.maier" + ], + [ + "christia.manzo" + ], + [ + "catharine.medeiros" + ], + [ + "maureen.moe" + ], + [ + "larraine.olson" + ], + [ + "chantay.reedy" + ], + [ + "winston.samples" + ], + [ + "rebecca.schuler" + ], + [ + "bari.soares" + ], + [ + "angelita.stearns" + ], + [ + "gwendolyn.yoo" + ] ], "voters": [ - 713, - 800, - 853, - 861, - 737, - 830, - 748, - 330, - 779, - 776, - 865, - 728, - 931, - 806 + [ + "gwyn.berger" + ], + [ + "hester.bettencourt" + ], + [ + "jennette.briggs" + ], + [ + "shemeka.cabrera" + ], + [ + "elenora.ellis" + ], + [ + "criselda.henry" + ], + [ + "sheridan.limon" + ], + [ + "joette.lindley" + ], + [ + "allie.lowell" + ], + [ + "christia.manzo" + ], + [ + "maureen.moe" + ], + [ + "larraine.olson" + ], + [ + "chantay.reedy" + ], + [ + "rebecca.schuler" + ] ] } }, @@ -141194,20 +142661,44 @@ "last_modified_time": "2018-06-06T09:06:22.551", "last_modified_user": null, "participants": [ - 777, - 882, - 787, - 730, - 778, - 903, - 738, - 899, - 850, - 715 + [ + "donnie.bates" + ], + [ + "eugenia.bauer" + ], + [ + "hoyt.bohn" + ], + [ + "almeta.cody" + ], + [ + "belia.coe" + ], + [ + "corrinne.ferraro" + ], + [ + "linnea.humes" + ], + [ + "hassan.hyde" + ], + [ + "mandie.lomax" + ], + [ + "lorrine.robertson" + ] ], "voters": [ - 787, - 903 + [ + "hoyt.bohn" + ], + [ + "corrinne.ferraro" + ] ] } }, @@ -141229,130 +142720,372 @@ "vote_start_datetime": "2012-01-30T00:00:00", "vote_end_date": "2012-02-08", "last_modified_time": "2019-01-28T10:15:58.567", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 696, - 713, - 800, - 752, - 884, - 929, - 726, - 834, - 853, - 895, - 861, - 912, - 927, - 825, - 877, - 768, - 917, - 731, - 753, - 795, - 831, - 928, - 739, - 702, - 737, - 860, - 712, - 916, - 847, - 872, - 849, - 740, - 830, - 716, - 769, - 727, - 774, - 818, - 717, - 707, - 933, - 812, - 748, - 330, - 779, - 697, - 889, - 776, - 722, - 896, - 840, - 915, - 865, - 799, - 756, - 749, - 728, - 734, - 931, - 758, - 1141, - 918, - 879, - 783, - 806, - 705, - 744, - 906, - 771, - 742, - 786, - 862, - 755, - 838, - 844, - 760, - 810, - 1081, - 815 + [ + "kristina.baker" + ], + [ + "gwyn.berger" + ], + [ + "hester.bettencourt" + ], + [ + "verena.blaylock" + ], + [ + "maybelle.bolton" + ], + [ + "crysta.bounds" + ], + [ + "salina.boykin" + ], + [ + "angelo.bridges" + ], + [ + "jennette.briggs" + ], + [ + "mariano.burns" + ], + [ + "shemeka.cabrera" + ], + [ + "edda.cady" + ], + [ + "delbert.calkins" + ], + [ + "cecile.caron" + ], + [ + "lindsey.carranza" + ], + [ + "maxie.childers" + ], + [ + "gracie.childs" + ], + [ + "mirtha.cleveland" + ], + [ + "lupe.comstock" + ], + [ + "jerald.cooper" + ], + [ + "larita.dejesus" + ], + [ + "randee.dellinger" + ], + [ + "hassie.dortch" + ], + [ + "rhona.earl" + ], + [ + "elenora.ellis" + ], + [ + "virgie.engle" + ], + [ + "lilia.erwin" + ], + [ + "tia.gall" + ], + [ + "evelyne.grigsby" + ], + [ + "marshall.guerrero" + ], + [ + "isiah.hammonds" + ], + [ + "bertram.hendrick" + ], + [ + "criselda.henry" + ], + [ + "agatha.howe" + ], + [ + "caryl.ivory" + ], + [ + "shanta.jay" + ], + [ + "kelsey.kay" + ], + [ + "margarette.kersey" + ], + [ + "willodean.kitchens" + ], + [ + "gertude.knotts" + ], + [ + "hilde.langston" + ], + [ + "denna.lester" + ], + [ + "sheridan.limon" + ], + [ + "joette.lindley" + ], + [ + "allie.lowell" + ], + [ + "cheryl.lucas" + ], + [ + "arline.maier" + ], + [ + "christia.manzo" + ], + [ + "earlene.marquis" + ], + [ + "ashlyn.mccartney" + ], + [ + "birdie.mcclintock" + ], + [ + "catharine.medeiros" + ], + [ + "maureen.moe" + ], + [ + "daphne.moll" + ], + [ + "xiomara.nakamura" + ], + [ + "alona.oldham" + ], + [ + "larraine.olson" + ], + [ + "tyrell.pfeiffer" + ], + [ + "chantay.reedy" + ], + [ + "precious.reiss" + ], + [ + "hilda.rocha" + ], + [ + "ethyl.rust" + ], + [ + "winston.samples" + ], + [ + "roxanna.sandlin" + ], + [ + "rebecca.schuler" + ], + [ + "camila.sharp" + ], + [ + "bari.soares" + ], + [ + "thomas.spearman" + ], + [ + "angelita.stearns" + ], + [ + "kymberly.strange" + ], + [ + "rozella.swenson" + ], + [ + "karan.thacker" + ], + [ + "kandis.thurston" + ], + [ + "stacey.timmerman" + ], + [ + "esther.ulrich" + ], + [ + "mario.voigt" + ], + [ + "danika.wills" + ], + [ + "gwendolyn.yoo" + ], + [ + "evap" + ] ], "voters": [ - 696, - 713, - 800, - 726, - 853, - 861, - 912, - 927, - 768, - 731, - 795, - 928, - 737, - 860, - 916, - 847, - 872, - 830, - 727, - 774, - 818, - 707, - 748, - 330, - 776, - 722, - 896, - 915, - 865, - 756, - 749, - 728, - 931, - 918, - 879, - 806, - 744, - 906, - 755, - 844, - 815 + [ + "kristina.baker" + ], + [ + "gwyn.berger" + ], + [ + "hester.bettencourt" + ], + [ + "salina.boykin" + ], + [ + "jennette.briggs" + ], + [ + "shemeka.cabrera" + ], + [ + "edda.cady" + ], + [ + "delbert.calkins" + ], + [ + "maxie.childers" + ], + [ + "mirtha.cleveland" + ], + [ + "jerald.cooper" + ], + [ + "randee.dellinger" + ], + [ + "elenora.ellis" + ], + [ + "virgie.engle" + ], + [ + "tia.gall" + ], + [ + "evelyne.grigsby" + ], + [ + "marshall.guerrero" + ], + [ + "criselda.henry" + ], + [ + "shanta.jay" + ], + [ + "kelsey.kay" + ], + [ + "margarette.kersey" + ], + [ + "gertude.knotts" + ], + [ + "sheridan.limon" + ], + [ + "joette.lindley" + ], + [ + "christia.manzo" + ], + [ + "earlene.marquis" + ], + [ + "ashlyn.mccartney" + ], + [ + "catharine.medeiros" + ], + [ + "maureen.moe" + ], + [ + "xiomara.nakamura" + ], + [ + "alona.oldham" + ], + [ + "larraine.olson" + ], + [ + "chantay.reedy" + ], + [ + "ethyl.rust" + ], + [ + "winston.samples" + ], + [ + "rebecca.schuler" + ], + [ + "bari.soares" + ], + [ + "thomas.spearman" + ], + [ + "kandis.thurston" + ], + [ + "esther.ulrich" + ], + [ + "evap" + ] ] } }, @@ -141374,138 +143107,396 @@ "vote_start_datetime": "2012-02-02T00:00:00", "vote_end_date": "2012-02-12", "last_modified_time": "2019-01-28T10:14:40.767", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 696, - 713, - 800, - 752, - 884, - 726, - 834, - 853, - 895, - 861, - 912, - 927, - 825, - 877, - 808, - 768, - 917, - 731, - 753, - 795, - 831, - 928, - 739, - 702, - 892, - 737, - 860, - 712, - 759, - 880, - 916, - 847, - 849, - 711, - 740, - 830, - 716, - 899, - 769, - 727, - 774, - 818, - 703, - 717, - 707, - 933, - 748, - 330, - 779, - 697, - 889, - 776, - 722, - 781, - 896, - 840, - 915, - 865, - 799, - 756, - 749, - 728, - 734, - 934, - 931, - 1141, - 918, - 879, - 783, - 806, - 705, - 744, - 906, - 771, - 742, - 786, - 862, - 755, - 838, - 844, - 760, - 810, - 1081, - 815 + [ + "kristina.baker" + ], + [ + "gwyn.berger" + ], + [ + "hester.bettencourt" + ], + [ + "verena.blaylock" + ], + [ + "maybelle.bolton" + ], + [ + "salina.boykin" + ], + [ + "angelo.bridges" + ], + [ + "jennette.briggs" + ], + [ + "mariano.burns" + ], + [ + "shemeka.cabrera" + ], + [ + "edda.cady" + ], + [ + "delbert.calkins" + ], + [ + "cecile.caron" + ], + [ + "lindsey.carranza" + ], + [ + "virgina.carrasco" + ], + [ + "maxie.childers" + ], + [ + "gracie.childs" + ], + [ + "mirtha.cleveland" + ], + [ + "lupe.comstock" + ], + [ + "jerald.cooper" + ], + [ + "larita.dejesus" + ], + [ + "randee.dellinger" + ], + [ + "hassie.dortch" + ], + [ + "rhona.earl" + ], + [ + "kiana.easley" + ], + [ + "elenora.ellis" + ], + [ + "virgie.engle" + ], + [ + "lilia.erwin" + ], + [ + "concha.ezell" + ], + [ + "palma.feliciano" + ], + [ + "tia.gall" + ], + [ + "evelyne.grigsby" + ], + [ + "isiah.hammonds" + ], + [ + "lucia.helton" + ], + [ + "bertram.hendrick" + ], + [ + "criselda.henry" + ], + [ + "agatha.howe" + ], + [ + "hassan.hyde" + ], + [ + "caryl.ivory" + ], + [ + "shanta.jay" + ], + [ + "kelsey.kay" + ], + [ + "margarette.kersey" + ], + [ + "jenniffer.kinard" + ], + [ + "willodean.kitchens" + ], + [ + "gertude.knotts" + ], + [ + "hilde.langston" + ], + [ + "sheridan.limon" + ], + [ + "joette.lindley" + ], + [ + "allie.lowell" + ], + [ + "cheryl.lucas" + ], + [ + "arline.maier" + ], + [ + "christia.manzo" + ], + [ + "earlene.marquis" + ], + [ + "dannielle.mattingly" + ], + [ + "ashlyn.mccartney" + ], + [ + "birdie.mcclintock" + ], + [ + "catharine.medeiros" + ], + [ + "maureen.moe" + ], + [ + "daphne.moll" + ], + [ + "xiomara.nakamura" + ], + [ + "alona.oldham" + ], + [ + "larraine.olson" + ], + [ + "tyrell.pfeiffer" + ], + [ + "shavon.price" + ], + [ + "chantay.reedy" + ], + [ + "hilda.rocha" + ], + [ + "ethyl.rust" + ], + [ + "winston.samples" + ], + [ + "roxanna.sandlin" + ], + [ + "rebecca.schuler" + ], + [ + "camila.sharp" + ], + [ + "bari.soares" + ], + [ + "thomas.spearman" + ], + [ + "angelita.stearns" + ], + [ + "kymberly.strange" + ], + [ + "rozella.swenson" + ], + [ + "karan.thacker" + ], + [ + "kandis.thurston" + ], + [ + "stacey.timmerman" + ], + [ + "esther.ulrich" + ], + [ + "mario.voigt" + ], + [ + "danika.wills" + ], + [ + "gwendolyn.yoo" + ], + [ + "evap" + ] ], "voters": [ - 696, - 713, - 800, - 726, - 861, - 912, - 825, - 877, - 731, - 831, - 928, - 739, - 737, - 860, - 759, - 916, - 711, - 830, - 774, - 818, - 703, - 707, - 933, - 748, - 330, - 779, - 722, - 896, - 865, - 756, - 749, - 734, - 931, - 918, - 879, - 783, - 806, - 744, - 906, - 742, - 786, - 755, - 844, - 815 + [ + "kristina.baker" + ], + [ + "gwyn.berger" + ], + [ + "hester.bettencourt" + ], + [ + "salina.boykin" + ], + [ + "shemeka.cabrera" + ], + [ + "edda.cady" + ], + [ + "cecile.caron" + ], + [ + "lindsey.carranza" + ], + [ + "mirtha.cleveland" + ], + [ + "larita.dejesus" + ], + [ + "randee.dellinger" + ], + [ + "hassie.dortch" + ], + [ + "elenora.ellis" + ], + [ + "virgie.engle" + ], + [ + "concha.ezell" + ], + [ + "tia.gall" + ], + [ + "lucia.helton" + ], + [ + "criselda.henry" + ], + [ + "kelsey.kay" + ], + [ + "margarette.kersey" + ], + [ + "jenniffer.kinard" + ], + [ + "gertude.knotts" + ], + [ + "hilde.langston" + ], + [ + "sheridan.limon" + ], + [ + "joette.lindley" + ], + [ + "allie.lowell" + ], + [ + "earlene.marquis" + ], + [ + "ashlyn.mccartney" + ], + [ + "maureen.moe" + ], + [ + "xiomara.nakamura" + ], + [ + "alona.oldham" + ], + [ + "tyrell.pfeiffer" + ], + [ + "chantay.reedy" + ], + [ + "ethyl.rust" + ], + [ + "winston.samples" + ], + [ + "roxanna.sandlin" + ], + [ + "rebecca.schuler" + ], + [ + "bari.soares" + ], + [ + "thomas.spearman" + ], + [ + "kymberly.strange" + ], + [ + "rozella.swenson" + ], + [ + "kandis.thurston" + ], + [ + "esther.ulrich" + ], + [ + "evap" + ] ] } }, @@ -141529,34 +143520,86 @@ "last_modified_time": "2018-06-03T10:22:16.228", "last_modified_user": null, "participants": [ - 853, - 912, - 877, - 916, - 830, - 774, - 707, - 704, - 889, - 722, - 865, - 799, - 728, - 783, - 755 + [ + "jennette.briggs" + ], + [ + "edda.cady" + ], + [ + "lindsey.carranza" + ], + [ + "tia.gall" + ], + [ + "criselda.henry" + ], + [ + "kelsey.kay" + ], + [ + "gertude.knotts" + ], + [ + "corey.loera" + ], + [ + "arline.maier" + ], + [ + "earlene.marquis" + ], + [ + "maureen.moe" + ], + [ + "daphne.moll" + ], + [ + "larraine.olson" + ], + [ + "roxanna.sandlin" + ], + [ + "kandis.thurston" + ] ], "voters": [ - 853, - 912, - 877, - 916, - 830, - 774, - 707, - 722, - 865, - 783, - 755 + [ + "jennette.briggs" + ], + [ + "edda.cady" + ], + [ + "lindsey.carranza" + ], + [ + "tia.gall" + ], + [ + "criselda.henry" + ], + [ + "kelsey.kay" + ], + [ + "gertude.knotts" + ], + [ + "earlene.marquis" + ], + [ + "maureen.moe" + ], + [ + "roxanna.sandlin" + ], + [ + "kandis.thurston" + ] ] } }, @@ -141580,17 +143623,39 @@ "last_modified_time": "2016-02-22T22:08:19.756", "last_modified_user": null, "participants": [ - 93, - 964, - 690, - 408, - 419, - 963, - 116, - 484, - 965, - 409, - 318 + [ + "viola.barringer" + ], + [ + "heike.cartwright.ext" + ], + [ + "january.copeland" + ], + [ + "britteny.easley" + ], + [ + "tonita.gallardo" + ], + [ + "gwyn.lloyd" + ], + [ + "hugh.runyon" + ], + [ + "harriet.rushing" + ], + [ + "tracie.shephard.ext" + ], + [ + "pamula.sims" + ], + [ + "laurence.tipton" + ] ], "voters": [] } @@ -141615,126 +143680,362 @@ "last_modified_time": "2018-06-06T09:06:22.562", "last_modified_user": null, "participants": [ - 693, - 881, - 819, - 725, - 823, - 723, - 797, - 791, - 773, - 780, - 894, - 888, - 770, - 935, - 868, - 828, - 775, - 767, - 832, - 785, - 807, - 891, - 817, - 875, - 820, - 811, - 855, - 766, - 871, - 747, - 750, - 914, - 782, - 905, - 886, - 867, - 870, - 812, - 704, - 924, - 762, - 901, - 700, - 814, - 932, - 735, - 710, - 2144, - 869, - 919, - 827, - 911, - 718, - 923, - 708, - 885, - 772, - 798, - 761, - 804, - 904, - 2132, - 922, - 843, - 926, - 876, - 765, - 874, - 719, - 803, - 764, - 792, - 821, - 833 + [ + "herminia.alley" + ], + [ + "shaunna.barnard" + ], + [ + "cherly.bobbitt" + ], + [ + "vincenzo.boston" + ], + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "annmarie.briscoe" + ], + [ + "margery.campos" + ], + [ + "kirstin.carbone" + ], + [ + "florene.carney" + ], + [ + "jeremy.carrington" + ], + [ + "alene.casas" + ], + [ + "zack.chaffin" + ], + [ + "keva.cheng" + ], + [ + "dannie.cochran" + ], + [ + "maribeth.compton" + ], + [ + "penelope.covert" + ], + [ + "mable.craddock" + ], + [ + "mercedez.cupp" + ], + [ + "maxine.dexter" + ], + [ + "dale.earnest" + ], + [ + "hester.ferro" + ], + [ + "elissa.fowler" + ], + [ + "delila.fredrickson" + ], + [ + "wilmer.goodson" + ], + [ + "wyatt.hale" + ], + [ + "kaitlin.hamblin" + ], + [ + "risa.hammer" + ], + [ + "azzie.heaton" + ], + [ + "lachelle.hermann" + ], + [ + "kristyn.holcomb" + ], + [ + "tami.isaac" + ], + [ + "corrine.kell" + ], + [ + "genevive.kelly" + ], + [ + "hollie.labonte" + ], + [ + "melody.large" + ], + [ + "ta.larry" + ], + [ + "denna.lester" + ], + [ + "corey.loera" + ], + [ + "marcella.lu" + ], + [ + "audie.luna" + ], + [ + "tuan.malcolm" + ], + [ + "sima.marquardt" + ], + [ + "irving.mcdade" + ], + [ + "carmelo.michael" + ], + [ + "minerva.moe" + ], + [ + "kandra.monahan" + ], + [ + "alta.omalley" + ], + [ + "fabian.orta" + ], + [ + "lashandra.peacock" + ], + [ + "wava.pearl" + ], + [ + "ileana.puente" + ], + [ + "felicia.rawlings" + ], + [ + "christel.rayburn" + ], + [ + "lita.regan" + ], + [ + "sherie.ruth" + ], + [ + "alton.smalley" + ], + [ + "maura.sosa" + ], + [ + "chia.spalding" + ], + [ + "gidget.stern" + ], + [ + "doyle.stump" + ], + [ + "tayna.tarver" + ], + [ + "chong.thorne" + ], + [ + "irwin.tompkins" + ], + [ + "marcia.trammell" + ], + [ + "vella.valerio" + ], + [ + "gladis.vandiver" + ], + [ + "dominga.vega" + ], + [ + "stanford.vernon" + ], + [ + "madelyn.walker" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ], + [ + "lelia.worley" + ], + [ + "carlota.zaragoza" + ] ], "voters": [ - 819, - 725, - 823, - 723, - 797, - 791, - 773, - 894, - 935, - 828, - 775, - 767, - 832, - 891, - 766, - 871, - 747, - 750, - 914, - 782, - 870, - 812, - 924, - 762, - 901, - 932, - 735, - 911, - 718, - 708, - 885, - 772, - 798, - 761, - 843, - 926, - 765, - 874, - 719, - 803, - 764, - 792, - 821, - 833 + [ + "cherly.bobbitt" + ], + [ + "vincenzo.boston" + ], + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "annmarie.briscoe" + ], + [ + "margery.campos" + ], + [ + "kirstin.carbone" + ], + [ + "jeremy.carrington" + ], + [ + "keva.cheng" + ], + [ + "maribeth.compton" + ], + [ + "penelope.covert" + ], + [ + "mable.craddock" + ], + [ + "mercedez.cupp" + ], + [ + "hester.ferro" + ], + [ + "risa.hammer" + ], + [ + "azzie.heaton" + ], + [ + "lachelle.hermann" + ], + [ + "kristyn.holcomb" + ], + [ + "tami.isaac" + ], + [ + "corrine.kell" + ], + [ + "ta.larry" + ], + [ + "denna.lester" + ], + [ + "marcella.lu" + ], + [ + "audie.luna" + ], + [ + "tuan.malcolm" + ], + [ + "carmelo.michael" + ], + [ + "minerva.moe" + ], + [ + "ileana.puente" + ], + [ + "felicia.rawlings" + ], + [ + "lita.regan" + ], + [ + "sherie.ruth" + ], + [ + "alton.smalley" + ], + [ + "maura.sosa" + ], + [ + "chia.spalding" + ], + [ + "irwin.tompkins" + ], + [ + "marcia.trammell" + ], + [ + "gladis.vandiver" + ], + [ + "dominga.vega" + ], + [ + "stanford.vernon" + ], + [ + "madelyn.walker" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ], + [ + "lelia.worley" + ], + [ + "carlota.zaragoza" + ] ] } }, @@ -141756,111 +144057,315 @@ "vote_start_datetime": "2012-07-09T00:00:00", "vote_end_date": "2012-07-29", "last_modified_time": "2018-06-03T10:22:16.166", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 693, - 696, - 881, - 713, - 800, - 752, - 884, - 823, - 723, - 726, - 834, - 853, - 895, - 861, - 927, - 877, - 888, - 770, - 768, - 731, - 753, - 795, - 831, - 928, - 702, - 807, - 892, - 737, - 860, - 712, - 875, - 916, - 847, - 849, - 913, - 740, - 830, - 769, - 727, - 818, - 717, - 707, - 748, - 330, - 889, - 722, - 896, - 840, - 915, - 865, - 799, - 756, - 749, - 728, - 827, - 734, - 934, - 718, - 1141, - 918, - 879, - 783, - 806, - 705, - 744, - 906, - 771, - 804, - 742, - 755, - 844, - 760, - 1081, - 815 + [ + "herminia.alley" + ], + [ + "kristina.baker" + ], + [ + "shaunna.barnard" + ], + [ + "gwyn.berger" + ], + [ + "hester.bettencourt" + ], + [ + "verena.blaylock" + ], + [ + "maybelle.bolton" + ], + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "salina.boykin" + ], + [ + "angelo.bridges" + ], + [ + "jennette.briggs" + ], + [ + "mariano.burns" + ], + [ + "shemeka.cabrera" + ], + [ + "delbert.calkins" + ], + [ + "lindsey.carranza" + ], + [ + "alene.casas" + ], + [ + "zack.chaffin" + ], + [ + "maxie.childers" + ], + [ + "mirtha.cleveland" + ], + [ + "lupe.comstock" + ], + [ + "jerald.cooper" + ], + [ + "larita.dejesus" + ], + [ + "randee.dellinger" + ], + [ + "rhona.earl" + ], + [ + "dale.earnest" + ], + [ + "kiana.easley" + ], + [ + "elenora.ellis" + ], + [ + "virgie.engle" + ], + [ + "lilia.erwin" + ], + [ + "delila.fredrickson" + ], + [ + "tia.gall" + ], + [ + "evelyne.grigsby" + ], + [ + "isiah.hammonds" + ], + [ + "etha.hastings" + ], + [ + "bertram.hendrick" + ], + [ + "criselda.henry" + ], + [ + "caryl.ivory" + ], + [ + "shanta.jay" + ], + [ + "margarette.kersey" + ], + [ + "willodean.kitchens" + ], + [ + "gertude.knotts" + ], + [ + "sheridan.limon" + ], + [ + "joette.lindley" + ], + [ + "arline.maier" + ], + [ + "earlene.marquis" + ], + [ + "ashlyn.mccartney" + ], + [ + "birdie.mcclintock" + ], + [ + "catharine.medeiros" + ], + [ + "maureen.moe" + ], + [ + "daphne.moll" + ], + [ + "xiomara.nakamura" + ], + [ + "alona.oldham" + ], + [ + "larraine.olson" + ], + [ + "wava.pearl" + ], + [ + "tyrell.pfeiffer" + ], + [ + "shavon.price" + ], + [ + "felicia.rawlings" + ], + [ + "hilda.rocha" + ], + [ + "ethyl.rust" + ], + [ + "winston.samples" + ], + [ + "roxanna.sandlin" + ], + [ + "rebecca.schuler" + ], + [ + "camila.sharp" + ], + [ + "bari.soares" + ], + [ + "thomas.spearman" + ], + [ + "angelita.stearns" + ], + [ + "gidget.stern" + ], + [ + "kymberly.strange" + ], + [ + "kandis.thurston" + ], + [ + "esther.ulrich" + ], + [ + "mario.voigt" + ], + [ + "gwendolyn.yoo" + ], + [ + "evap" + ] ], "voters": [ - 693, - 800, - 823, - 723, - 726, - 853, - 795, - 928, - 807, - 737, - 860, - 916, - 849, - 913, - 707, - 748, - 330, - 896, - 865, - 749, - 918, - 806, - 744, - 742, - 844, - 1081, - 815 + [ + "herminia.alley" + ], + [ + "hester.bettencourt" + ], + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "salina.boykin" + ], + [ + "jennette.briggs" + ], + [ + "jerald.cooper" + ], + [ + "randee.dellinger" + ], + [ + "dale.earnest" + ], + [ + "elenora.ellis" + ], + [ + "virgie.engle" + ], + [ + "tia.gall" + ], + [ + "isiah.hammonds" + ], + [ + "etha.hastings" + ], + [ + "gertude.knotts" + ], + [ + "sheridan.limon" + ], + [ + "joette.lindley" + ], + [ + "ashlyn.mccartney" + ], + [ + "maureen.moe" + ], + [ + "alona.oldham" + ], + [ + "ethyl.rust" + ], + [ + "rebecca.schuler" + ], + [ + "bari.soares" + ], + [ + "kymberly.strange" + ], + [ + "esther.ulrich" + ], + [ + "gwendolyn.yoo" + ], + [ + "evap" + ] ] } }, @@ -141882,124 +144387,354 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-03T10:22:16.154", - "last_modified_user": 93, + "last_modified_user": [ + "viola.barringer" + ], "participants": [ - 693, - 881, - 725, - 823, - 723, - 797, - 791, - 773, - 780, - 894, - 888, - 770, - 935, - 868, - 828, - 775, - 767, - 832, - 785, - 807, - 892, - 860, - 817, - 875, - 859, - 820, - 811, - 855, - 766, - 849, - 871, - 701, - 740, - 747, - 750, - 914, - 782, - 905, - 707, - 873, - 867, - 870, - 812, - 924, - 901, - 700, - 814, - 932, - 735, - 2144, - 919, - 827, - 911, - 718, - 923, - 708, - 864, - 918, - 885, - 806, - 772, - 798, - 761, - 920, - 804, - 904, - 2132, - 862, - 922, - 843, - 926, - 876, - 765, - 874, - 719, - 760, - 803, - 764, - 792, - 821, - 721, - 833 + [ + "herminia.alley" + ], + [ + "shaunna.barnard" + ], + [ + "vincenzo.boston" + ], + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "annmarie.briscoe" + ], + [ + "margery.campos" + ], + [ + "kirstin.carbone" + ], + [ + "florene.carney" + ], + [ + "jeremy.carrington" + ], + [ + "alene.casas" + ], + [ + "zack.chaffin" + ], + [ + "keva.cheng" + ], + [ + "dannie.cochran" + ], + [ + "maribeth.compton" + ], + [ + "penelope.covert" + ], + [ + "mable.craddock" + ], + [ + "mercedez.cupp" + ], + [ + "maxine.dexter" + ], + [ + "dale.earnest" + ], + [ + "kiana.easley" + ], + [ + "virgie.engle" + ], + [ + "elissa.fowler" + ], + [ + "delila.fredrickson" + ], + [ + "benito.fuqua" + ], + [ + "wilmer.goodson" + ], + [ + "wyatt.hale" + ], + [ + "kaitlin.hamblin" + ], + [ + "risa.hammer" + ], + [ + "isiah.hammonds" + ], + [ + "azzie.heaton" + ], + [ + "arturo.heflin" + ], + [ + "bertram.hendrick" + ], + [ + "lachelle.hermann" + ], + [ + "kristyn.holcomb" + ], + [ + "tami.isaac" + ], + [ + "corrine.kell" + ], + [ + "genevive.kelly" + ], + [ + "gertude.knotts" + ], + [ + "aide.kraft" + ], + [ + "melody.large" + ], + [ + "ta.larry" + ], + [ + "denna.lester" + ], + [ + "marcella.lu" + ], + [ + "tuan.malcolm" + ], + [ + "sima.marquardt" + ], + [ + "irving.mcdade" + ], + [ + "carmelo.michael" + ], + [ + "minerva.moe" + ], + [ + "alta.omalley" + ], + [ + "lashandra.peacock" + ], + [ + "wava.pearl" + ], + [ + "ileana.puente" + ], + [ + "felicia.rawlings" + ], + [ + "christel.rayburn" + ], + [ + "lita.regan" + ], + [ + "reva.root" + ], + [ + "ethyl.rust" + ], + [ + "sherie.ruth" + ], + [ + "rebecca.schuler" + ], + [ + "alton.smalley" + ], + [ + "maura.sosa" + ], + [ + "chia.spalding" + ], + [ + "yong.staley" + ], + [ + "gidget.stern" + ], + [ + "doyle.stump" + ], + [ + "tayna.tarver" + ], + [ + "karan.thacker" + ], + [ + "chong.thorne" + ], + [ + "irwin.tompkins" + ], + [ + "marcia.trammell" + ], + [ + "vella.valerio" + ], + [ + "gladis.vandiver" + ], + [ + "dominga.vega" + ], + [ + "stanford.vernon" + ], + [ + "mario.voigt" + ], + [ + "madelyn.walker" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ], + [ + "lelia.worley" + ], + [ + "ute.ybarra" + ], + [ + "carlota.zaragoza" + ] ], "voters": [ - 693, - 823, - 723, - 797, - 791, - 773, - 894, - 785, - 807, - 860, - 859, - 766, - 849, - 750, - 782, - 867, - 870, - 924, - 901, - 708, - 885, - 806, - 761, - 920, - 922, - 843, - 719, - 803, - 764, - 792, - 821, - 833 + [ + "herminia.alley" + ], + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "annmarie.briscoe" + ], + [ + "margery.campos" + ], + [ + "kirstin.carbone" + ], + [ + "jeremy.carrington" + ], + [ + "maxine.dexter" + ], + [ + "dale.earnest" + ], + [ + "virgie.engle" + ], + [ + "benito.fuqua" + ], + [ + "risa.hammer" + ], + [ + "isiah.hammonds" + ], + [ + "kristyn.holcomb" + ], + [ + "corrine.kell" + ], + [ + "melody.large" + ], + [ + "ta.larry" + ], + [ + "marcella.lu" + ], + [ + "tuan.malcolm" + ], + [ + "lita.regan" + ], + [ + "sherie.ruth" + ], + [ + "rebecca.schuler" + ], + [ + "chia.spalding" + ], + [ + "yong.staley" + ], + [ + "chong.thorne" + ], + [ + "irwin.tompkins" + ], + [ + "stanford.vernon" + ], + [ + "madelyn.walker" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ], + [ + "lelia.worley" + ], + [ + "carlota.zaragoza" + ] ] } }, @@ -142021,150 +144756,432 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-06T09:06:22.493", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 736, - 784, - 696, - 713, - 800, - 752, - 787, - 841, - 884, - 720, - 726, - 834, - 853, - 2181, - 908, - 895, - 695, - 861, - 912, - 927, - 791, - 839, - 825, - 877, - 808, - 2176, - 706, - 917, - 731, - 778, - 753, - 795, - 831, - 928, - 878, - 739, - 702, - 737, - 837, - 916, - 898, - 751, - 801, - 852, - 847, - 872, - 849, - 913, - 822, - 701, - 711, - 740, - 830, - 716, - 738, - 899, - 769, - 727, - 1087, - 790, - 774, - 818, - 854, - 717, - 707, - 933, - 748, - 330, - 779, - 697, - 889, - 776, - 722, - 781, - 896, - 840, - 915, - 865, - 799, - 756, - 729, - 763, - 842, - 749, - 728, - 734, - 934, - 931, - 1141, - 918, - 879, - 783, - 709, - 806, - 705, - 724, - 744, - 906, - 771, - 742, - 786, - 862, - 755, - 838, - 844, - 760, - 810, - 815 + [ + "sandie.aiello" + ], + [ + "ariana.amaya" + ], + [ + "kristina.baker" + ], + [ + "gwyn.berger" + ], + [ + "hester.bettencourt" + ], + [ + "verena.blaylock" + ], + [ + "hoyt.bohn" + ], + [ + "lyndsey.bolt" + ], + [ + "maybelle.bolton" + ], + [ + "lyndon.bowles" + ], + [ + "salina.boykin" + ], + [ + "angelo.bridges" + ], + [ + "jennette.briggs" + ], + [ + "azalee.broussard" + ], + [ + "kimbery.burnette" + ], + [ + "mariano.burns" + ], + [ + "armandina.byrne" + ], + [ + "shemeka.cabrera" + ], + [ + "edda.cady" + ], + [ + "delbert.calkins" + ], + [ + "margery.campos" + ], + [ + "asa.carlton" + ], + [ + "cecile.caron" + ], + [ + "lindsey.carranza" + ], + [ + "virgina.carrasco" + ], + [ + "dell.castro.ext" + ], + [ + "merideth.chandler" + ], + [ + "gracie.childs" + ], + [ + "mirtha.cleveland" + ], + [ + "belia.coe" + ], + [ + "lupe.comstock" + ], + [ + "jerald.cooper" + ], + [ + "larita.dejesus" + ], + [ + "randee.dellinger" + ], + [ + "janise.denman" + ], + [ + "hassie.dortch" + ], + [ + "rhona.earl" + ], + [ + "elenora.ellis" + ], + [ + "yong.furr" + ], + [ + "tia.gall" + ], + [ + "louann.gee" + ], + [ + "annmarie.godfrey" + ], + [ + "monet.greenlee" + ], + [ + "natalie.gregory" + ], + [ + "evelyne.grigsby" + ], + [ + "marshall.guerrero" + ], + [ + "isiah.hammonds" + ], + [ + "etha.hastings" + ], + [ + "mitchel.heard" + ], + [ + "arturo.heflin" + ], + [ + "lucia.helton" + ], + [ + "bertram.hendrick" + ], + [ + "criselda.henry" + ], + [ + "agatha.howe" + ], + [ + "linnea.humes" + ], + [ + "hassan.hyde" + ], + [ + "caryl.ivory" + ], + [ + "shanta.jay" + ], + [ + "bryant.johnson" + ], + [ + "sharice.kasper" + ], + [ + "kelsey.kay" + ], + [ + "margarette.kersey" + ], + [ + "velda.kimble" + ], + [ + "willodean.kitchens" + ], + [ + "gertude.knotts" + ], + [ + "hilde.langston" + ], + [ + "sheridan.limon" + ], + [ + "joette.lindley" + ], + [ + "allie.lowell" + ], + [ + "cheryl.lucas" + ], + [ + "arline.maier" + ], + [ + "christia.manzo" + ], + [ + "earlene.marquis" + ], + [ + "dannielle.mattingly" + ], + [ + "ashlyn.mccartney" + ], + [ + "birdie.mcclintock" + ], + [ + "catharine.medeiros" + ], + [ + "maureen.moe" + ], + [ + "daphne.moll" + ], + [ + "xiomara.nakamura" + ], + [ + "shemeka.nieves" + ], + [ + "armida.nobles" + ], + [ + "marvel.oakley" + ], + [ + "alona.oldham" + ], + [ + "larraine.olson" + ], + [ + "tyrell.pfeiffer" + ], + [ + "shavon.price" + ], + [ + "chantay.reedy" + ], + [ + "hilda.rocha" + ], + [ + "ethyl.rust" + ], + [ + "winston.samples" + ], + [ + "roxanna.sandlin" + ], + [ + "stacy.sawyer" + ], + [ + "rebecca.schuler" + ], + [ + "camila.sharp" + ], + [ + "carman.slagle" + ], + [ + "bari.soares" + ], + [ + "thomas.spearman" + ], + [ + "angelita.stearns" + ], + [ + "kymberly.strange" + ], + [ + "rozella.swenson" + ], + [ + "karan.thacker" + ], + [ + "kandis.thurston" + ], + [ + "stacey.timmerman" + ], + [ + "esther.ulrich" + ], + [ + "mario.voigt" + ], + [ + "danika.wills" + ], + [ + "evap" + ] ], "voters": [ - 696, - 713, - 800, - 884, - 726, - 908, - 839, - 928, - 702, - 916, - 872, - 849, - 913, - 822, - 711, - 774, - 854, - 707, - 330, - 779, - 722, - 865, - 763, - 749, - 734, - 918, - 806, - 744, - 786, - 844, - 810, - 815 + [ + "kristina.baker" + ], + [ + "gwyn.berger" + ], + [ + "hester.bettencourt" + ], + [ + "maybelle.bolton" + ], + [ + "salina.boykin" + ], + [ + "kimbery.burnette" + ], + [ + "asa.carlton" + ], + [ + "randee.dellinger" + ], + [ + "rhona.earl" + ], + [ + "tia.gall" + ], + [ + "marshall.guerrero" + ], + [ + "isiah.hammonds" + ], + [ + "etha.hastings" + ], + [ + "mitchel.heard" + ], + [ + "lucia.helton" + ], + [ + "kelsey.kay" + ], + [ + "velda.kimble" + ], + [ + "gertude.knotts" + ], + [ + "joette.lindley" + ], + [ + "allie.lowell" + ], + [ + "earlene.marquis" + ], + [ + "maureen.moe" + ], + [ + "armida.nobles" + ], + [ + "alona.oldham" + ], + [ + "tyrell.pfeiffer" + ], + [ + "ethyl.rust" + ], + [ + "rebecca.schuler" + ], + [ + "bari.soares" + ], + [ + "rozella.swenson" + ], + [ + "esther.ulrich" + ], + [ + "danika.wills" + ], + [ + "evap" + ] ] } }, @@ -142186,120 +145203,342 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-11", "last_modified_time": "2018-06-06T09:06:22.603", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 696, - 713, - 800, - 752, - 884, - 929, - 726, - 834, - 853, - 895, - 861, - 912, - 927, - 825, - 877, - 768, - 917, - 731, - 753, - 795, - 831, - 928, - 739, - 702, - 737, - 860, - 916, - 847, - 872, - 849, - 740, - 830, - 716, - 769, - 727, - 774, - 818, - 717, - 707, - 933, - 748, - 330, - 779, - 697, - 889, - 776, - 722, - 896, - 840, - 915, - 865, - 799, - 756, - 749, - 728, - 734, - 931, - 1141, - 918, - 879, - 783, - 806, - 705, - 744, - 906, - 771, - 742, - 786, - 862, - 755, - 838, - 844, - 760, - 810, - 1081, - 815 + [ + "kristina.baker" + ], + [ + "gwyn.berger" + ], + [ + "hester.bettencourt" + ], + [ + "verena.blaylock" + ], + [ + "maybelle.bolton" + ], + [ + "crysta.bounds" + ], + [ + "salina.boykin" + ], + [ + "angelo.bridges" + ], + [ + "jennette.briggs" + ], + [ + "mariano.burns" + ], + [ + "shemeka.cabrera" + ], + [ + "edda.cady" + ], + [ + "delbert.calkins" + ], + [ + "cecile.caron" + ], + [ + "lindsey.carranza" + ], + [ + "maxie.childers" + ], + [ + "gracie.childs" + ], + [ + "mirtha.cleveland" + ], + [ + "lupe.comstock" + ], + [ + "jerald.cooper" + ], + [ + "larita.dejesus" + ], + [ + "randee.dellinger" + ], + [ + "hassie.dortch" + ], + [ + "rhona.earl" + ], + [ + "elenora.ellis" + ], + [ + "virgie.engle" + ], + [ + "tia.gall" + ], + [ + "evelyne.grigsby" + ], + [ + "marshall.guerrero" + ], + [ + "isiah.hammonds" + ], + [ + "bertram.hendrick" + ], + [ + "criselda.henry" + ], + [ + "agatha.howe" + ], + [ + "caryl.ivory" + ], + [ + "shanta.jay" + ], + [ + "kelsey.kay" + ], + [ + "margarette.kersey" + ], + [ + "willodean.kitchens" + ], + [ + "gertude.knotts" + ], + [ + "hilde.langston" + ], + [ + "sheridan.limon" + ], + [ + "joette.lindley" + ], + [ + "allie.lowell" + ], + [ + "cheryl.lucas" + ], + [ + "arline.maier" + ], + [ + "christia.manzo" + ], + [ + "earlene.marquis" + ], + [ + "ashlyn.mccartney" + ], + [ + "birdie.mcclintock" + ], + [ + "catharine.medeiros" + ], + [ + "maureen.moe" + ], + [ + "daphne.moll" + ], + [ + "xiomara.nakamura" + ], + [ + "alona.oldham" + ], + [ + "larraine.olson" + ], + [ + "tyrell.pfeiffer" + ], + [ + "chantay.reedy" + ], + [ + "hilda.rocha" + ], + [ + "ethyl.rust" + ], + [ + "winston.samples" + ], + [ + "roxanna.sandlin" + ], + [ + "rebecca.schuler" + ], + [ + "camila.sharp" + ], + [ + "bari.soares" + ], + [ + "thomas.spearman" + ], + [ + "angelita.stearns" + ], + [ + "kymberly.strange" + ], + [ + "rozella.swenson" + ], + [ + "karan.thacker" + ], + [ + "kandis.thurston" + ], + [ + "stacey.timmerman" + ], + [ + "esther.ulrich" + ], + [ + "mario.voigt" + ], + [ + "danika.wills" + ], + [ + "gwendolyn.yoo" + ], + [ + "evap" + ] ], "voters": [ - 696, - 713, - 800, - 884, - 726, - 853, - 877, - 753, - 928, - 739, - 702, - 860, - 916, - 872, - 830, - 933, - 748, - 330, - 779, - 722, - 896, - 865, - 756, - 749, - 734, - 931, - 918, - 906, - 742, - 838, - 844, - 810, - 1081, - 815 + [ + "kristina.baker" + ], + [ + "gwyn.berger" + ], + [ + "hester.bettencourt" + ], + [ + "maybelle.bolton" + ], + [ + "salina.boykin" + ], + [ + "jennette.briggs" + ], + [ + "lindsey.carranza" + ], + [ + "lupe.comstock" + ], + [ + "randee.dellinger" + ], + [ + "hassie.dortch" + ], + [ + "rhona.earl" + ], + [ + "virgie.engle" + ], + [ + "tia.gall" + ], + [ + "marshall.guerrero" + ], + [ + "criselda.henry" + ], + [ + "hilde.langston" + ], + [ + "sheridan.limon" + ], + [ + "joette.lindley" + ], + [ + "allie.lowell" + ], + [ + "earlene.marquis" + ], + [ + "ashlyn.mccartney" + ], + [ + "maureen.moe" + ], + [ + "xiomara.nakamura" + ], + [ + "alona.oldham" + ], + [ + "tyrell.pfeiffer" + ], + [ + "chantay.reedy" + ], + [ + "ethyl.rust" + ], + [ + "thomas.spearman" + ], + [ + "kymberly.strange" + ], + [ + "stacey.timmerman" + ], + [ + "esther.ulrich" + ], + [ + "danika.wills" + ], + [ + "gwendolyn.yoo" + ], + [ + "evap" + ] ] } }, @@ -142321,46 +145560,120 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-03T10:22:16.244", - "last_modified_user": 812, + "last_modified_user": [ + "denna.lester" + ], "participants": [ - 800, - 726, - 834, - 2181, - 895, - 825, - 768, - 795, - 925, - 878, - 739, - 849, - 822, - 740, - 733, - 727, - 779, - 697, - 840, - 865, - 749, - 734, - 806, - 862, - 838, - 760 + [ + "hester.bettencourt" + ], + [ + "salina.boykin" + ], + [ + "angelo.bridges" + ], + [ + "azalee.broussard" + ], + [ + "mariano.burns" + ], + [ + "cecile.caron" + ], + [ + "maxie.childers" + ], + [ + "jerald.cooper" + ], + [ + "florrie.deluca" + ], + [ + "janise.denman" + ], + [ + "hassie.dortch" + ], + [ + "isiah.hammonds" + ], + [ + "mitchel.heard" + ], + [ + "bertram.hendrick" + ], + [ + "shayna.hyde" + ], + [ + "shanta.jay" + ], + [ + "allie.lowell" + ], + [ + "cheryl.lucas" + ], + [ + "birdie.mcclintock" + ], + [ + "maureen.moe" + ], + [ + "alona.oldham" + ], + [ + "tyrell.pfeiffer" + ], + [ + "rebecca.schuler" + ], + [ + "karan.thacker" + ], + [ + "stacey.timmerman" + ], + [ + "mario.voigt" + ] ], "voters": [ - 800, - 726, - 795, - 849, - 822, - 733, - 779, - 865, - 749, - 734 + [ + "hester.bettencourt" + ], + [ + "salina.boykin" + ], + [ + "jerald.cooper" + ], + [ + "isiah.hammonds" + ], + [ + "mitchel.heard" + ], + [ + "shayna.hyde" + ], + [ + "allie.lowell" + ], + [ + "maureen.moe" + ], + [ + "alona.oldham" + ], + [ + "tyrell.pfeiffer" + ] ] } }, @@ -142382,30 +145695,72 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-06T09:06:22.572", - "last_modified_user": 482, + "last_modified_user": [ + "kyra.hart" + ], "participants": [ - 736, - 787, - 720, - 739, - 859, - 898, - 883, - 774, - 933, - 835, - 850, - 779, - 697, - 729, - 741, - 765 + [ + "sandie.aiello" + ], + [ + "hoyt.bohn" + ], + [ + "lyndon.bowles" + ], + [ + "hassie.dortch" + ], + [ + "benito.fuqua" + ], + [ + "louann.gee" + ], + [ + "kayce.grigsby" + ], + [ + "kelsey.kay" + ], + [ + "hilde.langston" + ], + [ + "tiffaney.leung" + ], + [ + "mandie.lomax" + ], + [ + "allie.lowell" + ], + [ + "cheryl.lucas" + ], + [ + "shemeka.nieves" + ], + [ + "randell.reis" + ], + [ + "gladis.vandiver" + ] ], "voters": [ - 859, - 883, - 850, - 779 + [ + "benito.fuqua" + ], + [ + "kayce.grigsby" + ], + [ + "mandie.lomax" + ], + [ + "allie.lowell" + ] ] } }, @@ -142427,24 +145782,54 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-06T09:06:22.666", - "last_modified_user": 812, + "last_modified_user": [ + "denna.lester" + ], "participants": [ - 730, - 702, - 817, - 840, - 749, - 734, - 744, - 904, - 844 + [ + "almeta.cody" + ], + [ + "rhona.earl" + ], + [ + "elissa.fowler" + ], + [ + "birdie.mcclintock" + ], + [ + "alona.oldham" + ], + [ + "tyrell.pfeiffer" + ], + [ + "bari.soares" + ], + [ + "doyle.stump" + ], + [ + "esther.ulrich" + ] ], "voters": [ - 702, - 749, - 734, - 744, - 844 + [ + "rhona.earl" + ], + [ + "alona.oldham" + ], + [ + "tyrell.pfeiffer" + ], + [ + "bari.soares" + ], + [ + "esther.ulrich" + ] ] } }, @@ -142466,41 +145851,105 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-06T09:06:22.615", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 642, - 927, - 677, - 625, - 387, - 1085, - 1080, - 737, - 1100, - 649, - 674, - 1101, - 556, - 1098, - 1094, - 663, - 619, - 844, - 592, - 687 + [ + "felton.alvarez" + ], + [ + "delbert.calkins" + ], + [ + "josef.castellano" + ], + [ + "odette.chitwood" + ], + [ + "jina.cushman" + ], + [ + "eden.desimone" + ], + [ + "chasidy.draper" + ], + [ + "elenora.ellis" + ], + [ + "jackelyn.gooding" + ], + [ + "callie.grove" + ], + [ + "matthias.kober" + ], + [ + "hiram.lemus" + ], + [ + "corine.lunsford" + ], + [ + "inge.mcmullen" + ], + [ + "norris.peeler" + ], + [ + "macie.roller" + ], + [ + "regan.swank" + ], + [ + "esther.ulrich" + ], + [ + "giuseppina.waldrop" + ], + [ + "randi.woody" + ] ], "voters": [ - 625, - 1085, - 1100, - 649, - 674, - 1101, - 556, - 663, - 844, - 592, - 687 + [ + "odette.chitwood" + ], + [ + "eden.desimone" + ], + [ + "jackelyn.gooding" + ], + [ + "callie.grove" + ], + [ + "matthias.kober" + ], + [ + "hiram.lemus" + ], + [ + "corine.lunsford" + ], + [ + "macie.roller" + ], + [ + "esther.ulrich" + ], + [ + "giuseppina.waldrop" + ], + [ + "randi.woody" + ] ] } }, @@ -142522,51 +145971,135 @@ "vote_start_datetime": "2012-07-05T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-03T10:22:16.337", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 713, - 884, - 726, - 797, - 861, - 912, - 773, - 877, - 935, - 767, - 785, - 830, - 716, - 914, - 769, - 727, - 703, - 722, - 915, - 931, - 1141, - 885, - 744, - 771, - 2132, - 843, - 803 + [ + "gwyn.berger" + ], + [ + "maybelle.bolton" + ], + [ + "salina.boykin" + ], + [ + "annmarie.briscoe" + ], + [ + "shemeka.cabrera" + ], + [ + "edda.cady" + ], + [ + "kirstin.carbone" + ], + [ + "lindsey.carranza" + ], + [ + "keva.cheng" + ], + [ + "mable.craddock" + ], + [ + "maxine.dexter" + ], + [ + "criselda.henry" + ], + [ + "agatha.howe" + ], + [ + "tami.isaac" + ], + [ + "caryl.ivory" + ], + [ + "shanta.jay" + ], + [ + "jenniffer.kinard" + ], + [ + "earlene.marquis" + ], + [ + "catharine.medeiros" + ], + [ + "chantay.reedy" + ], + [ + "hilda.rocha" + ], + [ + "sherie.ruth" + ], + [ + "bari.soares" + ], + [ + "angelita.stearns" + ], + [ + "tayna.tarver" + ], + [ + "irwin.tompkins" + ], + [ + "madelyn.walker" + ] ], "voters": [ - 713, - 884, - 726, - 797, - 773, - 877, - 785, - 703, - 722, - 931, - 885, - 744, - 843, - 803 + [ + "gwyn.berger" + ], + [ + "maybelle.bolton" + ], + [ + "salina.boykin" + ], + [ + "annmarie.briscoe" + ], + [ + "kirstin.carbone" + ], + [ + "lindsey.carranza" + ], + [ + "maxine.dexter" + ], + [ + "jenniffer.kinard" + ], + [ + "earlene.marquis" + ], + [ + "chantay.reedy" + ], + [ + "sherie.ruth" + ], + [ + "bari.soares" + ], + [ + "irwin.tompkins" + ], + [ + "madelyn.walker" + ] ] } }, @@ -142588,32 +146121,78 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-06T09:06:22.619", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 577, - 677, - 688, - 593, - 645, - 1013, - 2, - 1098, - 662, - 668, - 612, - 663, - 79, - 609, - 582, - 1078, - 624 + [ + "lavonna.burgos" + ], + [ + "josef.castellano" + ], + [ + "milly.early" + ], + [ + "yolanda.farley" + ], + [ + "cole.gamboa" + ], + [ + "carol.grier" + ], + [ + "fritz.joe" + ], + [ + "inge.mcmullen" + ], + [ + "felice.meek" + ], + [ + "lorene.moultrie" + ], + [ + "lavona.pond" + ], + [ + "macie.roller" + ], + [ + "alexis.sandoval" + ], + [ + "lyndia.song" + ], + [ + "gilda.soper" + ], + [ + "raymonde.stock" + ], + [ + "jennifer.yarbrough" + ] ], "voters": [ - 688, - 593, - 612, - 1078, - 624 + [ + "milly.early" + ], + [ + "yolanda.farley" + ], + [ + "lavona.pond" + ], + [ + "raymonde.stock" + ], + [ + "jennifer.yarbrough" + ] ] } }, @@ -142635,38 +146214,96 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-12", "last_modified_time": "2018-06-06T09:06:22.547", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 546, - 625, - 1115, - 1080, - 645, - 1100, - 2183, - 615, - 548, - 1088, - 555, - 1004, - 79, - 939, - 653, - 2190, - 619, - 592, - 624 + [ + "justa.baughman" + ], + [ + "odette.chitwood" + ], + [ + "conchita.dent.ext" + ], + [ + "chasidy.draper" + ], + [ + "cole.gamboa" + ], + [ + "jackelyn.gooding" + ], + [ + "jaquelyn.huang" + ], + [ + "nita.jennings" + ], + [ + "clarence.kirkland" + ], + [ + "tula.langdon" + ], + [ + "jacqui.lindsey" + ], + [ + "lissette.mccallister.ext" + ], + [ + "alexis.sandoval" + ], + [ + "elden.seitz" + ], + [ + "aleta.seymour" + ], + [ + "tara.snider" + ], + [ + "regan.swank" + ], + [ + "giuseppina.waldrop" + ], + [ + "jennifer.yarbrough" + ] ], "voters": [ - 546, - 625, - 1100, - 548, - 1004, - 939, - 653, - 592, - 624 + [ + "justa.baughman" + ], + [ + "odette.chitwood" + ], + [ + "jackelyn.gooding" + ], + [ + "clarence.kirkland" + ], + [ + "lissette.mccallister.ext" + ], + [ + "elden.seitz" + ], + [ + "aleta.seymour" + ], + [ + "giuseppina.waldrop" + ], + [ + "jennifer.yarbrough" + ] ] } }, @@ -142688,48 +146325,126 @@ "vote_start_datetime": "2012-07-05T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-06T09:06:22.569", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 581, - 665, - 568, - 564, - 577, - 677, - 680, - 1085, - 688, - 645, - 543, - 649, - 1090, - 676, - 2183, - 41, - 555, - 80, - 662, - 681, - 579, - 1111, - 672, - 664, - 939, - 596, - 661, - 679 + [ + "oma.abner" + ], + [ + "diedra.batson" + ], + [ + "conception.belt" + ], + [ + "ezequiel.brock" + ], + [ + "lavonna.burgos" + ], + [ + "josef.castellano" + ], + [ + "jarod.cate" + ], + [ + "eden.desimone" + ], + [ + "milly.early" + ], + [ + "cole.gamboa" + ], + [ + "majorie.godfrey" + ], + [ + "callie.grove" + ], + [ + "quincy.hammond" + ], + [ + "collin.hanley" + ], + [ + "jaquelyn.huang" + ], + [ + "alan.lachance" + ], + [ + "jacqui.lindsey" + ], + [ + "shela.lowell" + ], + [ + "felice.meek" + ], + [ + "renaldo.melendez" + ], + [ + "wendie.pike" + ], + [ + "jeannetta.reichert.ext" + ], + [ + "alfreda.roche" + ], + [ + "keith.sanchez" + ], + [ + "elden.seitz" + ], + [ + "meagan.steed" + ], + [ + "eugene.tennant" + ], + [ + "student" + ] ], "voters": [ - 665, - 568, - 1085, - 688, - 543, - 649, - 41, - 579, - 672, - 596 + [ + "diedra.batson" + ], + [ + "conception.belt" + ], + [ + "eden.desimone" + ], + [ + "milly.early" + ], + [ + "majorie.godfrey" + ], + [ + "callie.grove" + ], + [ + "alan.lachance" + ], + [ + "wendie.pike" + ], + [ + "alfreda.roche" + ], + [ + "meagan.steed" + ] ] } }, @@ -142751,20 +146466,42 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-03T10:22:16.289", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 1102, - 559, - 1086, - 612, - 616, - 2190 + [ + "etta.child" + ], + [ + "elma.huynh" + ], + [ + "kellee.maldonado" + ], + [ + "lavona.pond" + ], + [ + "maribel.scales" + ], + [ + "tara.snider" + ] ], "voters": [ - 559, - 1086, - 612, - 616 + [ + "elma.huynh" + ], + [ + "kellee.maldonado" + ], + [ + "lavona.pond" + ], + [ + "maribel.scales" + ] ] } }, @@ -142786,28 +146523,66 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-06T09:06:22.612", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 568, - 1100, - 649, - 548, - 659, - 674, - 1101, - 569, - 628, - 597, - 624 + [ + "conception.belt" + ], + [ + "jackelyn.gooding" + ], + [ + "callie.grove" + ], + [ + "clarence.kirkland" + ], + [ + "sabine.knight" + ], + [ + "matthias.kober" + ], + [ + "hiram.lemus" + ], + [ + "gracia.mullins" + ], + [ + "noriko.rau" + ], + [ + "wade.ryan" + ], + [ + "jennifer.yarbrough" + ] ], "voters": [ - 568, - 1100, - 649, - 548, - 674, - 628, - 624 + [ + "conception.belt" + ], + [ + "jackelyn.gooding" + ], + [ + "callie.grove" + ], + [ + "clarence.kirkland" + ], + [ + "matthias.kober" + ], + [ + "noriko.rau" + ], + [ + "jennifer.yarbrough" + ] ] } }, @@ -142829,40 +146604,102 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-03T10:22:16.266", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 608, - 561, - 1099, - 577, - 557, - 25, - 593, - 1079, - 543, - 685, - 2183, - 2, - 16, - 47, - 555, - 1095, - 1140, - 612, - 660, - 79, - 686, - 596 + [ + "valda.antoine" + ], + [ + "lelia.beall" + ], + [ + "jammie.bey" + ], + [ + "lavonna.burgos" + ], + [ + "osvaldo.carrier" + ], + [ + "isaiah.chisholm" + ], + [ + "yolanda.farley" + ], + [ + "vicky.gann" + ], + [ + "majorie.godfrey" + ], + [ + "mercedes.hatch" + ], + [ + "jaquelyn.huang" + ], + [ + "fritz.joe" + ], + [ + "lyndsey.lattimore" + ], + [ + "clemencia.lea" + ], + [ + "jacqui.lindsey" + ], + [ + "celsa.macias" + ], + [ + "ling.mcdade" + ], + [ + "lavona.pond" + ], + [ + "nora.rowley" + ], + [ + "alexis.sandoval" + ], + [ + "michaele.shuler" + ], + [ + "meagan.steed" + ] ], "voters": [ - 1099, - 25, - 593, - 1079, - 543, - 16, - 612, - 596 + [ + "jammie.bey" + ], + [ + "isaiah.chisholm" + ], + [ + "yolanda.farley" + ], + [ + "vicky.gann" + ], + [ + "majorie.godfrey" + ], + [ + "lyndsey.lattimore" + ], + [ + "lavona.pond" + ], + [ + "meagan.steed" + ] ] } }, @@ -142884,24 +146721,54 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-06T09:06:22.649", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 825, - 917, - 722, - 865, - 799, - 728, - 1141, - 742, - 786, - 844 + [ + "cecile.caron" + ], + [ + "gracie.childs" + ], + [ + "earlene.marquis" + ], + [ + "maureen.moe" + ], + [ + "daphne.moll" + ], + [ + "larraine.olson" + ], + [ + "hilda.rocha" + ], + [ + "kymberly.strange" + ], + [ + "rozella.swenson" + ], + [ + "esther.ulrich" + ] ], "voters": [ - 722, - 865, - 786, - 844 + [ + "earlene.marquis" + ], + [ + "maureen.moe" + ], + [ + "rozella.swenson" + ], + [ + "esther.ulrich" + ] ] } }, @@ -142923,11 +146790,19 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-06T09:06:22.655", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 141, - 1090, - 1098 + [ + "cherry.doughty" + ], + [ + "quincy.hammond" + ], + [ + "inge.mcmullen" + ] ], "voters": [] } @@ -142950,22 +146825,48 @@ "vote_start_datetime": "2012-07-06T00:00:00", "vote_end_date": "2012-07-19", "last_modified_time": "2018-06-06T09:06:22.524", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 576, - 595, - 1085, - 556, - 1089, - 1127, - 682 + [ + "elvie.chaffin" + ], + [ + "ardelle.crouse" + ], + [ + "eden.desimone" + ], + [ + "corine.lunsford" + ], + [ + "larissa.osteen" + ], + [ + "gidget.raney" + ], + [ + "taunya.weinstein" + ] ], "voters": [ - 576, - 1085, - 556, - 1089, - 682 + [ + "elvie.chaffin" + ], + [ + "eden.desimone" + ], + [ + "corine.lunsford" + ], + [ + "larissa.osteen" + ], + [ + "taunya.weinstein" + ] ] } }, @@ -142987,16 +146888,30 @@ "vote_start_datetime": "2012-07-06T00:00:00", "vote_end_date": "2012-07-19", "last_modified_time": "2018-06-06T09:06:22.594", - "last_modified_user": 318, + "last_modified_user": [ + "laurence.tipton" + ], "participants": [ - 877, - 740, - 734, - 755 + [ + "lindsey.carranza" + ], + [ + "bertram.hendrick" + ], + [ + "tyrell.pfeiffer" + ], + [ + "kandis.thurston" + ] ], "voters": [ - 734, - 755 + [ + "tyrell.pfeiffer" + ], + [ + "kandis.thurston" + ] ] } }, @@ -143018,21 +146933,45 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-06T09:06:22.531", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 564, - 688, - 666, - 1090, - 30, - 1101, - 1084 + [ + "ezequiel.brock" + ], + [ + "milly.early" + ], + [ + "eleanor.freese" + ], + [ + "quincy.hammond" + ], + [ + "ozella.hooper" + ], + [ + "hiram.lemus" + ], + [ + "melania.wolfe" + ] ], "voters": [ - 688, - 30, - 1101, - 1084 + [ + "milly.early" + ], + [ + "ozella.hooper" + ], + [ + "hiram.lemus" + ], + [ + "melania.wolfe" + ] ] } }, @@ -143054,19 +146993,39 @@ "vote_start_datetime": "2012-07-01T00:00:00", "vote_end_date": "2012-07-15", "last_modified_time": "2018-06-06T09:06:22.577", - "last_modified_user": 482, + "last_modified_user": [ + "kyra.hart" + ], "participants": [ - 836, - 2176, - 898, - 872, - 899, - 810 + [ + "aida.broome" + ], + [ + "dell.castro.ext" + ], + [ + "louann.gee" + ], + [ + "marshall.guerrero" + ], + [ + "hassan.hyde" + ], + [ + "danika.wills" + ] ], "voters": [ - 836, - 872, - 810 + [ + "aida.broome" + ], + [ + "marshall.guerrero" + ], + [ + "danika.wills" + ] ] } }, @@ -143088,29 +147047,69 @@ "vote_start_datetime": "2012-08-17T00:00:00", "vote_end_date": "2012-08-24", "last_modified_time": "2018-06-03T10:22:16.248", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 642, - 564, - 692, - 688, - 645, - 683, - 649, - 2, - 60, - 1098, - 668, - 1089, - 663, - 653, - 682, - 1084, - 687 + [ + "felton.alvarez" + ], + [ + "ezequiel.brock" + ], + [ + "wava.dolan" + ], + [ + "milly.early" + ], + [ + "cole.gamboa" + ], + [ + "delena.gooch" + ], + [ + "callie.grove" + ], + [ + "fritz.joe" + ], + [ + "maegan.mccorkle" + ], + [ + "inge.mcmullen" + ], + [ + "lorene.moultrie" + ], + [ + "larissa.osteen" + ], + [ + "macie.roller" + ], + [ + "aleta.seymour" + ], + [ + "taunya.weinstein" + ], + [ + "melania.wolfe" + ], + [ + "randi.woody" + ] ], "voters": [ - 663, - 682 + [ + "macie.roller" + ], + [ + "taunya.weinstein" + ] ] } }, @@ -143132,105 +147131,297 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-06T09:06:22.637", - "last_modified_user": 643, + "last_modified_user": [ + "arron.tran" + ], "participants": [ - 693, - 881, - 819, - 823, - 723, - 834, - 797, - 791, - 773, - 894, - 888, - 770, - 935, - 868, - 828, - 775, - 767, - 832, - 785, - 807, - 712, - 817, - 875, - 820, - 811, - 855, - 766, - 747, - 750, - 914, - 1840, - 782, - 905, - 707, - 867, - 870, - 812, - 924, - 901, - 700, - 814, - 932, - 865, - 735, - 2144, - 919, - 827, - 911, - 718, - 923, - 708, - 885, - 772, - 798, - 761, - 920, - 804, - 1841, - 904, - 2132, - 922, - 843, - 876, - 765, - 874, - 719, - 760, - 803, - 764, - 792, - 821, - 833 + [ + "herminia.alley" + ], + [ + "shaunna.barnard" + ], + [ + "cherly.bobbitt" + ], + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "angelo.bridges" + ], + [ + "annmarie.briscoe" + ], + [ + "margery.campos" + ], + [ + "kirstin.carbone" + ], + [ + "jeremy.carrington" + ], + [ + "alene.casas" + ], + [ + "zack.chaffin" + ], + [ + "keva.cheng" + ], + [ + "dannie.cochran" + ], + [ + "maribeth.compton" + ], + [ + "penelope.covert" + ], + [ + "mable.craddock" + ], + [ + "mercedez.cupp" + ], + [ + "maxine.dexter" + ], + [ + "dale.earnest" + ], + [ + "lilia.erwin" + ], + [ + "elissa.fowler" + ], + [ + "delila.fredrickson" + ], + [ + "wilmer.goodson" + ], + [ + "wyatt.hale" + ], + [ + "kaitlin.hamblin" + ], + [ + "risa.hammer" + ], + [ + "lachelle.hermann" + ], + [ + "kristyn.holcomb" + ], + [ + "tami.isaac" + ], + [ + "verdell.joyner" + ], + [ + "corrine.kell" + ], + [ + "genevive.kelly" + ], + [ + "gertude.knotts" + ], + [ + "melody.large" + ], + [ + "ta.larry" + ], + [ + "denna.lester" + ], + [ + "marcella.lu" + ], + [ + "tuan.malcolm" + ], + [ + "sima.marquardt" + ], + [ + "irving.mcdade" + ], + [ + "carmelo.michael" + ], + [ + "maureen.moe" + ], + [ + "minerva.moe" + ], + [ + "alta.omalley" + ], + [ + "lashandra.peacock" + ], + [ + "wava.pearl" + ], + [ + "ileana.puente" + ], + [ + "felicia.rawlings" + ], + [ + "christel.rayburn" + ], + [ + "lita.regan" + ], + [ + "sherie.ruth" + ], + [ + "alton.smalley" + ], + [ + "maura.sosa" + ], + [ + "chia.spalding" + ], + [ + "yong.staley" + ], + [ + "gidget.stern" + ], + [ + "shakira.stricklin" + ], + [ + "doyle.stump" + ], + [ + "tayna.tarver" + ], + [ + "chong.thorne" + ], + [ + "irwin.tompkins" + ], + [ + "vella.valerio" + ], + [ + "gladis.vandiver" + ], + [ + "dominga.vega" + ], + [ + "stanford.vernon" + ], + [ + "mario.voigt" + ], + [ + "madelyn.walker" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ], + [ + "lelia.worley" + ], + [ + "carlota.zaragoza" + ] ], "voters": [ - 819, - 823, - 723, - 797, - 773, - 817, - 875, - 766, - 750, - 914, - 870, - 812, - 924, - 901, - 865, - 708, - 885, - 798, - 843, - 719, - 764, - 792, - 821 + [ + "cherly.bobbitt" + ], + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "annmarie.briscoe" + ], + [ + "kirstin.carbone" + ], + [ + "elissa.fowler" + ], + [ + "delila.fredrickson" + ], + [ + "risa.hammer" + ], + [ + "kristyn.holcomb" + ], + [ + "tami.isaac" + ], + [ + "ta.larry" + ], + [ + "denna.lester" + ], + [ + "marcella.lu" + ], + [ + "tuan.malcolm" + ], + [ + "maureen.moe" + ], + [ + "lita.regan" + ], + [ + "sherie.ruth" + ], + [ + "maura.sosa" + ], + [ + "irwin.tompkins" + ], + [ + "stanford.vernon" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ], + [ + "lelia.worley" + ] ] } }, @@ -143252,13 +147443,21 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-06T09:06:22.527", - "last_modified_user": 674, + "last_modified_user": [ + "matthias.kober" + ], "participants": [ - 865, - 786 + [ + "maureen.moe" + ], + [ + "rozella.swenson" + ] ], "voters": [ - 865 + [ + "maureen.moe" + ] ] } }, @@ -143280,31 +147479,75 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-06T09:06:22.522", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 825, - 894, - 766, - 700, - 2070, - 2030, - 885, - 772, - 2132, - 922, - 764, - 2052, - 833 + [ + "cecile.caron" + ], + [ + "jeremy.carrington" + ], + [ + "risa.hammer" + ], + [ + "sima.marquardt" + ], + [ + "arletha.picard" + ], + [ + "porfirio.rasmussen" + ], + [ + "sherie.ruth" + ], + [ + "alton.smalley" + ], + [ + "tayna.tarver" + ], + [ + "chong.thorne" + ], + [ + "florencia.washington" + ], + [ + "star.west" + ], + [ + "carlota.zaragoza" + ] ], "voters": [ - 825, - 894, - 766, - 2070, - 2030, - 885, - 2132, - 764 + [ + "cecile.caron" + ], + [ + "jeremy.carrington" + ], + [ + "risa.hammer" + ], + [ + "arletha.picard" + ], + [ + "porfirio.rasmussen" + ], + [ + "sherie.ruth" + ], + [ + "tayna.tarver" + ], + [ + "florencia.washington" + ] ] } }, @@ -143326,17 +147569,33 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-06T09:06:22.495", - "last_modified_user": 963, + "last_modified_user": [ + "gwyn.lloyd" + ], "participants": [ - 884, - 917, - 731, - 814, - 1142, - 705 + [ + "maybelle.bolton" + ], + [ + "gracie.childs" + ], + [ + "mirtha.cleveland" + ], + [ + "irving.mcdade" + ], + [ + "lin.sales" + ], + [ + "camila.sharp" + ] ], "voters": [ - 1142 + [ + "lin.sales" + ] ] } }, @@ -143358,95 +147617,267 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-06T09:06:22.668", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 823, - 723, - 2087, - 895, - 861, - 791, - 894, - 935, - 868, - 753, - 767, - 928, - 785, - 739, - 702, - 807, - 860, - 891, - 875, - 820, - 811, - 855, - 766, - 747, - 750, - 914, - 782, - 905, - 717, - 867, - 870, - 924, - 697, - 901, - 700, - 932, - 735, - 842, - 2144, - 919, - 923, - 708, - 885, - 709, - 1129, - 798, - 761, - 904, - 2132, - 922, - 843, - 926, - 876, - 765, - 760, - 764, - 792, - 1081 + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "louann.brantley.ext" + ], + [ + "mariano.burns" + ], + [ + "shemeka.cabrera" + ], + [ + "margery.campos" + ], + [ + "jeremy.carrington" + ], + [ + "keva.cheng" + ], + [ + "dannie.cochran" + ], + [ + "lupe.comstock" + ], + [ + "mable.craddock" + ], + [ + "randee.dellinger" + ], + [ + "maxine.dexter" + ], + [ + "hassie.dortch" + ], + [ + "rhona.earl" + ], + [ + "dale.earnest" + ], + [ + "virgie.engle" + ], + [ + "hester.ferro" + ], + [ + "delila.fredrickson" + ], + [ + "wilmer.goodson" + ], + [ + "wyatt.hale" + ], + [ + "kaitlin.hamblin" + ], + [ + "risa.hammer" + ], + [ + "lachelle.hermann" + ], + [ + "kristyn.holcomb" + ], + [ + "tami.isaac" + ], + [ + "corrine.kell" + ], + [ + "genevive.kelly" + ], + [ + "willodean.kitchens" + ], + [ + "melody.large" + ], + [ + "ta.larry" + ], + [ + "marcella.lu" + ], + [ + "cheryl.lucas" + ], + [ + "tuan.malcolm" + ], + [ + "sima.marquardt" + ], + [ + "carmelo.michael" + ], + [ + "minerva.moe" + ], + [ + "marvel.oakley" + ], + [ + "alta.omalley" + ], + [ + "lashandra.peacock" + ], + [ + "christel.rayburn" + ], + [ + "lita.regan" + ], + [ + "sherie.ruth" + ], + [ + "stacy.sawyer" + ], + [ + "holly.slade" + ], + [ + "maura.sosa" + ], + [ + "chia.spalding" + ], + [ + "doyle.stump" + ], + [ + "tayna.tarver" + ], + [ + "chong.thorne" + ], + [ + "irwin.tompkins" + ], + [ + "marcia.trammell" + ], + [ + "vella.valerio" + ], + [ + "gladis.vandiver" + ], + [ + "mario.voigt" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ], + [ + "gwendolyn.yoo" + ] ], "voters": [ - 823, - 723, - 791, - 868, - 928, - 785, - 860, - 875, - 820, - 766, - 750, - 914, - 867, - 870, - 924, - 697, - 901, - 735, - 919, - 708, - 885, - 798, - 2132, - 843, - 764, - 792, - 1081 + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "margery.campos" + ], + [ + "dannie.cochran" + ], + [ + "randee.dellinger" + ], + [ + "maxine.dexter" + ], + [ + "virgie.engle" + ], + [ + "delila.fredrickson" + ], + [ + "wilmer.goodson" + ], + [ + "risa.hammer" + ], + [ + "kristyn.holcomb" + ], + [ + "tami.isaac" + ], + [ + "melody.large" + ], + [ + "ta.larry" + ], + [ + "marcella.lu" + ], + [ + "cheryl.lucas" + ], + [ + "tuan.malcolm" + ], + [ + "minerva.moe" + ], + [ + "lashandra.peacock" + ], + [ + "lita.regan" + ], + [ + "sherie.ruth" + ], + [ + "maura.sosa" + ], + [ + "tayna.tarver" + ], + [ + "irwin.tompkins" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ], + [ + "gwendolyn.yoo" + ] ] } }, @@ -143468,19 +147899,39 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-06T09:06:22.624", - "last_modified_user": 1124, + "last_modified_user": [ + "hsiu.page" + ], "participants": [ - 841, - 726, - 908, - 795, - 790, - 824 + [ + "lyndsey.bolt" + ], + [ + "salina.boykin" + ], + [ + "kimbery.burnette" + ], + [ + "jerald.cooper" + ], + [ + "sharice.kasper" + ], + [ + "adelia.whittington" + ] ], "voters": [ - 726, - 908, - 790 + [ + "salina.boykin" + ], + [ + "kimbery.burnette" + ], + [ + "sharice.kasper" + ] ] } }, @@ -143502,47 +147953,123 @@ "vote_start_datetime": "2013-04-01T00:00:00", "vote_end_date": "2013-04-14", "last_modified_time": "2018-06-06T09:06:22.542", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 693, - 723, - 895, - 791, - 712, - 891, - 875, - 820, - 766, - 747, - 914, - 1840, - 905, - 870, - 901, - 700, - 932, - 2144, - 911, - 718, - 923, - 708, - 798, - 761, - 922, - 843, - 876, - 765, - 719, - 803 + [ + "herminia.alley" + ], + [ + "jesusita.box" + ], + [ + "mariano.burns" + ], + [ + "margery.campos" + ], + [ + "lilia.erwin" + ], + [ + "hester.ferro" + ], + [ + "delila.fredrickson" + ], + [ + "wilmer.goodson" + ], + [ + "risa.hammer" + ], + [ + "lachelle.hermann" + ], + [ + "tami.isaac" + ], + [ + "verdell.joyner" + ], + [ + "genevive.kelly" + ], + [ + "ta.larry" + ], + [ + "tuan.malcolm" + ], + [ + "sima.marquardt" + ], + [ + "carmelo.michael" + ], + [ + "alta.omalley" + ], + [ + "ileana.puente" + ], + [ + "felicia.rawlings" + ], + [ + "christel.rayburn" + ], + [ + "lita.regan" + ], + [ + "maura.sosa" + ], + [ + "chia.spalding" + ], + [ + "chong.thorne" + ], + [ + "irwin.tompkins" + ], + [ + "vella.valerio" + ], + [ + "gladis.vandiver" + ], + [ + "stanford.vernon" + ], + [ + "madelyn.walker" + ] ], "voters": [ - 723, - 766, - 914, - 901, - 708, - 843, - 719 + [ + "jesusita.box" + ], + [ + "risa.hammer" + ], + [ + "tami.isaac" + ], + [ + "tuan.malcolm" + ], + [ + "lita.regan" + ], + [ + "irwin.tompkins" + ], + [ + "stanford.vernon" + ] ] } }, @@ -143564,38 +148091,96 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-17", "last_modified_time": "2019-01-28T10:21:35.449", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 929, - 834, - 853, - 895, - 912, - 775, - 831, - 849, - 330, - 722, - 865, - 799, - 763, - 728, - 862, - 838, - 760, - 824, - 1081 + [ + "crysta.bounds" + ], + [ + "angelo.bridges" + ], + [ + "jennette.briggs" + ], + [ + "mariano.burns" + ], + [ + "edda.cady" + ], + [ + "penelope.covert" + ], + [ + "larita.dejesus" + ], + [ + "isiah.hammonds" + ], + [ + "joette.lindley" + ], + [ + "earlene.marquis" + ], + [ + "maureen.moe" + ], + [ + "daphne.moll" + ], + [ + "armida.nobles" + ], + [ + "larraine.olson" + ], + [ + "karan.thacker" + ], + [ + "stacey.timmerman" + ], + [ + "mario.voigt" + ], + [ + "adelia.whittington" + ], + [ + "gwendolyn.yoo" + ] ], "voters": [ - 929, - 853, - 912, - 831, - 849, - 330, - 722, - 728, - 1081 + [ + "crysta.bounds" + ], + [ + "jennette.briggs" + ], + [ + "edda.cady" + ], + [ + "larita.dejesus" + ], + [ + "isiah.hammonds" + ], + [ + "joette.lindley" + ], + [ + "earlene.marquis" + ], + [ + "larraine.olson" + ], + [ + "gwendolyn.yoo" + ] ] } }, @@ -143617,29 +148202,69 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-06T09:06:22.539", - "last_modified_user": 591, + "last_modified_user": [ + "delegate" + ], "participants": [ - 908, - 739, - 702, - 837, - 790, - 774, - 779, - 697, - 763, - 842, - 709, - 862, - 838, - 844 + [ + "kimbery.burnette" + ], + [ + "hassie.dortch" + ], + [ + "rhona.earl" + ], + [ + "yong.furr" + ], + [ + "sharice.kasper" + ], + [ + "kelsey.kay" + ], + [ + "allie.lowell" + ], + [ + "cheryl.lucas" + ], + [ + "armida.nobles" + ], + [ + "marvel.oakley" + ], + [ + "stacy.sawyer" + ], + [ + "karan.thacker" + ], + [ + "stacey.timmerman" + ], + [ + "esther.ulrich" + ] ], "voters": [ - 908, - 837, - 790, - 774, - 697 + [ + "kimbery.burnette" + ], + [ + "yong.furr" + ], + [ + "sharice.kasper" + ], + [ + "kelsey.kay" + ], + [ + "cheryl.lucas" + ] ] } }, @@ -143661,117 +148286,333 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-14", "last_modified_time": "2018-06-03T10:22:16.159", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 1146, - 693, - 2072, - 881, - 819, - 823, - 723, - 797, - 695, - 773, - 894, - 888, - 770, - 935, - 768, - 868, - 828, - 775, - 767, - 832, - 785, - 807, - 860, - 712, - 817, - 875, - 859, - 820, - 811, - 855, - 766, - 747, - 750, - 914, - 790, - 782, - 905, - 867, - 870, - 812, - 924, - 901, - 700, - 814, - 2068, - 932, - 735, - 2144, - 919, - 827, - 2070, - 911, - 718, - 923, - 708, - 2097, - 1154, - 885, - 1142, - 772, - 798, - 761, - 920, - 804, - 904, - 2132, - 922, - 843, - 926, - 876, - 765, - 874, - 719, - 803, - 764, - 792, - 2052, - 821, - 1081, - 833 + [ + "lulu.ackerman" + ], + [ + "herminia.alley" + ], + [ + "brice.ault" + ], + [ + "shaunna.barnard" + ], + [ + "cherly.bobbitt" + ], + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "annmarie.briscoe" + ], + [ + "armandina.byrne" + ], + [ + "kirstin.carbone" + ], + [ + "jeremy.carrington" + ], + [ + "alene.casas" + ], + [ + "zack.chaffin" + ], + [ + "keva.cheng" + ], + [ + "maxie.childers" + ], + [ + "dannie.cochran" + ], + [ + "maribeth.compton" + ], + [ + "penelope.covert" + ], + [ + "mable.craddock" + ], + [ + "mercedez.cupp" + ], + [ + "maxine.dexter" + ], + [ + "dale.earnest" + ], + [ + "virgie.engle" + ], + [ + "lilia.erwin" + ], + [ + "elissa.fowler" + ], + [ + "delila.fredrickson" + ], + [ + "benito.fuqua" + ], + [ + "wilmer.goodson" + ], + [ + "wyatt.hale" + ], + [ + "kaitlin.hamblin" + ], + [ + "risa.hammer" + ], + [ + "lachelle.hermann" + ], + [ + "kristyn.holcomb" + ], + [ + "tami.isaac" + ], + [ + "sharice.kasper" + ], + [ + "corrine.kell" + ], + [ + "genevive.kelly" + ], + [ + "melody.large" + ], + [ + "ta.larry" + ], + [ + "denna.lester" + ], + [ + "marcella.lu" + ], + [ + "tuan.malcolm" + ], + [ + "sima.marquardt" + ], + [ + "irving.mcdade" + ], + [ + "domingo.mcnutt" + ], + [ + "carmelo.michael" + ], + [ + "minerva.moe" + ], + [ + "alta.omalley" + ], + [ + "lashandra.peacock" + ], + [ + "wava.pearl" + ], + [ + "arletha.picard" + ], + [ + "ileana.puente" + ], + [ + "felicia.rawlings" + ], + [ + "christel.rayburn" + ], + [ + "lita.regan" + ], + [ + "darci.rinehart" + ], + [ + "trey.ruby" + ], + [ + "sherie.ruth" + ], + [ + "lin.sales" + ], + [ + "alton.smalley" + ], + [ + "maura.sosa" + ], + [ + "chia.spalding" + ], + [ + "yong.staley" + ], + [ + "gidget.stern" + ], + [ + "doyle.stump" + ], + [ + "tayna.tarver" + ], + [ + "chong.thorne" + ], + [ + "irwin.tompkins" + ], + [ + "marcia.trammell" + ], + [ + "vella.valerio" + ], + [ + "gladis.vandiver" + ], + [ + "dominga.vega" + ], + [ + "stanford.vernon" + ], + [ + "madelyn.walker" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ], + [ + "star.west" + ], + [ + "lelia.worley" + ], + [ + "gwendolyn.yoo" + ], + [ + "carlota.zaragoza" + ] ], "voters": [ - 1146, - 2072, - 823, - 797, - 773, - 860, - 817, - 875, - 859, - 766, - 750, - 790, - 870, - 901, - 2068, - 2070, - 911, - 708, - 2097, - 761, - 874, - 719, - 803, - 764, - 792, - 821, - 1081 + [ + "lulu.ackerman" + ], + [ + "brice.ault" + ], + [ + "terisa.bottoms" + ], + [ + "annmarie.briscoe" + ], + [ + "kirstin.carbone" + ], + [ + "virgie.engle" + ], + [ + "elissa.fowler" + ], + [ + "delila.fredrickson" + ], + [ + "benito.fuqua" + ], + [ + "risa.hammer" + ], + [ + "kristyn.holcomb" + ], + [ + "sharice.kasper" + ], + [ + "ta.larry" + ], + [ + "tuan.malcolm" + ], + [ + "domingo.mcnutt" + ], + [ + "arletha.picard" + ], + [ + "ileana.puente" + ], + [ + "lita.regan" + ], + [ + "darci.rinehart" + ], + [ + "chia.spalding" + ], + [ + "dominga.vega" + ], + [ + "stanford.vernon" + ], + [ + "madelyn.walker" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ], + [ + "lelia.worley" + ], + [ + "gwendolyn.yoo" + ] ] } }, @@ -143793,130 +148634,372 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-03T10:22:16.187", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 1146, - 2062, - 2046, - 1839, - 2057, - 2072, - 2069, - 2024, - 2037, - 2050, - 2015, - 2064, - 2014, - 2073, - 2043, - 2059, - 2017, - 2079, - 2047, - 2049, - 1144, - 1148, - 2048, - 2035, - 2038, - 2041, - 2054, - 2061, - 2012, - 2036, - 2060, - 2029, - 2032, - 2058, - 2026, - 2042, - 2063, - 2040, - 2033, - 2016, - 2044, - 2020, - 2022, - 1152, - 2034, - 1840, - 1842, - 2018, - 2039, - 2065, - 2021, - 1155, - 2045, - 2068, - 2067, - 2028, - 2075, - 2025, - 2013, - 1151, - 2078, - 2071, - 2051, - 1531, - 2070, - 2023, - 1143, - 2030, - 2027, - 1154, - 1153, - 1142, - 772, - 2074, - 2076, - 2056, - 2055, - 838, - 2066, - 2053, - 2019, - 2052, - 2031 + [ + "lulu.ackerman" + ], + [ + "zane.aldridge" + ], + [ + "echo.andre" + ], + [ + "heide.andrew" + ], + [ + "cleo.arreola" + ], + [ + "brice.ault" + ], + [ + "ayesha.bannister" + ], + [ + "isaura.baptiste" + ], + [ + "inge.baughman" + ], + [ + "mirella.behrens" + ], + [ + "millicent.belcher" + ], + [ + "elfrieda.bess" + ], + [ + "giovanna.browne" + ], + [ + "lashanda.brownlee" + ], + [ + "cecille.buck" + ], + [ + "donetta.burr" + ], + [ + "dia.bussey" + ], + [ + "juliane.call" + ], + [ + "rosendo.carlton" + ], + [ + "bee.castellanos" + ], + [ + "debra.chesser" + ], + [ + "raelene.clancy" + ], + [ + "daniel.cortez" + ], + [ + "scotty.daily" + ], + [ + "cyndy.david" + ], + [ + "eryn.devore" + ], + [ + "sheryl.dow" + ], + [ + "sherryl.dozier" + ], + [ + "dominga.earley" + ], + [ + "haley.engle" + ], + [ + "reva.farr" + ], + [ + "ivana.ferro" + ], + [ + "dwayne.fortier" + ], + [ + "shakira.gilmer" + ], + [ + "rasheeda.glynn" + ], + [ + "fran.goodrich" + ], + [ + "haydee.greco" + ], + [ + "broderick.greenberg" + ], + [ + "tyrone.guay" + ], + [ + "tony.hawkins" + ], + [ + "yetta.heck" + ], + [ + "freddy.hitt" + ], + [ + "carylon.hoffmann" + ], + [ + "haywood.hogue" + ], + [ + "enrique.horne" + ], + [ + "verdell.joyner" + ], + [ + "giovanni.leger" + ], + [ + "tanya.maple" + ], + [ + "jere.marr" + ], + [ + "brent.mattson" + ], + [ + "thi.mcallister" + ], + [ + "jill.mccauley" + ], + [ + "brant.mcduffie" + ], + [ + "domingo.mcnutt" + ], + [ + "deidre.metzler" + ], + [ + "maricruz.nall" + ], + [ + "corinne.neff" + ], + [ + "freida.ness" + ], + [ + "maye.noonan" + ], + [ + "emmy.norwood" + ], + [ + "hugh.oliver" + ], + [ + "cierra.oreilly" + ], + [ + "lasonya.phillip" + ], + [ + "toshia.piazza" + ], + [ + "arletha.picard" + ], + [ + "beverley.pitcher" + ], + [ + "karri.putnam" + ], + [ + "porfirio.rasmussen" + ], + [ + "charlyn.robins" + ], + [ + "trey.ruby" + ], + [ + "francene.sabo" + ], + [ + "lin.sales" + ], + [ + "alton.smalley" + ], + [ + "refugia.soliz" + ], + [ + "nicki.spear" + ], + [ + "leroy.surratt" + ], + [ + "yi.thurman" + ], + [ + "stacey.timmerman" + ], + [ + "halina.tobias" + ], + [ + "shelia.turney" + ], + [ + "carma.watters" + ], + [ + "star.west" + ], + [ + "virgen.willingham" + ] ], "voters": [ - 1146, - 2062, - 2057, - 2050, - 2064, - 2014, - 2073, - 1148, - 2035, - 2041, - 2054, - 2061, - 2012, - 2029, - 2058, - 2042, - 2063, - 1152, - 2034, - 2039, - 2021, - 1155, - 2045, - 2068, - 2067, - 2075, - 2025, - 1151, - 2071, - 1531, - 2070, - 2023, - 2027, - 1154, - 1142, - 2053, - 2019 + [ + "lulu.ackerman" + ], + [ + "zane.aldridge" + ], + [ + "cleo.arreola" + ], + [ + "mirella.behrens" + ], + [ + "elfrieda.bess" + ], + [ + "giovanna.browne" + ], + [ + "lashanda.brownlee" + ], + [ + "raelene.clancy" + ], + [ + "scotty.daily" + ], + [ + "eryn.devore" + ], + [ + "sheryl.dow" + ], + [ + "sherryl.dozier" + ], + [ + "dominga.earley" + ], + [ + "ivana.ferro" + ], + [ + "shakira.gilmer" + ], + [ + "fran.goodrich" + ], + [ + "haydee.greco" + ], + [ + "haywood.hogue" + ], + [ + "enrique.horne" + ], + [ + "jere.marr" + ], + [ + "thi.mcallister" + ], + [ + "jill.mccauley" + ], + [ + "brant.mcduffie" + ], + [ + "domingo.mcnutt" + ], + [ + "deidre.metzler" + ], + [ + "corinne.neff" + ], + [ + "freida.ness" + ], + [ + "emmy.norwood" + ], + [ + "cierra.oreilly" + ], + [ + "toshia.piazza" + ], + [ + "arletha.picard" + ], + [ + "beverley.pitcher" + ], + [ + "charlyn.robins" + ], + [ + "trey.ruby" + ], + [ + "lin.sales" + ], + [ + "shelia.turney" + ], + [ + "carma.watters" + ] ] } }, @@ -143938,36 +149021,90 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-06T09:06:22.657", - "last_modified_user": 591, + "last_modified_user": [ + "delegate" + ], "participants": [ - 754, - 2095, - 839, - 1102, - 671, - 2094, - 878, - 2130, - 688, - 614, - 1100, - 676, - 586, - 2093, - 2091, - 897, - 79 + [ + "sheena.arsenault" + ], + [ + "ali.best" + ], + [ + "asa.carlton" + ], + [ + "etta.child" + ], + [ + "lavina.connor" + ], + [ + "diann.deloach" + ], + [ + "janise.denman" + ], + [ + "cassey.earley" + ], + [ + "milly.early" + ], + [ + "britany.estrella" + ], + [ + "jackelyn.gooding" + ], + [ + "collin.hanley" + ], + [ + "antony.landry" + ], + [ + "kallie.peters" + ], + [ + "danyel.robins" + ], + [ + "bailey.roybal" + ], + [ + "alexis.sandoval" + ] ], "voters": [ - 839, - 2094, - 878, - 2130, - 688, - 614, - 1100, - 586, - 2091 + [ + "asa.carlton" + ], + [ + "diann.deloach" + ], + [ + "janise.denman" + ], + [ + "cassey.earley" + ], + [ + "milly.early" + ], + [ + "britany.estrella" + ], + [ + "jackelyn.gooding" + ], + [ + "antony.landry" + ], + [ + "danyel.robins" + ] ] } }, @@ -143975,7 +149112,7 @@ "model": "evaluation.evaluation", "pk": 1498, "fields": { - "state": "new", + "state": "in_evaluation", "course": 46, "name_de": "", "name_en": "", @@ -143986,18 +149123,37 @@ "can_publish_text_results": false, "_participant_count": null, "_voter_count": null, - "vote_start_datetime": "2013-02-02T00:00:00", - "vote_end_date": "2013-02-10", - "last_modified_time": "2016-02-22T22:08:19.767", - "last_modified_user": null, + "vote_start_datetime": "2019-10-28T19:16:36.113", + "vote_end_date": "2020-09-18", + "last_modified_time": "2019-10-28T19:16:19.471", + "last_modified_user": [ + "evap" + ], "participants": [ - 642, - 600, - 1080, - 1082, - 672, - 602, - 653 + [ + "felton.alvarez" + ], + [ + "thi.anthony" + ], + [ + "chasidy.draper" + ], + [ + "vanna.escamilla" + ], + [ + "alfreda.roche" + ], + [ + "sunshine.ruby" + ], + [ + "aleta.seymour" + ], + [ + "evap" + ] ], "voters": [] } @@ -144020,16 +149176,34 @@ "vote_start_datetime": "2014-08-01T00:00:00", "vote_end_date": "2014-08-31", "last_modified_time": "2019-01-28T10:29:20.273", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 51, - 841, - 839, - 1102, - 878, - 60, - 729, - 2190 + [ + "alanna.ali" + ], + [ + "lyndsey.bolt" + ], + [ + "asa.carlton" + ], + [ + "etta.child" + ], + [ + "janise.denman" + ], + [ + "maegan.mccorkle" + ], + [ + "shemeka.nieves" + ], + [ + "tara.snider" + ] ], "voters": [] } @@ -144052,19 +149226,43 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2016-02-22T22:08:19.797", - "last_modified_user": 2, + "last_modified_user": [ + "fritz.joe" + ], "participants": [ - 549, - 2094, - 2130, - 2100, - 1090, - 2183, - 41, - 1091, - 2099, - 2097, - 2098 + [ + "raymond.bickford" + ], + [ + "diann.deloach" + ], + [ + "cassey.earley" + ], + [ + "fernando.grisham" + ], + [ + "quincy.hammond" + ], + [ + "jaquelyn.huang" + ], + [ + "alan.lachance" + ], + [ + "darcy.osorio" + ], + [ + "alexia.pederson" + ], + [ + "darci.rinehart" + ], + [ + "latesha.snow" + ] ], "voters": [] } @@ -144087,27 +149285,63 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-06T09:06:22.605", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 560, - 608, - 692, - 1080, - 683, - 1134, - 854, - 1086, - 1003, - 668, - 741, - 79, - 939, - 682 + [ + "mariann.alfonso" + ], + [ + "valda.antoine" + ], + [ + "wava.dolan" + ], + [ + "chasidy.draper" + ], + [ + "delena.gooch" + ], + [ + "beula.hopkins" + ], + [ + "velda.kimble" + ], + [ + "kellee.maldonado" + ], + [ + "sheron.mccleary" + ], + [ + "lorene.moultrie" + ], + [ + "randell.reis" + ], + [ + "alexis.sandoval" + ], + [ + "elden.seitz" + ], + [ + "taunya.weinstein" + ] ], "voters": [ - 1134, - 1003, - 682 + [ + "beula.hopkins" + ], + [ + "sheron.mccleary" + ], + [ + "taunya.weinstein" + ] ] } }, @@ -144131,14 +149365,26 @@ "last_modified_time": "2016-02-22T22:08:19.852", "last_modified_user": null, "participants": [ - 608, - 680, - 1100, - 681, - 612 + [ + "valda.antoine" + ], + [ + "jarod.cate" + ], + [ + "jackelyn.gooding" + ], + [ + "renaldo.melendez" + ], + [ + "lavona.pond" + ] ], "voters": [ - 608 + [ + "valda.antoine" + ] ] } }, @@ -144160,26 +149406,60 @@ "vote_start_datetime": "2013-02-04T00:00:00", "vote_end_date": "2013-02-17", "last_modified_time": "2018-06-03T10:22:16.276", - "last_modified_user": 484, + "last_modified_user": [ + "harriet.rushing" + ], "participants": [ - 547, - 1082, - 1079, - 2134, - 826, - 584, - 2089, - 2101, - 660, - 653 + [ + "hilde.blankenship" + ], + [ + "vanna.escamilla" + ], + [ + "vicky.gann" + ], + [ + "lyla.griffiths" + ], + [ + "kristine.leatherman" + ], + [ + "marlana.mclain" + ], + [ + "del.mcnamee" + ], + [ + "tyisha.reich" + ], + [ + "nora.rowley" + ], + [ + "aleta.seymour" + ] ], "voters": [ - 547, - 1082, - 1079, - 826, - 2101, - 653 + [ + "hilde.blankenship" + ], + [ + "vanna.escamilla" + ], + [ + "vicky.gann" + ], + [ + "kristine.leatherman" + ], + [ + "tyisha.reich" + ], + [ + "aleta.seymour" + ] ] } }, @@ -144203,10 +149483,18 @@ "last_modified_time": "2016-02-22T22:08:19.859", "last_modified_user": null, "participants": [ - 1085, - 645, - 2099, - 1078 + [ + "eden.desimone" + ], + [ + "cole.gamboa" + ], + [ + "alexia.pederson" + ], + [ + "raymonde.stock" + ] ], "voters": [] } @@ -144231,12 +149519,24 @@ "last_modified_time": "2016-02-22T22:08:19.810", "last_modified_user": null, "participants": [ - 671, - 692, - 683, - 668, - 939, - 661 + [ + "lavina.connor" + ], + [ + "wava.dolan" + ], + [ + "delena.gooch" + ], + [ + "lorene.moultrie" + ], + [ + "elden.seitz" + ], + [ + "eugene.tennant" + ] ], "voters": [] } @@ -144259,45 +149559,117 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-03T10:22:16.182", - "last_modified_user": 1075, + "last_modified_user": [ + "trudie.huntley" + ], "participants": [ - 560, - 642, - 1099, - 691, - 2094, - 878, - 1079, - 883, - 2111, - 674, - 1086, - 1098, - 900, - 2099, - 741, - 2091, - 663, - 930, - 897, - 79, - 724, - 845, - 601, - 2228, - 687, - 624 + [ + "mariann.alfonso" + ], + [ + "felton.alvarez" + ], + [ + "jammie.bey" + ], + [ + "jeremiah.burkholder" + ], + [ + "diann.deloach" + ], + [ + "janise.denman" + ], + [ + "vicky.gann" + ], + [ + "kayce.grigsby" + ], + [ + "margo.hanna.ext" + ], + [ + "matthias.kober" + ], + [ + "kellee.maldonado" + ], + [ + "inge.mcmullen" + ], + [ + "odessa.mcmullen" + ], + [ + "alexia.pederson" + ], + [ + "randell.reis" + ], + [ + "danyel.robins" + ], + [ + "macie.roller" + ], + [ + "carolyn.rose" + ], + [ + "bailey.roybal" + ], + [ + "alexis.sandoval" + ], + [ + "carman.slagle" + ], + [ + "kristie.stump" + ], + [ + "corinne.tolliver" + ], + [ + "kanesha.waggoner" + ], + [ + "randi.woody" + ], + [ + "jennifer.yarbrough" + ] ], "voters": [ - 2094, - 878, - 1079, - 883, - 2099, - 2091, - 724, - 601, - 624 + [ + "diann.deloach" + ], + [ + "janise.denman" + ], + [ + "vicky.gann" + ], + [ + "kayce.grigsby" + ], + [ + "alexia.pederson" + ], + [ + "danyel.robins" + ], + [ + "carman.slagle" + ], + [ + "corinne.tolliver" + ], + [ + "jennifer.yarbrough" + ] ] } }, @@ -144319,24 +149691,54 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-28", "last_modified_time": "2018-06-06T09:06:22.589", - "last_modified_user": 1124, + "last_modified_user": [ + "hsiu.page" + ], "participants": [ - 665, - 614, - 903, - 580, - 1134, - 681, - 2097, - 602, - 669 + [ + "diedra.batson" + ], + [ + "britany.estrella" + ], + [ + "corrinne.ferraro" + ], + [ + "chelsey.fried" + ], + [ + "beula.hopkins" + ], + [ + "renaldo.melendez" + ], + [ + "darci.rinehart" + ], + [ + "sunshine.ruby" + ], + [ + "reynaldo.thayer" + ] ], "voters": [ - 614, - 580, - 1134, - 2097, - 669 + [ + "britany.estrella" + ], + [ + "chelsey.fried" + ], + [ + "beula.hopkins" + ], + [ + "darci.rinehart" + ], + [ + "reynaldo.thayer" + ] ] } }, @@ -144358,45 +149760,117 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-06T09:06:22.647", - "last_modified_user": 650, + "last_modified_user": [ + "lisandra.grace.ext" + ], "participants": [ - 642, - 882, - 561, - 1099, - 787, - 2094, - 2130, - 688, - 2111, - 615, - 854, - 563, - 41, - 850, - 1098, - 887, - 1091, - 2099, - 863, - 2097, - 2091, - 663, - 616, - 686, - 669 + [ + "felton.alvarez" + ], + [ + "eugenia.bauer" + ], + [ + "lelia.beall" + ], + [ + "jammie.bey" + ], + [ + "hoyt.bohn" + ], + [ + "diann.deloach" + ], + [ + "cassey.earley" + ], + [ + "milly.early" + ], + [ + "margo.hanna.ext" + ], + [ + "nita.jennings" + ], + [ + "velda.kimble" + ], + [ + "stepanie.kimmel" + ], + [ + "alan.lachance" + ], + [ + "mandie.lomax" + ], + [ + "inge.mcmullen" + ], + [ + "roxy.olds" + ], + [ + "darcy.osorio" + ], + [ + "alexia.pederson" + ], + [ + "elicia.rawlins" + ], + [ + "darci.rinehart" + ], + [ + "danyel.robins" + ], + [ + "macie.roller" + ], + [ + "maribel.scales" + ], + [ + "michaele.shuler" + ], + [ + "reynaldo.thayer" + ] ], "voters": [ - 787, - 2094, - 2130, - 688, - 887, - 2097, - 2091, - 616, - 686, - 669 + [ + "hoyt.bohn" + ], + [ + "diann.deloach" + ], + [ + "cassey.earley" + ], + [ + "milly.early" + ], + [ + "roxy.olds" + ], + [ + "darci.rinehart" + ], + [ + "danyel.robins" + ], + [ + "maribel.scales" + ], + [ + "michaele.shuler" + ], + [ + "reynaldo.thayer" + ] ] } }, @@ -144418,90 +149892,252 @@ "vote_start_datetime": "2013-01-26T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-03T10:22:16.346", - "last_modified_user": 408, + "last_modified_user": [ + "britteny.easley" + ], "participants": [ - 805, - 642, - 2095, - 1099, - 547, - 651, - 691, - 808, - 557, - 1102, - 621, - 671, - 658, - 1085, - 692, - 1082, - 614, - 580, - 683, - 1100, - 1013, - 2134, - 883, - 649, - 1134, - 684, - 2, - 674, - 41, - 80, - 1086, - 1140, - 907, - 900, - 681, - 668, - 729, - 2099, - 628, - 863, - 2101, - 2097, - 663, - 930, - 660, - 897, - 664, - 616, - 2098, - 1078, - 667, - 601, - 670, - 613, - 2228, - 673, - 682, - 1084, - 687, - 721, - 611 + [ + "crysta.ainsworth" + ], + [ + "felton.alvarez" + ], + [ + "ali.best" + ], + [ + "jammie.bey" + ], + [ + "hilde.blankenship" + ], + [ + "veta.branson" + ], + [ + "jeremiah.burkholder" + ], + [ + "virgina.carrasco" + ], + [ + "osvaldo.carrier" + ], + [ + "etta.child" + ], + [ + "karly.clapp" + ], + [ + "lavina.connor" + ], + [ + "ardath.cross" + ], + [ + "eden.desimone" + ], + [ + "wava.dolan" + ], + [ + "vanna.escamilla" + ], + [ + "britany.estrella" + ], + [ + "chelsey.fried" + ], + [ + "delena.gooch" + ], + [ + "jackelyn.gooding" + ], + [ + "carol.grier" + ], + [ + "lyla.griffiths" + ], + [ + "kayce.grigsby" + ], + [ + "callie.grove" + ], + [ + "beula.hopkins" + ], + [ + "ariana.houghton" + ], + [ + "fritz.joe" + ], + [ + "matthias.kober" + ], + [ + "alan.lachance" + ], + [ + "shela.lowell" + ], + [ + "kellee.maldonado" + ], + [ + "ling.mcdade" + ], + [ + "noma.mcdougall" + ], + [ + "odessa.mcmullen" + ], + [ + "renaldo.melendez" + ], + [ + "lorene.moultrie" + ], + [ + "shemeka.nieves" + ], + [ + "alexia.pederson" + ], + [ + "noriko.rau" + ], + [ + "elicia.rawlins" + ], + [ + "tyisha.reich" + ], + [ + "darci.rinehart" + ], + [ + "macie.roller" + ], + [ + "carolyn.rose" + ], + [ + "nora.rowley" + ], + [ + "bailey.roybal" + ], + [ + "keith.sanchez" + ], + [ + "maribel.scales" + ], + [ + "latesha.snow" + ], + [ + "raymonde.stock" + ], + [ + "magen.thorn" + ], + [ + "corinne.tolliver" + ], + [ + "luis.truong" + ], + [ + "emmaline.voigt" + ], + [ + "kanesha.waggoner" + ], + [ + "myrtle.wahl" + ], + [ + "taunya.weinstein" + ], + [ + "melania.wolfe" + ], + [ + "randi.woody" + ], + [ + "ute.ybarra" + ], + [ + "editor" + ] ], "voters": [ - 621, - 1085, - 1082, - 614, - 580, - 1100, - 883, - 684, - 2101, - 2097, - 930, - 616, - 601, - 670, - 673, - 682, - 1084, - 721, - 611 + [ + "karly.clapp" + ], + [ + "eden.desimone" + ], + [ + "vanna.escamilla" + ], + [ + "britany.estrella" + ], + [ + "chelsey.fried" + ], + [ + "jackelyn.gooding" + ], + [ + "kayce.grigsby" + ], + [ + "ariana.houghton" + ], + [ + "tyisha.reich" + ], + [ + "darci.rinehart" + ], + [ + "carolyn.rose" + ], + [ + "maribel.scales" + ], + [ + "corinne.tolliver" + ], + [ + "luis.truong" + ], + [ + "myrtle.wahl" + ], + [ + "taunya.weinstein" + ], + [ + "melania.wolfe" + ], + [ + "ute.ybarra" + ], + [ + "editor" + ] ] } }, @@ -144523,31 +150159,75 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-03-20", "last_modified_time": "2018-06-03T10:22:16.370", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 882, - 680, - 1085, - 692, - 683, - 2106, - 899, - 2, - 41, - 65, - 850, - 623, - 579, - 715, - 939, - 565, - 687 + [ + "eugenia.bauer" + ], + [ + "jarod.cate" + ], + [ + "eden.desimone" + ], + [ + "wava.dolan" + ], + [ + "delena.gooch" + ], + [ + "dia.harden" + ], + [ + "hassan.hyde" + ], + [ + "fritz.joe" + ], + [ + "alan.lachance" + ], + [ + "marna.leboeuf" + ], + [ + "mandie.lomax" + ], + [ + "nana.meador" + ], + [ + "wendie.pike" + ], + [ + "lorrine.robertson" + ], + [ + "elden.seitz" + ], + [ + "marleen.spivey" + ], + [ + "randi.woody" + ] ], "voters": [ - 882, - 1085, - 2106, - 565 + [ + "eugenia.bauer" + ], + [ + "eden.desimone" + ], + [ + "dia.harden" + ], + [ + "marleen.spivey" + ] ] } }, @@ -144569,65 +150249,177 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-06T09:06:22.507", - "last_modified_user": 408, + "last_modified_user": [ + "britteny.easley" + ], "participants": [ - 805, - 608, - 808, - 677, - 621, - 671, - 2094, - 878, - 692, - 2130, - 903, - 580, - 645, - 683, - 1013, - 883, - 1101, - 1140, - 907, - 900, - 668, - 729, - 2099, - 1094, - 2093, - 579, - 851, - 715, - 2091, - 930, - 897, - 724, - 757, - 1078, - 667, - 670, - 613, - 1084, - 721, - 679 + [ + "crysta.ainsworth" + ], + [ + "valda.antoine" + ], + [ + "virgina.carrasco" + ], + [ + "josef.castellano" + ], + [ + "karly.clapp" + ], + [ + "lavina.connor" + ], + [ + "diann.deloach" + ], + [ + "janise.denman" + ], + [ + "wava.dolan" + ], + [ + "cassey.earley" + ], + [ + "corrinne.ferraro" + ], + [ + "chelsey.fried" + ], + [ + "cole.gamboa" + ], + [ + "delena.gooch" + ], + [ + "carol.grier" + ], + [ + "kayce.grigsby" + ], + [ + "hiram.lemus" + ], + [ + "ling.mcdade" + ], + [ + "noma.mcdougall" + ], + [ + "odessa.mcmullen" + ], + [ + "lorene.moultrie" + ], + [ + "shemeka.nieves" + ], + [ + "alexia.pederson" + ], + [ + "norris.peeler" + ], + [ + "kallie.peters" + ], + [ + "wendie.pike" + ], + [ + "chauncey.rivera" + ], + [ + "lorrine.robertson" + ], + [ + "danyel.robins" + ], + [ + "carolyn.rose" + ], + [ + "bailey.roybal" + ], + [ + "carman.slagle" + ], + [ + "jeannie.spears" + ], + [ + "raymonde.stock" + ], + [ + "magen.thorn" + ], + [ + "luis.truong" + ], + [ + "emmaline.voigt" + ], + [ + "melania.wolfe" + ], + [ + "ute.ybarra" + ], + [ + "student" + ] ], "voters": [ - 677, - 621, - 2130, - 580, - 883, - 1101, - 2099, - 851, - 2091, - 930, - 724, - 670, - 1084, - 721, - 679 + [ + "josef.castellano" + ], + [ + "karly.clapp" + ], + [ + "cassey.earley" + ], + [ + "chelsey.fried" + ], + [ + "kayce.grigsby" + ], + [ + "hiram.lemus" + ], + [ + "alexia.pederson" + ], + [ + "chauncey.rivera" + ], + [ + "danyel.robins" + ], + [ + "carolyn.rose" + ], + [ + "carman.slagle" + ], + [ + "luis.truong" + ], + [ + "melania.wolfe" + ], + [ + "ute.ybarra" + ], + [ + "student" + ] ] } }, @@ -144651,11 +150443,21 @@ "last_modified_time": "2016-02-22T22:08:19.731", "last_modified_user": null, "participants": [ - 1101, - 667, - 670, - 1084, - 679 + [ + "hiram.lemus" + ], + [ + "magen.thorn" + ], + [ + "luis.truong" + ], + [ + "melania.wolfe" + ], + [ + "student" + ] ], "voters": [] } @@ -144678,48 +150480,126 @@ "vote_start_datetime": "2013-02-02T00:00:00", "vote_end_date": "2013-02-10", "last_modified_time": "2018-06-06T09:06:22.565", - "last_modified_user": 408, + "last_modified_user": [ + "britteny.easley" + ], "participants": [ - 608, - 808, - 903, - 1100, - 2134, - 883, - 649, - 676, - 826, - 1101, - 1086, - 1003, - 907, - 900, - 1094, - 741, - 851, - 715, - 2091, - 930, - 897, - 757, - 1078, - 845, - 661, - 682, - 1084, - 721 + [ + "valda.antoine" + ], + [ + "virgina.carrasco" + ], + [ + "corrinne.ferraro" + ], + [ + "jackelyn.gooding" + ], + [ + "lyla.griffiths" + ], + [ + "kayce.grigsby" + ], + [ + "callie.grove" + ], + [ + "collin.hanley" + ], + [ + "kristine.leatherman" + ], + [ + "hiram.lemus" + ], + [ + "kellee.maldonado" + ], + [ + "sheron.mccleary" + ], + [ + "noma.mcdougall" + ], + [ + "odessa.mcmullen" + ], + [ + "norris.peeler" + ], + [ + "randell.reis" + ], + [ + "chauncey.rivera" + ], + [ + "lorrine.robertson" + ], + [ + "danyel.robins" + ], + [ + "carolyn.rose" + ], + [ + "bailey.roybal" + ], + [ + "jeannie.spears" + ], + [ + "raymonde.stock" + ], + [ + "kristie.stump" + ], + [ + "eugene.tennant" + ], + [ + "taunya.weinstein" + ], + [ + "melania.wolfe" + ], + [ + "ute.ybarra" + ] ], "voters": [ - 1100, - 883, - 1101, - 1003, - 851, - 2091, - 930, - 682, - 1084, - 721 + [ + "jackelyn.gooding" + ], + [ + "kayce.grigsby" + ], + [ + "hiram.lemus" + ], + [ + "sheron.mccleary" + ], + [ + "chauncey.rivera" + ], + [ + "danyel.robins" + ], + [ + "carolyn.rose" + ], + [ + "taunya.weinstein" + ], + [ + "melania.wolfe" + ], + [ + "ute.ybarra" + ] ] } }, @@ -144741,56 +150621,150 @@ "vote_start_datetime": "2013-02-25T00:00:00", "vote_end_date": "2013-03-03", "last_modified_time": "2018-06-03T10:22:16.197", - "last_modified_user": 484, + "last_modified_user": [ + "harriet.rushing" + ], "participants": [ - 642, - 600, - 561, - 691, - 557, - 576, - 1102, - 671, - 690, - 1082, - 593, - 2110, - 1079, - 2134, - 2100, - 2106, - 674, - 1088, - 47, - 65, - 555, - 60, - 2105, - 584, - 1098, - 2089, - 1091, - 1089, - 2093, - 2101, - 2091, - 930, - 79, - 2098, - 619, - 2228, - 624, - 611 + [ + "felton.alvarez" + ], + [ + "thi.anthony" + ], + [ + "lelia.beall" + ], + [ + "jeremiah.burkholder" + ], + [ + "osvaldo.carrier" + ], + [ + "elvie.chaffin" + ], + [ + "etta.child" + ], + [ + "lavina.connor" + ], + [ + "january.copeland" + ], + [ + "vanna.escamilla" + ], + [ + "yolanda.farley" + ], + [ + "rosina.frasier" + ], + [ + "vicky.gann" + ], + [ + "lyla.griffiths" + ], + [ + "fernando.grisham" + ], + [ + "dia.harden" + ], + [ + "matthias.kober" + ], + [ + "tula.langdon" + ], + [ + "clemencia.lea" + ], + [ + "marna.leboeuf" + ], + [ + "jacqui.lindsey" + ], + [ + "maegan.mccorkle" + ], + [ + "mayme.mcculloch" + ], + [ + "marlana.mclain" + ], + [ + "inge.mcmullen" + ], + [ + "del.mcnamee" + ], + [ + "darcy.osorio" + ], + [ + "larissa.osteen" + ], + [ + "kallie.peters" + ], + [ + "tyisha.reich" + ], + [ + "danyel.robins" + ], + [ + "carolyn.rose" + ], + [ + "alexis.sandoval" + ], + [ + "latesha.snow" + ], + [ + "regan.swank" + ], + [ + "kanesha.waggoner" + ], + [ + "jennifer.yarbrough" + ], + [ + "editor" + ] ], "voters": [ - 1082, - 593, - 1079, - 2106, - 2101, - 79, - 624, - 611 + [ + "vanna.escamilla" + ], + [ + "yolanda.farley" + ], + [ + "vicky.gann" + ], + [ + "dia.harden" + ], + [ + "tyisha.reich" + ], + [ + "alexis.sandoval" + ], + [ + "jennifer.yarbrough" + ], + [ + "editor" + ] ] } }, @@ -144812,39 +150786,99 @@ "vote_start_datetime": "2013-06-28T00:00:00", "vote_end_date": "2013-07-04", "last_modified_time": "2018-06-06T09:06:22.644", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 819, - 823, - 791, - 773, - 894, - 868, - 807, - 2026, - 855, - 782, - 911, - 1142, - 772, - 798, - 761, - 874, - 821, - 833 + [ + "cherly.bobbitt" + ], + [ + "terisa.bottoms" + ], + [ + "margery.campos" + ], + [ + "kirstin.carbone" + ], + [ + "jeremy.carrington" + ], + [ + "dannie.cochran" + ], + [ + "dale.earnest" + ], + [ + "rasheeda.glynn" + ], + [ + "kaitlin.hamblin" + ], + [ + "corrine.kell" + ], + [ + "ileana.puente" + ], + [ + "lin.sales" + ], + [ + "alton.smalley" + ], + [ + "maura.sosa" + ], + [ + "chia.spalding" + ], + [ + "dominga.vega" + ], + [ + "lelia.worley" + ], + [ + "carlota.zaragoza" + ] ], "voters": [ - 819, - 791, - 773, - 894, - 868, - 782, - 911, - 1142, - 761, - 874, - 821 + [ + "cherly.bobbitt" + ], + [ + "margery.campos" + ], + [ + "kirstin.carbone" + ], + [ + "jeremy.carrington" + ], + [ + "dannie.cochran" + ], + [ + "corrine.kell" + ], + [ + "ileana.puente" + ], + [ + "lin.sales" + ], + [ + "chia.spalding" + ], + [ + "dominga.vega" + ], + [ + "lelia.worley" + ] ] } }, @@ -144866,20 +150900,46 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-09-22", "last_modified_time": "2016-02-22T22:08:19.804", - "last_modified_user": 1105, + "last_modified_user": [ + "qiana.briscoe.ext" + ], "participants": [ - 693, - 723, - 894, - 888, - 1144, - 775, - 832, - 1115, - 776, - 2045, - 932, - 2144 + [ + "herminia.alley" + ], + [ + "jesusita.box" + ], + [ + "jeremy.carrington" + ], + [ + "alene.casas" + ], + [ + "debra.chesser" + ], + [ + "penelope.covert" + ], + [ + "mercedez.cupp" + ], + [ + "conchita.dent.ext" + ], + [ + "christia.manzo" + ], + [ + "brant.mcduffie" + ], + [ + "carmelo.michael" + ], + [ + "alta.omalley" + ] ], "voters": [] } @@ -144902,20 +150962,46 @@ "vote_start_datetime": "2099-08-01T00:00:00", "vote_end_date": "2099-08-31", "last_modified_time": "2019-01-28T11:11:46.247", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 859, - 586, - 2105, - 907, - 793, - 2137, - 757, - 845, - 2138, - 682, - 721, - 679 + [ + "benito.fuqua" + ], + [ + "antony.landry" + ], + [ + "mayme.mcculloch" + ], + [ + "noma.mcdougall" + ], + [ + "antonetta.middleton" + ], + [ + "armand.person" + ], + [ + "jeannie.spears" + ], + [ + "kristie.stump" + ], + [ + "anton.swank" + ], + [ + "taunya.weinstein" + ], + [ + "ute.ybarra" + ], + [ + "student" + ] ], "voters": [] } @@ -144938,130 +151024,372 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-21", "last_modified_time": "2018-06-06T09:06:22.579", - "last_modified_user": 318, + "last_modified_user": [ + "laurence.tipton" + ], "participants": [ - 2062, - 2069, - 2015, - 2148, - 797, - 2014, - 908, - 2059, - 2170, - 894, - 2150, - 868, - 828, - 1838, - 832, - 2038, - 785, - 2151, - 2054, - 2012, - 2159, - 712, - 891, - 2032, - 817, - 2026, - 820, - 2165, - 2033, - 2173, - 2156, - 2154, - 747, - 2168, - 2020, - 750, - 2147, - 914, - 790, - 774, - 782, - 905, - 867, - 2157, - 1842, - 812, - 2155, - 2169, - 924, - 901, - 2018, - 700, - 2153, - 2068, - 865, - 735, - 2167, - 2172, - 1151, - 2144, - 2164, - 2149, - 2051, - 2162, - 2161, - 911, - 1143, - 2030, - 708, - 2174, - 2163, - 1154, - 2160, - 2158, - 885, - 1153, - 1142, - 2171, - 2152, - 761, - 804, - 904, - 2132, - 838, - 843, - 926, - 876, - 874, - 719, - 803, - 764, - 792, - 2052, - 2166, - 833 + [ + "zane.aldridge" + ], + [ + "ayesha.bannister" + ], + [ + "millicent.belcher" + ], + [ + "jan.bettencourt.ext" + ], + [ + "annmarie.briscoe" + ], + [ + "giovanna.browne" + ], + [ + "kimbery.burnette" + ], + [ + "donetta.burr" + ], + [ + "zane.calvert.ext" + ], + [ + "jeremy.carrington" + ], + [ + "tarra.carson.ext" + ], + [ + "dannie.cochran" + ], + [ + "maribeth.compton" + ], + [ + "elenora.crawford" + ], + [ + "mercedez.cupp" + ], + [ + "cyndy.david" + ], + [ + "maxine.dexter" + ], + [ + "gwyneth.dolan.ext" + ], + [ + "sheryl.dow" + ], + [ + "dominga.earley" + ], + [ + "florene.earnest.ext" + ], + [ + "lilia.erwin" + ], + [ + "hester.ferro" + ], + [ + "dwayne.fortier" + ], + [ + "elissa.fowler" + ], + [ + "rasheeda.glynn" + ], + [ + "wilmer.goodson" + ], + [ + "rhiannon.gresham.ext" + ], + [ + "tyrone.guay" + ], + [ + "donnetta.hacker.ext" + ], + [ + "lovie.hammonds.ext" + ], + [ + "pansy.hanna.ext" + ], + [ + "lachelle.hermann" + ], + [ + "tifany.hinojosa.ext" + ], + [ + "freddy.hitt" + ], + [ + "kristyn.holcomb" + ], + [ + "mi.ingraham.ext" + ], + [ + "tami.isaac" + ], + [ + "sharice.kasper" + ], + [ + "kelsey.kay" + ], + [ + "corrine.kell" + ], + [ + "genevive.kelly" + ], + [ + "melody.large" + ], + [ + "norene.latimer.ext" + ], + [ + "giovanni.leger" + ], + [ + "denna.lester" + ], + [ + "rosana.limon.ext" + ], + [ + "francie.loya.ext" + ], + [ + "marcella.lu" + ], + [ + "tuan.malcolm" + ], + [ + "tanya.maple" + ], + [ + "sima.marquardt" + ], + [ + "elly.mcmahan.ext" + ], + [ + "domingo.mcnutt" + ], + [ + "maureen.moe" + ], + [ + "minerva.moe" + ], + [ + "lucina.morey.ext" + ], + [ + "may.nation.ext" + ], + [ + "emmy.norwood" + ], + [ + "alta.omalley" + ], + [ + "carie.petit.ext" + ], + [ + "arcelia.petrie.ext" + ], + [ + "lasonya.phillip" + ], + [ + "vicenta.pinto.ext" + ], + [ + "hermila.poole.ext" + ], + [ + "ileana.puente" + ], + [ + "karri.putnam" + ], + [ + "porfirio.rasmussen" + ], + [ + "lita.regan" + ], + [ + "ronni.rousseau.ext" + ], + [ + "lance.roy.ext" + ], + [ + "trey.ruby" + ], + [ + "ignacia.rucker.ext" + ], + [ + "barrie.russell.ext" + ], + [ + "sherie.ruth" + ], + [ + "francene.sabo" + ], + [ + "lin.sales" + ], + [ + "tyesha.schreiner.ext" + ], + [ + "kira.simone.ext" + ], + [ + "chia.spalding" + ], + [ + "gidget.stern" + ], + [ + "doyle.stump" + ], + [ + "tayna.tarver" + ], + [ + "stacey.timmerman" + ], + [ + "irwin.tompkins" + ], + [ + "marcia.trammell" + ], + [ + "vella.valerio" + ], + [ + "dominga.vega" + ], + [ + "stanford.vernon" + ], + [ + "madelyn.walker" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ], + [ + "star.west" + ], + [ + "melanie.whalen.ext" + ], + [ + "carlota.zaragoza" + ] ], "voters": [ - 2069, - 2014, - 908, - 2059, - 2054, - 2012, - 2032, - 2026, - 2173, - 2168, - 750, - 1842, - 924, - 901, - 911, - 2030, - 708, - 2163, - 1154, - 1142, - 2152, - 843, - 719, - 764, - 792 + [ + "ayesha.bannister" + ], + [ + "giovanna.browne" + ], + [ + "kimbery.burnette" + ], + [ + "donetta.burr" + ], + [ + "sheryl.dow" + ], + [ + "dominga.earley" + ], + [ + "dwayne.fortier" + ], + [ + "rasheeda.glynn" + ], + [ + "donnetta.hacker.ext" + ], + [ + "tifany.hinojosa.ext" + ], + [ + "kristyn.holcomb" + ], + [ + "giovanni.leger" + ], + [ + "marcella.lu" + ], + [ + "tuan.malcolm" + ], + [ + "ileana.puente" + ], + [ + "porfirio.rasmussen" + ], + [ + "lita.regan" + ], + [ + "lance.roy.ext" + ], + [ + "trey.ruby" + ], + [ + "lin.sales" + ], + [ + "kira.simone.ext" + ], + [ + "irwin.tompkins" + ], + [ + "stanford.vernon" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ] ] } }, @@ -145083,17 +151411,33 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-09-30", "last_modified_time": "2018-06-06T09:06:22.652", - "last_modified_user": 318, + "last_modified_user": [ + "laurence.tipton" + ], "participants": [ - 787, - 730, - 2106, - 850, - 939 + [ + "hoyt.bohn" + ], + [ + "almeta.cody" + ], + [ + "dia.harden" + ], + [ + "mandie.lomax" + ], + [ + "elden.seitz" + ] ], "voters": [ - 787, - 730 + [ + "hoyt.bohn" + ], + [ + "almeta.cody" + ] ] } }, @@ -145115,34 +151459,84 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-21", "last_modified_time": "2018-06-06T09:06:22.529", - "last_modified_user": 318, + "last_modified_user": [ + "laurence.tipton" + ], "participants": [ - 787, - 677, - 822, - 684, - 850, - 1095, - 763, - 1089, - 628, - 863, - 715, - 939, - 757, - 2138, - 661, - 687 + [ + "hoyt.bohn" + ], + [ + "josef.castellano" + ], + [ + "mitchel.heard" + ], + [ + "ariana.houghton" + ], + [ + "mandie.lomax" + ], + [ + "celsa.macias" + ], + [ + "armida.nobles" + ], + [ + "larissa.osteen" + ], + [ + "noriko.rau" + ], + [ + "elicia.rawlins" + ], + [ + "lorrine.robertson" + ], + [ + "elden.seitz" + ], + [ + "jeannie.spears" + ], + [ + "anton.swank" + ], + [ + "eugene.tennant" + ], + [ + "randi.woody" + ] ], "voters": [ - 787, - 822, - 684, - 850, - 715, - 939, - 757, - 687 + [ + "hoyt.bohn" + ], + [ + "mitchel.heard" + ], + [ + "ariana.houghton" + ], + [ + "mandie.lomax" + ], + [ + "lorrine.robertson" + ], + [ + "elden.seitz" + ], + [ + "jeannie.spears" + ], + [ + "randi.woody" + ] ] } }, @@ -145164,28 +151558,66 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2018-06-06T09:06:22.641", - "last_modified_user": 318, + "last_modified_user": [ + "laurence.tipton" + ], "participants": [ - 693, - 819, - 823, - 723, - 888, - 875, - 2147, - 867, - 812, - 827, - 718, - 833 + [ + "herminia.alley" + ], + [ + "cherly.bobbitt" + ], + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "alene.casas" + ], + [ + "delila.fredrickson" + ], + [ + "mi.ingraham.ext" + ], + [ + "melody.large" + ], + [ + "denna.lester" + ], + [ + "wava.pearl" + ], + [ + "felicia.rawlings" + ], + [ + "carlota.zaragoza" + ] ], "voters": [ - 819, - 723, - 875, - 867, - 812, - 833 + [ + "cherly.bobbitt" + ], + [ + "jesusita.box" + ], + [ + "delila.fredrickson" + ], + [ + "melody.large" + ], + [ + "denna.lester" + ], + [ + "carlota.zaragoza" + ] ] } }, @@ -145207,14 +151639,24 @@ "vote_start_datetime": "2013-09-01T00:00:00", "vote_end_date": "2013-09-15", "last_modified_time": "2018-06-03T10:22:16.279", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 903, - 660 + [ + "corrinne.ferraro" + ], + [ + "nora.rowley" + ] ], "voters": [ - 903, - 660 + [ + "corrinne.ferraro" + ], + [ + "nora.rowley" + ] ] } }, @@ -145236,47 +151678,123 @@ "vote_start_datetime": "2013-08-12T00:00:00", "vote_end_date": "2013-08-23", "last_modified_time": "2018-06-03T10:22:16.236", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 805, - 560, - 561, - 547, - 841, - 695, - 557, - 2176, - 671, - 658, - 789, - 903, - 2211, - 859, - 1013, - 883, - 2100, - 2178, - 899, - 733, - 606, - 1101, - 887, - 741, - 715, - 2091, - 660, - 1135, - 582, - 757, - 604, - 661 + [ + "crysta.ainsworth" + ], + [ + "mariann.alfonso" + ], + [ + "lelia.beall" + ], + [ + "hilde.blankenship" + ], + [ + "lyndsey.bolt" + ], + [ + "armandina.byrne" + ], + [ + "osvaldo.carrier" + ], + [ + "dell.castro.ext" + ], + [ + "lavina.connor" + ], + [ + "ardath.cross" + ], + [ + "shameka.dew" + ], + [ + "corrinne.ferraro" + ], + [ + "jarrett.flannery" + ], + [ + "benito.fuqua" + ], + [ + "carol.grier" + ], + [ + "kayce.grigsby" + ], + [ + "fernando.grisham" + ], + [ + "sterling.hutchins" + ], + [ + "hassan.hyde" + ], + [ + "shayna.hyde" + ], + [ + "halley.landrum" + ], + [ + "hiram.lemus" + ], + [ + "roxy.olds" + ], + [ + "randell.reis" + ], + [ + "lorrine.robertson" + ], + [ + "danyel.robins" + ], + [ + "nora.rowley" + ], + [ + "kallie.sierra" + ], + [ + "gilda.soper" + ], + [ + "jeannie.spears" + ], + [ + "ilse.switzer" + ], + [ + "eugene.tennant" + ] ], "voters": [ - 859, - 883, - 733, - 741, - 582 + [ + "benito.fuqua" + ], + [ + "kayce.grigsby" + ], + [ + "shayna.hyde" + ], + [ + "randell.reis" + ], + [ + "gilda.soper" + ] ] } }, @@ -145298,19 +151816,39 @@ "vote_start_datetime": "2013-06-24T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2018-06-06T09:06:22.663", - "last_modified_user": 408, + "last_modified_user": [ + "britteny.easley" + ], "participants": [ - 713, - 933, - 779, - 697, - 742 + [ + "gwyn.berger" + ], + [ + "hilde.langston" + ], + [ + "allie.lowell" + ], + [ + "cheryl.lucas" + ], + [ + "kymberly.strange" + ] ], "voters": [ - 713, - 933, - 779, - 742 + [ + "gwyn.berger" + ], + [ + "hilde.langston" + ], + [ + "allie.lowell" + ], + [ + "kymberly.strange" + ] ] } }, @@ -145332,12 +151870,22 @@ "vote_start_datetime": "2014-05-01T00:00:00", "vote_end_date": "2014-05-31", "last_modified_time": "2018-06-06T09:06:22.610", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 1099, - 1082, - 2134, - 653 + [ + "jammie.bey" + ], + [ + "vanna.escamilla" + ], + [ + "lyla.griffiths" + ], + [ + "aleta.seymour" + ] ], "voters": [] } @@ -145360,143 +151908,411 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-18", "last_modified_time": "2018-06-06T09:06:22.582", - "last_modified_user": 251, + "last_modified_user": [ + "kindra.hancock.ext" + ], "participants": [ - 1146, - 693, - 2072, - 881, - 819, - 823, - 723, - 834, - 797, - 2181, - 908, - 895, - 791, - 773, - 825, - 894, - 888, - 770, - 935, - 768, - 917, - 868, - 828, - 775, - 767, - 832, - 831, - 785, - 739, - 807, - 860, - 712, - 817, - 875, - 837, - 820, - 811, - 855, - 766, - 849, - 740, - 830, - 747, - 750, - 716, - 914, - 727, - 790, - 782, - 905, - 717, - 707, - 867, - 870, - 47, - 812, - 779, - 924, - 697, - 901, - 700, - 840, - 814, - 2068, - 932, - 735, - 749, - 2144, - 919, - 827, - 911, - 718, - 923, - 708, - 1154, - 885, - 709, - 806, - 772, - 744, - 798, - 761, - 920, - 771, - 804, - 904, - 2132, - 862, - 922, - 755, - 838, - 843, - 926, - 876, - 765, - 874, - 719, - 760, - 803, - 764, - 792, - 2052, - 824, - 810, - 821, - 1081, - 833 + [ + "lulu.ackerman" + ], + [ + "herminia.alley" + ], + [ + "brice.ault" + ], + [ + "shaunna.barnard" + ], + [ + "cherly.bobbitt" + ], + [ + "terisa.bottoms" + ], + [ + "jesusita.box" + ], + [ + "angelo.bridges" + ], + [ + "annmarie.briscoe" + ], + [ + "azalee.broussard" + ], + [ + "kimbery.burnette" + ], + [ + "mariano.burns" + ], + [ + "margery.campos" + ], + [ + "kirstin.carbone" + ], + [ + "cecile.caron" + ], + [ + "jeremy.carrington" + ], + [ + "alene.casas" + ], + [ + "zack.chaffin" + ], + [ + "keva.cheng" + ], + [ + "maxie.childers" + ], + [ + "gracie.childs" + ], + [ + "dannie.cochran" + ], + [ + "maribeth.compton" + ], + [ + "penelope.covert" + ], + [ + "mable.craddock" + ], + [ + "mercedez.cupp" + ], + [ + "larita.dejesus" + ], + [ + "maxine.dexter" + ], + [ + "hassie.dortch" + ], + [ + "dale.earnest" + ], + [ + "virgie.engle" + ], + [ + "lilia.erwin" + ], + [ + "elissa.fowler" + ], + [ + "delila.fredrickson" + ], + [ + "yong.furr" + ], + [ + "wilmer.goodson" + ], + [ + "wyatt.hale" + ], + [ + "kaitlin.hamblin" + ], + [ + "risa.hammer" + ], + [ + "isiah.hammonds" + ], + [ + "bertram.hendrick" + ], + [ + "criselda.henry" + ], + [ + "lachelle.hermann" + ], + [ + "kristyn.holcomb" + ], + [ + "agatha.howe" + ], + [ + "tami.isaac" + ], + [ + "shanta.jay" + ], + [ + "sharice.kasper" + ], + [ + "corrine.kell" + ], + [ + "genevive.kelly" + ], + [ + "willodean.kitchens" + ], + [ + "gertude.knotts" + ], + [ + "melody.large" + ], + [ + "ta.larry" + ], + [ + "clemencia.lea" + ], + [ + "denna.lester" + ], + [ + "allie.lowell" + ], + [ + "marcella.lu" + ], + [ + "cheryl.lucas" + ], + [ + "tuan.malcolm" + ], + [ + "sima.marquardt" + ], + [ + "birdie.mcclintock" + ], + [ + "irving.mcdade" + ], + [ + "domingo.mcnutt" + ], + [ + "carmelo.michael" + ], + [ + "minerva.moe" + ], + [ + "alona.oldham" + ], + [ + "alta.omalley" + ], + [ + "lashandra.peacock" + ], + [ + "wava.pearl" + ], + [ + "ileana.puente" + ], + [ + "felicia.rawlings" + ], + [ + "christel.rayburn" + ], + [ + "lita.regan" + ], + [ + "trey.ruby" + ], + [ + "sherie.ruth" + ], + [ + "stacy.sawyer" + ], + [ + "rebecca.schuler" + ], + [ + "alton.smalley" + ], + [ + "bari.soares" + ], + [ + "maura.sosa" + ], + [ + "chia.spalding" + ], + [ + "yong.staley" + ], + [ + "angelita.stearns" + ], + [ + "gidget.stern" + ], + [ + "doyle.stump" + ], + [ + "tayna.tarver" + ], + [ + "karan.thacker" + ], + [ + "chong.thorne" + ], + [ + "kandis.thurston" + ], + [ + "stacey.timmerman" + ], + [ + "irwin.tompkins" + ], + [ + "marcia.trammell" + ], + [ + "vella.valerio" + ], + [ + "gladis.vandiver" + ], + [ + "dominga.vega" + ], + [ + "stanford.vernon" + ], + [ + "mario.voigt" + ], + [ + "madelyn.walker" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ], + [ + "star.west" + ], + [ + "adelia.whittington" + ], + [ + "danika.wills" + ], + [ + "lelia.worley" + ], + [ + "gwendolyn.yoo" + ], + [ + "carlota.zaragoza" + ] ], "voters": [ - 1146, - 2072, - 881, - 723, - 791, - 773, - 766, - 750, - 790, - 782, - 870, - 812, - 924, - 901, - 749, - 911, - 708, - 1154, - 806, - 798, - 843, - 765, - 719, - 803, - 764, - 792 + [ + "lulu.ackerman" + ], + [ + "brice.ault" + ], + [ + "shaunna.barnard" + ], + [ + "jesusita.box" + ], + [ + "margery.campos" + ], + [ + "kirstin.carbone" + ], + [ + "risa.hammer" + ], + [ + "kristyn.holcomb" + ], + [ + "sharice.kasper" + ], + [ + "corrine.kell" + ], + [ + "ta.larry" + ], + [ + "denna.lester" + ], + [ + "marcella.lu" + ], + [ + "tuan.malcolm" + ], + [ + "alona.oldham" + ], + [ + "ileana.puente" + ], + [ + "lita.regan" + ], + [ + "trey.ruby" + ], + [ + "rebecca.schuler" + ], + [ + "maura.sosa" + ], + [ + "irwin.tompkins" + ], + [ + "gladis.vandiver" + ], + [ + "stanford.vernon" + ], + [ + "madelyn.walker" + ], + [ + "florencia.washington" + ], + [ + "mistie.weddle" + ] ] } }, @@ -145518,31 +152334,75 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2018-06-06T09:06:22.659", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 805, - 2095, - 787, - 711, - 907, - 793, - 2099, - 851, - 2091, - 930, - 1135, - 2098, - 661, - 682, - 721 + [ + "crysta.ainsworth" + ], + [ + "ali.best" + ], + [ + "hoyt.bohn" + ], + [ + "lucia.helton" + ], + [ + "noma.mcdougall" + ], + [ + "antonetta.middleton" + ], + [ + "alexia.pederson" + ], + [ + "chauncey.rivera" + ], + [ + "danyel.robins" + ], + [ + "carolyn.rose" + ], + [ + "kallie.sierra" + ], + [ + "latesha.snow" + ], + [ + "eugene.tennant" + ], + [ + "taunya.weinstein" + ], + [ + "ute.ybarra" + ] ], "voters": [ - 2095, - 793, - 851, - 2091, - 682, - 721 + [ + "ali.best" + ], + [ + "antonetta.middleton" + ], + [ + "chauncey.rivera" + ], + [ + "danyel.robins" + ], + [ + "taunya.weinstein" + ], + [ + "ute.ybarra" + ] ] } }, @@ -145564,121 +152424,345 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2018-06-06T09:06:22.560", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 1146, - 2062, - 2046, - 1839, - 2057, - 2072, - 2069, - 2024, - 2182, - 2037, - 2050, - 2015, - 2064, - 2014, - 2073, - 2043, - 2059, - 2017, - 2079, - 2047, - 888, - 2049, - 1144, - 1148, - 2048, - 1838, - 2035, - 2038, - 2041, - 2054, - 2061, - 2012, - 2036, - 2060, - 2029, - 2032, - 2058, - 2026, - 2042, - 2063, - 2040, - 2033, - 2044, - 2020, - 2022, - 1152, - 2034, - 1840, - 1842, - 2018, - 2065, - 2021, - 1155, - 2045, - 2068, - 2067, - 2028, - 2075, - 2025, - 2013, - 1151, - 2078, - 2071, - 2051, - 1531, - 2070, - 2023, - 1143, - 2030, - 2027, - 1154, - 1153, - 1142, - 2074, - 2076, - 2056, - 2055, - 2066, - 2053, - 2019, - 2052, - 2031 + [ + "lulu.ackerman" + ], + [ + "zane.aldridge" + ], + [ + "echo.andre" + ], + [ + "heide.andrew" + ], + [ + "cleo.arreola" + ], + [ + "brice.ault" + ], + [ + "ayesha.bannister" + ], + [ + "isaura.baptiste" + ], + [ + "denny.barrientos.ext" + ], + [ + "inge.baughman" + ], + [ + "mirella.behrens" + ], + [ + "millicent.belcher" + ], + [ + "elfrieda.bess" + ], + [ + "giovanna.browne" + ], + [ + "lashanda.brownlee" + ], + [ + "cecille.buck" + ], + [ + "donetta.burr" + ], + [ + "dia.bussey" + ], + [ + "juliane.call" + ], + [ + "rosendo.carlton" + ], + [ + "alene.casas" + ], + [ + "bee.castellanos" + ], + [ + "debra.chesser" + ], + [ + "raelene.clancy" + ], + [ + "daniel.cortez" + ], + [ + "elenora.crawford" + ], + [ + "scotty.daily" + ], + [ + "cyndy.david" + ], + [ + "eryn.devore" + ], + [ + "sheryl.dow" + ], + [ + "sherryl.dozier" + ], + [ + "dominga.earley" + ], + [ + "haley.engle" + ], + [ + "reva.farr" + ], + [ + "ivana.ferro" + ], + [ + "dwayne.fortier" + ], + [ + "shakira.gilmer" + ], + [ + "rasheeda.glynn" + ], + [ + "fran.goodrich" + ], + [ + "haydee.greco" + ], + [ + "broderick.greenberg" + ], + [ + "tyrone.guay" + ], + [ + "yetta.heck" + ], + [ + "freddy.hitt" + ], + [ + "carylon.hoffmann" + ], + [ + "haywood.hogue" + ], + [ + "enrique.horne" + ], + [ + "verdell.joyner" + ], + [ + "giovanni.leger" + ], + [ + "tanya.maple" + ], + [ + "brent.mattson" + ], + [ + "thi.mcallister" + ], + [ + "jill.mccauley" + ], + [ + "brant.mcduffie" + ], + [ + "domingo.mcnutt" + ], + [ + "deidre.metzler" + ], + [ + "maricruz.nall" + ], + [ + "corinne.neff" + ], + [ + "freida.ness" + ], + [ + "maye.noonan" + ], + [ + "emmy.norwood" + ], + [ + "hugh.oliver" + ], + [ + "cierra.oreilly" + ], + [ + "lasonya.phillip" + ], + [ + "toshia.piazza" + ], + [ + "arletha.picard" + ], + [ + "beverley.pitcher" + ], + [ + "karri.putnam" + ], + [ + "porfirio.rasmussen" + ], + [ + "charlyn.robins" + ], + [ + "trey.ruby" + ], + [ + "francene.sabo" + ], + [ + "lin.sales" + ], + [ + "refugia.soliz" + ], + [ + "nicki.spear" + ], + [ + "leroy.surratt" + ], + [ + "yi.thurman" + ], + [ + "halina.tobias" + ], + [ + "shelia.turney" + ], + [ + "carma.watters" + ], + [ + "star.west" + ], + [ + "virgen.willingham" + ] ], "voters": [ - 1146, - 1839, - 2050, - 2064, - 2014, - 2073, - 2059, - 1144, - 1148, - 2035, - 2041, - 2012, - 2036, - 2058, - 2042, - 2040, - 2022, - 1152, - 1840, - 2021, - 1155, - 2075, - 1531, - 2070, - 2023, - 2030, - 1154, - 2053, - 2031 + [ + "lulu.ackerman" + ], + [ + "heide.andrew" + ], + [ + "mirella.behrens" + ], + [ + "elfrieda.bess" + ], + [ + "giovanna.browne" + ], + [ + "lashanda.brownlee" + ], + [ + "donetta.burr" + ], + [ + "debra.chesser" + ], + [ + "raelene.clancy" + ], + [ + "scotty.daily" + ], + [ + "eryn.devore" + ], + [ + "dominga.earley" + ], + [ + "haley.engle" + ], + [ + "shakira.gilmer" + ], + [ + "fran.goodrich" + ], + [ + "broderick.greenberg" + ], + [ + "carylon.hoffmann" + ], + [ + "haywood.hogue" + ], + [ + "verdell.joyner" + ], + [ + "thi.mcallister" + ], + [ + "jill.mccauley" + ], + [ + "corinne.neff" + ], + [ + "toshia.piazza" + ], + [ + "arletha.picard" + ], + [ + "beverley.pitcher" + ], + [ + "porfirio.rasmussen" + ], + [ + "trey.ruby" + ], + [ + "shelia.turney" + ], + [ + "virgen.willingham" + ] ] } }, @@ -145700,48 +152784,126 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2019-01-28T11:07:08.968", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 2024, - 2079, - 935, - 1144, - 2035, - 2041, - 2061, - 2012, - 2032, - 875, - 2058, - 2042, - 2033, - 2044, - 2022, - 2034, - 2065, - 2045, - 2028, - 2051, - 1143, - 2027, - 2074, - 2056, - 2055, - 2053 + [ + "isaura.baptiste" + ], + [ + "juliane.call" + ], + [ + "keva.cheng" + ], + [ + "debra.chesser" + ], + [ + "scotty.daily" + ], + [ + "eryn.devore" + ], + [ + "sherryl.dozier" + ], + [ + "dominga.earley" + ], + [ + "dwayne.fortier" + ], + [ + "delila.fredrickson" + ], + [ + "shakira.gilmer" + ], + [ + "fran.goodrich" + ], + [ + "tyrone.guay" + ], + [ + "yetta.heck" + ], + [ + "carylon.hoffmann" + ], + [ + "enrique.horne" + ], + [ + "brent.mattson" + ], + [ + "brant.mcduffie" + ], + [ + "maricruz.nall" + ], + [ + "lasonya.phillip" + ], + [ + "karri.putnam" + ], + [ + "charlyn.robins" + ], + [ + "refugia.soliz" + ], + [ + "leroy.surratt" + ], + [ + "yi.thurman" + ], + [ + "shelia.turney" + ] ], "voters": [ - 1144, - 2035, - 2041, - 2012, - 875, - 2058, - 2042, - 2044, - 2022, - 2034, - 2027, - 2053 + [ + "debra.chesser" + ], + [ + "scotty.daily" + ], + [ + "eryn.devore" + ], + [ + "dominga.earley" + ], + [ + "delila.fredrickson" + ], + [ + "shakira.gilmer" + ], + [ + "fran.goodrich" + ], + [ + "yetta.heck" + ], + [ + "carylon.hoffmann" + ], + [ + "enrique.horne" + ], + [ + "charlyn.robins" + ], + [ + "shelia.turney" + ] ] } }, @@ -145763,23 +152925,51 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2018-06-03T10:22:16.274", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 823, - 785, - 807, - 747, - 914, - 924, - 901, - 922, - 765 + [ + "terisa.bottoms" + ], + [ + "maxine.dexter" + ], + [ + "dale.earnest" + ], + [ + "lachelle.hermann" + ], + [ + "tami.isaac" + ], + [ + "marcella.lu" + ], + [ + "tuan.malcolm" + ], + [ + "chong.thorne" + ], + [ + "gladis.vandiver" + ] ], "voters": [ - 823, - 924, - 901, - 765 + [ + "terisa.bottoms" + ], + [ + "marcella.lu" + ], + [ + "tuan.malcolm" + ], + [ + "gladis.vandiver" + ] ] } }, @@ -145801,45 +152991,117 @@ "vote_start_datetime": "2014-05-01T00:00:00", "vote_end_date": "2014-05-31", "last_modified_time": "2018-06-06T09:06:22.505", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 642, - 754, - 665, - 929, - 695, - 706, - 1102, - 730, - 789, - 859, - 2100, - 676, - 822, - 623, - 729, - 763, - 887, - 2137, - 863, - 672, - 663, - 724, - 2098, - 1078, - 669, - 679 + [ + "felton.alvarez" + ], + [ + "sheena.arsenault" + ], + [ + "diedra.batson" + ], + [ + "crysta.bounds" + ], + [ + "armandina.byrne" + ], + [ + "merideth.chandler" + ], + [ + "etta.child" + ], + [ + "almeta.cody" + ], + [ + "shameka.dew" + ], + [ + "benito.fuqua" + ], + [ + "fernando.grisham" + ], + [ + "collin.hanley" + ], + [ + "mitchel.heard" + ], + [ + "nana.meador" + ], + [ + "shemeka.nieves" + ], + [ + "armida.nobles" + ], + [ + "roxy.olds" + ], + [ + "armand.person" + ], + [ + "elicia.rawlins" + ], + [ + "alfreda.roche" + ], + [ + "macie.roller" + ], + [ + "carman.slagle" + ], + [ + "latesha.snow" + ], + [ + "raymonde.stock" + ], + [ + "reynaldo.thayer" + ], + [ + "student" + ] ], "voters": [ - 754, - 665, - 695, - 730, - 859, - 763, - 887, - 2137, - 1078 + [ + "sheena.arsenault" + ], + [ + "diedra.batson" + ], + [ + "armandina.byrne" + ], + [ + "almeta.cody" + ], + [ + "benito.fuqua" + ], + [ + "armida.nobles" + ], + [ + "roxy.olds" + ], + [ + "armand.person" + ], + [ + "raymonde.stock" + ] ] } }, @@ -145861,25 +153123,57 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2018-06-03T10:22:16.297", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 723, - 791, - 768, - 766, - 901, - 932, - 923, - 920, - 804, - 792 + [ + "jesusita.box" + ], + [ + "margery.campos" + ], + [ + "maxie.childers" + ], + [ + "risa.hammer" + ], + [ + "tuan.malcolm" + ], + [ + "carmelo.michael" + ], + [ + "christel.rayburn" + ], + [ + "yong.staley" + ], + [ + "gidget.stern" + ], + [ + "mistie.weddle" + ] ], "voters": [ - 723, - 791, - 768, - 901, - 792 + [ + "jesusita.box" + ], + [ + "margery.campos" + ], + [ + "maxie.childers" + ], + [ + "tuan.malcolm" + ], + [ + "mistie.weddle" + ] ] } }, @@ -145901,21 +153195,45 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2018-06-06T09:06:22.556", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 2073, - 1144, - 753, - 775, - 928, - 2029, - 2063, - 932, - 2071 + [ + "lashanda.brownlee" + ], + [ + "debra.chesser" + ], + [ + "lupe.comstock" + ], + [ + "penelope.covert" + ], + [ + "randee.dellinger" + ], + [ + "ivana.ferro" + ], + [ + "haydee.greco" + ], + [ + "carmelo.michael" + ], + [ + "cierra.oreilly" + ] ], "voters": [ - 2073, - 1144 + [ + "lashanda.brownlee" + ], + [ + "debra.chesser" + ] ] } }, @@ -145937,15 +153255,27 @@ "vote_start_datetime": "2013-06-24T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2016-02-22T22:08:19.856", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 702, - 849, - 840, - 749 + [ + "rhona.earl" + ], + [ + "isiah.hammonds" + ], + [ + "birdie.mcclintock" + ], + [ + "alona.oldham" + ] ], "voters": [ - 749 + [ + "alona.oldham" + ] ] } }, @@ -145967,12 +153297,22 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2016-02-22T22:08:19.794", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 695, - 680, - 1100, - 682 + [ + "armandina.byrne" + ], + [ + "jarod.cate" + ], + [ + "jackelyn.gooding" + ], + [ + "taunya.weinstein" + ] ], "voters": [] } @@ -145995,21 +153335,45 @@ "vote_start_datetime": "2013-07-12T00:00:00", "vote_end_date": "2013-07-29", "last_modified_time": "2018-06-06T09:06:22.511", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 1082, - 666, - 1100, - 2105, - 584, - 2089, - 1094, - 2093, - 667, - 624 + [ + "vanna.escamilla" + ], + [ + "eleanor.freese" + ], + [ + "jackelyn.gooding" + ], + [ + "mayme.mcculloch" + ], + [ + "marlana.mclain" + ], + [ + "del.mcnamee" + ], + [ + "norris.peeler" + ], + [ + "kallie.peters" + ], + [ + "magen.thorn" + ], + [ + "jennifer.yarbrough" + ] ], "voters": [ - 666 + [ + "eleanor.freese" + ] ] } }, @@ -146031,22 +153395,48 @@ "vote_start_datetime": "2013-06-24T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2018-06-06T09:06:22.621", - "last_modified_user": 204, + "last_modified_user": [ + "lizabeth.steward" + ], "participants": [ - 861, - 739, - 847, - 774, - 806, - 815 + [ + "shemeka.cabrera" + ], + [ + "hassie.dortch" + ], + [ + "evelyne.grigsby" + ], + [ + "kelsey.kay" + ], + [ + "rebecca.schuler" + ], + [ + "evap" + ] ], "voters": [ - 861, - 739, - 847, - 774, - 806, - 815 + [ + "shemeka.cabrera" + ], + [ + "hassie.dortch" + ], + [ + "evelyne.grigsby" + ], + [ + "kelsey.kay" + ], + [ + "rebecca.schuler" + ], + [ + "evap" + ] ] } }, @@ -146068,18 +153458,36 @@ "vote_start_datetime": "2013-06-24T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2018-06-06T09:06:22.671", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 831, - 916, - 889, - 862, - 838 + [ + "larita.dejesus" + ], + [ + "tia.gall" + ], + [ + "arline.maier" + ], + [ + "karan.thacker" + ], + [ + "stacey.timmerman" + ] ], "voters": [ - 916, - 889, - 838 + [ + "tia.gall" + ], + [ + "arline.maier" + ], + [ + "stacey.timmerman" + ] ] } }, @@ -146103,21 +153511,47 @@ "last_modified_time": "2018-06-03T10:22:16.212", "last_modified_user": null, "participants": [ - 808, - 789, - 2211, - 649, - 2178, - 733, - 900, - 729, - 628, - 930 + [ + "virgina.carrasco" + ], + [ + "shameka.dew" + ], + [ + "jarrett.flannery" + ], + [ + "callie.grove" + ], + [ + "sterling.hutchins" + ], + [ + "shayna.hyde" + ], + [ + "odessa.mcmullen" + ], + [ + "shemeka.nieves" + ], + [ + "noriko.rau" + ], + [ + "carolyn.rose" + ] ], "voters": [ - 808, - 2211, - 900 + [ + "virgina.carrasco" + ], + [ + "jarrett.flannery" + ], + [ + "odessa.mcmullen" + ] ] } }, @@ -146139,9 +153573,13 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2016-02-22T22:08:19.786", - "last_modified_user": 812, + "last_modified_user": [ + "denna.lester" + ], "participants": [ - 1135 + [ + "kallie.sierra" + ] ], "voters": [] } @@ -146164,19 +153602,39 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2018-06-06T09:06:22.553", - "last_modified_user": 640, + "last_modified_user": [ + "arnold.lane" + ], "participants": [ - 823, - 870, - 700, - 798, - 876, - 764 + [ + "terisa.bottoms" + ], + [ + "ta.larry" + ], + [ + "sima.marquardt" + ], + [ + "maura.sosa" + ], + [ + "vella.valerio" + ], + [ + "florencia.washington" + ] ], "voters": [ - 870, - 798, - 764 + [ + "ta.larry" + ], + [ + "maura.sosa" + ], + [ + "florencia.washington" + ] ] } }, @@ -146198,31 +153656,79 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2016-02-22T22:08:19.823", - "last_modified_user": 812, + "last_modified_user": [ + "denna.lester" + ], "participants": [ - 2095, - 1099, - 808, - 730, - 925, - 878, - 1085, - 789, - 666, - 1079, - 1013, - 2106, - 711, - 586, - 826, - 681, - 1094, - 579, - 686, - 2098, - 757, - 845, - 669 + [ + "ali.best" + ], + [ + "jammie.bey" + ], + [ + "virgina.carrasco" + ], + [ + "almeta.cody" + ], + [ + "florrie.deluca" + ], + [ + "janise.denman" + ], + [ + "eden.desimone" + ], + [ + "shameka.dew" + ], + [ + "eleanor.freese" + ], + [ + "vicky.gann" + ], + [ + "carol.grier" + ], + [ + "dia.harden" + ], + [ + "lucia.helton" + ], + [ + "antony.landry" + ], + [ + "kristine.leatherman" + ], + [ + "renaldo.melendez" + ], + [ + "norris.peeler" + ], + [ + "wendie.pike" + ], + [ + "michaele.shuler" + ], + [ + "latesha.snow" + ], + [ + "jeannie.spears" + ], + [ + "kristie.stump" + ], + [ + "reynaldo.thayer" + ] ], "voters": [] } @@ -146245,10 +153751,16 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2016-02-22T22:08:19.842", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 837, - 2190 + [ + "yong.furr" + ], + [ + "tara.snider" + ] ], "voters": [] } @@ -146273,8 +153785,12 @@ "last_modified_time": "2016-02-22T22:08:19.768", "last_modified_user": null, "participants": [ - 712, - 815 + [ + "lilia.erwin" + ], + [ + "evap" + ] ], "voters": [] } @@ -146297,23 +153813,51 @@ "vote_start_datetime": "2013-07-01T00:00:00", "vote_end_date": "2013-07-14", "last_modified_time": "2018-06-06T09:06:22.631", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 642, - 547, - 2094, - 1079, - 2100, - 2105, - 1098, - 2089, - 2101 + [ + "felton.alvarez" + ], + [ + "hilde.blankenship" + ], + [ + "diann.deloach" + ], + [ + "vicky.gann" + ], + [ + "fernando.grisham" + ], + [ + "mayme.mcculloch" + ], + [ + "inge.mcmullen" + ], + [ + "del.mcnamee" + ], + [ + "tyisha.reich" + ] ], "voters": [ - 2094, - 1079, - 1098, - 2101 + [ + "diann.deloach" + ], + [ + "vicky.gann" + ], + [ + "inge.mcmullen" + ], + [ + "tyisha.reich" + ] ] } }, @@ -146335,15 +153879,27 @@ "vote_start_datetime": "2014-03-31T00:00:00", "vote_end_date": "2014-04-06", "last_modified_time": "2018-06-06T09:06:22.629", - "last_modified_user": 173, + "last_modified_user": [ + "chieko.lehman" + ], "participants": [ - 808, - 2094, - 930 + [ + "virgina.carrasco" + ], + [ + "diann.deloach" + ], + [ + "carolyn.rose" + ] ], "voters": [ - 2094, - 930 + [ + "diann.deloach" + ], + [ + "carolyn.rose" + ] ] } }, @@ -146365,15 +153921,27 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-10", "last_modified_time": "2019-01-28T11:15:24.373", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 2247, - 825, - 1141, - 864 + [ + "cristine.caraballo.ext" + ], + [ + "cecile.caron" + ], + [ + "hilda.rocha" + ], + [ + "reva.root" + ] ], "voters": [ - 1141 + [ + "hilda.rocha" + ] ] } }, @@ -146395,16 +153963,30 @@ "vote_start_datetime": "2014-03-31T00:00:00", "vote_end_date": "2014-04-06", "last_modified_time": "2018-06-03T10:22:16.363", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 695, - 859, - 2089, - 2093 + [ + "armandina.byrne" + ], + [ + "benito.fuqua" + ], + [ + "del.mcnamee" + ], + [ + "kallie.peters" + ] ], "voters": [ - 695, - 859 + [ + "armandina.byrne" + ], + [ + "benito.fuqua" + ] ] } }, @@ -146412,7 +153994,7 @@ "model": "evaluation.evaluation", "pk": 1634, "fields": { - "state": "new", + "state": "in_evaluation", "course": 8, "name_de": "", "name_en": "", @@ -146424,15 +154006,21 @@ "_participant_count": null, "_voter_count": null, "vote_start_datetime": "2014-02-01T00:00:00", - "vote_end_date": "2014-02-10", - "last_modified_time": "2016-02-22T22:08:19.704", - "last_modified_user": null, + "vote_end_date": "2021-05-08", + "last_modified_time": "2019-10-28T19:21:52.830", + "last_modified_user": [ + "evap" + ], "participants": [ - 791, - 832, - 785, - 870, - 924 + [ + "ta.larry" + ], + [ + "marcella.lu" + ], + [ + "evap" + ] ], "voters": [] } @@ -146455,27 +154043,63 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-10", "last_modified_time": "2018-06-06T09:06:22.673", - "last_modified_user": 204, + "last_modified_user": [ + "lizabeth.steward" + ], "participants": [ - 823, - 2014, - 775, - 712, - 891, - 1152, - 932, - 2144, - 718, - 2066, - 719 + [ + "terisa.bottoms" + ], + [ + "giovanna.browne" + ], + [ + "penelope.covert" + ], + [ + "lilia.erwin" + ], + [ + "hester.ferro" + ], + [ + "haywood.hogue" + ], + [ + "carmelo.michael" + ], + [ + "alta.omalley" + ], + [ + "felicia.rawlings" + ], + [ + "halina.tobias" + ], + [ + "stanford.vernon" + ] ], "voters": [ - 823, - 2014, - 775, - 1152, - 932, - 719 + [ + "terisa.bottoms" + ], + [ + "giovanna.browne" + ], + [ + "penelope.covert" + ], + [ + "haywood.hogue" + ], + [ + "carmelo.michael" + ], + [ + "stanford.vernon" + ] ] } }, @@ -146497,19 +154121,39 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-10", "last_modified_time": "2018-06-03T10:22:16.322", - "last_modified_user": 204, + "last_modified_user": [ + "lizabeth.steward" + ], "participants": [ - 805, - 929, - 859, - 801, - 793, - 802 + [ + "crysta.ainsworth" + ], + [ + "crysta.bounds" + ], + [ + "benito.fuqua" + ], + [ + "monet.greenlee" + ], + [ + "antonetta.middleton" + ], + [ + "enid.robb" + ] ], "voters": [ - 859, - 801, - 793 + [ + "benito.fuqua" + ], + [ + "monet.greenlee" + ], + [ + "antonetta.middleton" + ] ] } }, @@ -146533,10 +154177,18 @@ "last_modified_time": "2016-02-22T22:08:19.917", "last_modified_user": null, "participants": [ - 712, - 811, - 766, - 919 + [ + "lilia.erwin" + ], + [ + "wyatt.hale" + ], + [ + "risa.hammer" + ], + [ + "lashandra.peacock" + ] ], "voters": [] } @@ -146559,19 +154211,39 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-10", "last_modified_time": "2018-06-06T09:06:22.567", - "last_modified_user": 18, + "last_modified_user": [ + "sergio.reichert.ext" + ], "participants": [ - 736, - 726, - 903, - 728, - 1089, - 715 + [ + "sandie.aiello" + ], + [ + "salina.boykin" + ], + [ + "corrinne.ferraro" + ], + [ + "larraine.olson" + ], + [ + "larissa.osteen" + ], + [ + "lorrine.robertson" + ] ], "voters": [ - 736, - 726, - 728 + [ + "sandie.aiello" + ], + [ + "salina.boykin" + ], + [ + "larraine.olson" + ] ] } }, @@ -146593,21 +154265,45 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-16", "last_modified_time": "2018-06-03T10:22:16.170", - "last_modified_user": 169, + "last_modified_user": [ + "hue.fontenot.ext" + ], "participants": [ - 736, - 726, - 839, - 2229, - 1095, - 2105, - 897 + [ + "sandie.aiello" + ], + [ + "salina.boykin" + ], + [ + "asa.carlton" + ], + [ + "kristle.ewing" + ], + [ + "celsa.macias" + ], + [ + "mayme.mcculloch" + ], + [ + "bailey.roybal" + ] ], "voters": [ - 736, - 726, - 2229, - 897 + [ + "sandie.aiello" + ], + [ + "salina.boykin" + ], + [ + "kristle.ewing" + ], + [ + "bailey.roybal" + ] ] } }, @@ -146629,14 +154325,24 @@ "vote_start_datetime": "2014-03-31T00:00:00", "vote_end_date": "2014-04-06", "last_modified_time": "2018-06-06T09:06:22.681", - "last_modified_user": 169, + "last_modified_user": [ + "hue.fontenot.ext" + ], "participants": [ - 1102, - 903, - 1089 + [ + "etta.child" + ], + [ + "corrinne.ferraro" + ], + [ + "larissa.osteen" + ] ], "voters": [ - 903 + [ + "corrinne.ferraro" + ] ] } }, @@ -146658,65 +154364,177 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-10", "last_modified_time": "2018-06-03T10:22:16.382", - "last_modified_user": 234, + "last_modified_user": [ + "lahoma.gage" + ], "participants": [ - 2062, - 2069, - 797, - 2059, - 2047, - 894, - 770, - 935, - 868, - 1838, - 785, - 2054, - 2012, - 891, - 2032, - 2026, - 2033, - 747, - 867, - 812, - 2018, - 700, - 2039, - 2068, - 735, - 911, - 1143, - 708, - 1154, - 1153, - 1142, - 761, - 926, - 874, - 803, - 792, - 2052, - 833 + [ + "zane.aldridge" + ], + [ + "ayesha.bannister" + ], + [ + "annmarie.briscoe" + ], + [ + "donetta.burr" + ], + [ + "rosendo.carlton" + ], + [ + "jeremy.carrington" + ], + [ + "zack.chaffin" + ], + [ + "keva.cheng" + ], + [ + "dannie.cochran" + ], + [ + "elenora.crawford" + ], + [ + "maxine.dexter" + ], + [ + "sheryl.dow" + ], + [ + "dominga.earley" + ], + [ + "hester.ferro" + ], + [ + "dwayne.fortier" + ], + [ + "rasheeda.glynn" + ], + [ + "tyrone.guay" + ], + [ + "lachelle.hermann" + ], + [ + "melody.large" + ], + [ + "denna.lester" + ], + [ + "tanya.maple" + ], + [ + "sima.marquardt" + ], + [ + "jere.marr" + ], + [ + "domingo.mcnutt" + ], + [ + "minerva.moe" + ], + [ + "ileana.puente" + ], + [ + "karri.putnam" + ], + [ + "lita.regan" + ], + [ + "trey.ruby" + ], + [ + "francene.sabo" + ], + [ + "lin.sales" + ], + [ + "chia.spalding" + ], + [ + "marcia.trammell" + ], + [ + "dominga.vega" + ], + [ + "madelyn.walker" + ], + [ + "mistie.weddle" + ], + [ + "star.west" + ], + [ + "carlota.zaragoza" + ] ], "voters": [ - 2069, - 2059, - 894, - 935, - 2012, - 2026, - 2039, - 911, - 1143, - 708, - 1154, - 1142, - 761, - 803, - 792, - 2052, - 833 + [ + "ayesha.bannister" + ], + [ + "donetta.burr" + ], + [ + "jeremy.carrington" + ], + [ + "keva.cheng" + ], + [ + "dominga.earley" + ], + [ + "rasheeda.glynn" + ], + [ + "jere.marr" + ], + [ + "ileana.puente" + ], + [ + "karri.putnam" + ], + [ + "lita.regan" + ], + [ + "trey.ruby" + ], + [ + "lin.sales" + ], + [ + "chia.spalding" + ], + [ + "madelyn.walker" + ], + [ + "mistie.weddle" + ], + [ + "star.west" + ], + [ + "carlota.zaragoza" + ] ] } }, @@ -146740,10 +154558,18 @@ "last_modified_time": "2016-02-22T22:08:19.801", "last_modified_user": null, "participants": [ - 819, - 888, - 708, - 926 + [ + "cherly.bobbitt" + ], + [ + "alene.casas" + ], + [ + "lita.regan" + ], + [ + "marcia.trammell" + ] ], "voters": [] } @@ -146766,15 +154592,27 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-10", "last_modified_time": "2018-06-06T09:06:22.600", - "last_modified_user": 234, + "last_modified_user": [ + "lahoma.gage" + ], "participants": [ - 730, - 684, - 783, - 661 + [ + "almeta.cody" + ], + [ + "ariana.houghton" + ], + [ + "roxanna.sandlin" + ], + [ + "eugene.tennant" + ] ], "voters": [ - 730 + [ + "almeta.cody" + ] ] } }, @@ -146796,19 +154634,39 @@ "vote_start_datetime": "2014-03-31T00:00:00", "vote_end_date": "2014-04-06", "last_modified_time": "2018-06-03T10:22:16.268", - "last_modified_user": 234, + "last_modified_user": [ + "lahoma.gage" + ], "participants": [ - 787, - 730, - 2211, - 850, - 857, - 2098 + [ + "hoyt.bohn" + ], + [ + "almeta.cody" + ], + [ + "jarrett.flannery" + ], + [ + "mandie.lomax" + ], + [ + "marilynn.oconnor" + ], + [ + "latesha.snow" + ] ], "voters": [ - 787, - 730, - 850 + [ + "hoyt.bohn" + ], + [ + "almeta.cody" + ], + [ + "mandie.lomax" + ] ] } }, @@ -146830,21 +154688,45 @@ "vote_start_datetime": "2014-02-11T00:00:00", "vote_end_date": "2014-02-16", "last_modified_time": "2016-02-22T22:08:19.874", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 739, - 903, - 921, - 2106, - 850, - 779, - 1089, - 2137, - 845, - 604 + [ + "hassie.dortch" + ], + [ + "corrinne.ferraro" + ], + [ + "laveta.grubbs" + ], + [ + "dia.harden" + ], + [ + "mandie.lomax" + ], + [ + "allie.lowell" + ], + [ + "larissa.osteen" + ], + [ + "armand.person" + ], + [ + "kristie.stump" + ], + [ + "ilse.switzer" + ] ], "voters": [ - 2106 + [ + "dia.harden" + ] ] } }, @@ -146866,41 +154748,105 @@ "vote_start_datetime": "2014-01-28T00:00:00", "vote_end_date": "2014-02-10", "last_modified_time": "2018-06-06T09:06:22.607", - "last_modified_user": 419, + "last_modified_user": [ + "tonita.gallardo" + ], "participants": [ - 1839, - 2064, - 2017, - 888, - 770, - 1144, - 828, - 2048, - 775, - 2036, - 860, - 2032, - 2042, - 870, - 932, - 2070, - 2027, - 904, - 2055, - 876 + [ + "heide.andrew" + ], + [ + "elfrieda.bess" + ], + [ + "dia.bussey" + ], + [ + "alene.casas" + ], + [ + "zack.chaffin" + ], + [ + "debra.chesser" + ], + [ + "maribeth.compton" + ], + [ + "daniel.cortez" + ], + [ + "penelope.covert" + ], + [ + "haley.engle" + ], + [ + "virgie.engle" + ], + [ + "dwayne.fortier" + ], + [ + "fran.goodrich" + ], + [ + "ta.larry" + ], + [ + "carmelo.michael" + ], + [ + "arletha.picard" + ], + [ + "charlyn.robins" + ], + [ + "doyle.stump" + ], + [ + "yi.thurman" + ], + [ + "vella.valerio" + ] ], "voters": [ - 1839, - 2064, - 1144, - 775, - 2036, - 860, - 2042, - 870, - 932, - 2070, - 876 + [ + "heide.andrew" + ], + [ + "elfrieda.bess" + ], + [ + "debra.chesser" + ], + [ + "penelope.covert" + ], + [ + "haley.engle" + ], + [ + "virgie.engle" + ], + [ + "fran.goodrich" + ], + [ + "ta.larry" + ], + [ + "carmelo.michael" + ], + [ + "arletha.picard" + ], + [ + "vella.valerio" + ] ] } }, @@ -146922,41 +154868,105 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-10", "last_modified_time": "2018-06-03T10:22:16.255", - "last_modified_user": 2319, + "last_modified_user": [ + "salena.soriano" + ], "participants": [ - 736, - 796, - 800, - 866, - 789, - 732, - 858, - 666, - 2100, - 921, - 2106, - 740, - 699, - 873, - 584, - 2089, - 2310, - 2091, - 897, - 783, - 2098, - 604, - 611 + [ + "sandie.aiello" + ], + [ + "joi.almond" + ], + [ + "hester.bettencourt" + ], + [ + "myrtice.bohannon" + ], + [ + "shameka.dew" + ], + [ + "mickie.england" + ], + [ + "jene.fowlkes" + ], + [ + "eleanor.freese" + ], + [ + "fernando.grisham" + ], + [ + "laveta.grubbs" + ], + [ + "dia.harden" + ], + [ + "bertram.hendrick" + ], + [ + "marcos.huang" + ], + [ + "aide.kraft" + ], + [ + "marlana.mclain" + ], + [ + "del.mcnamee" + ], + [ + "willard.perron.ext" + ], + [ + "danyel.robins" + ], + [ + "bailey.roybal" + ], + [ + "roxanna.sandlin" + ], + [ + "latesha.snow" + ], + [ + "ilse.switzer" + ], + [ + "editor" + ] ], "voters": [ - 736, - 800, - 732, - 666, - 2106, - 873, - 897, - 611 + [ + "sandie.aiello" + ], + [ + "hester.bettencourt" + ], + [ + "mickie.england" + ], + [ + "eleanor.freese" + ], + [ + "dia.harden" + ], + [ + "aide.kraft" + ], + [ + "bailey.roybal" + ], + [ + "editor" + ] ] } }, @@ -146980,12 +154990,24 @@ "last_modified_time": "2016-02-22T22:08:19.785", "last_modified_user": null, "participants": [ - 775, - 782, - 735, - 804, - 904, - 843 + [ + "penelope.covert" + ], + [ + "corrine.kell" + ], + [ + "minerva.moe" + ], + [ + "gidget.stern" + ], + [ + "doyle.stump" + ], + [ + "irwin.tompkins" + ] ], "voters": [] } @@ -147008,22 +155030,48 @@ "vote_start_datetime": "2014-06-01T00:00:00", "vote_end_date": "2099-12-31", "last_modified_time": "2018-06-03T10:22:16.388", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 823, - 773, - 807, - 817, - 855, - 914, - 821, - 815, - 679 + [ + "terisa.bottoms" + ], + [ + "kirstin.carbone" + ], + [ + "dale.earnest" + ], + [ + "elissa.fowler" + ], + [ + "kaitlin.hamblin" + ], + [ + "tami.isaac" + ], + [ + "lelia.worley" + ], + [ + "evap" + ], + [ + "student" + ] ], "voters": [ - 823, - 773, - 914 + [ + "terisa.bottoms" + ], + [ + "kirstin.carbone" + ], + [ + "tami.isaac" + ] ] } }, @@ -147045,145 +155093,417 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-05", "last_modified_time": "2018-06-06T09:06:22.544", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 2227, - 2232, - 2305, - 2235, - 2218, - 2244, - 2261, - 2279, - 2260, - 2275, - 2242, - 2295, - 2259, - 2236, - 2230, - 2269, - 2296, - 2264, - 2320, - 2273, - 2263, - 2294, - 2306, - 2253, - 2238, - 2033, - 2298, - 2303, - 2252, - 2291, - 1152, - 2302, - 2307, - 2287, - 2219, - 2280, - 2255, - 2278, - 2289, - 2222, - 2284, - 2297, - 2267, - 2270, - 2293, - 2243, - 2288, - 2256, - 2262, - 2276, - 2226, - 2300, - 2299, - 2271, - 2304, - 2030, - 2258, - 2277, - 2220, - 2290, - 2240, - 2286, - 2265, - 2282, - 2283, - 2285, - 2268, - 2224, - 2266, - 2233, - 2281, - 2231, - 2272, - 2223, - 2274, - 2308, - 2254, - 2301, - 2234, - 2225, - 2221, - 2241, - 2292, - 2257 + [ + "elfriede.aguiar" + ], + [ + "alisa.askew" + ], + [ + "tamatha.bivens" + ], + [ + "herta.bourne" + ], + [ + "kristi.boykin" + ], + [ + "christine.brinkley" + ], + [ + "marquis.brody" + ], + [ + "jerrell.bunnell" + ], + [ + "josefa.burkholder" + ], + [ + "kellye.cobb" + ], + [ + "johnsie.conrad" + ], + [ + "leslee.copeland" + ], + [ + "ngan.corbin" + ], + [ + "donetta.dempsey" + ], + [ + "catherine.dillon" + ], + [ + "thomas.echols" + ], + [ + "dalton.everson" + ], + [ + "levi.findley" + ], + [ + "leola.flannery" + ], + [ + "hollie.gallardo" + ], + [ + "maryln.galvan" + ], + [ + "cherlyn.gillette" + ], + [ + "miss.gorham" + ], + [ + "myrna.grant" + ], + [ + "marybeth.groff" + ], + [ + "tyrone.guay" + ], + [ + "karoline.hare" + ], + [ + "aurea.hay" + ], + [ + "diamond.hendrick" + ], + [ + "vonnie.hills" + ], + [ + "haywood.hogue" + ], + [ + "lorna.hubert" + ], + [ + "alfredo.hutchison" + ], + [ + "paz.jewell" + ], + [ + "keisha.jordon" + ], + [ + "cyndi.kiefer" + ], + [ + "felicia.lashley" + ], + [ + "pedro.logue" + ], + [ + "sherly.lord" + ], + [ + "marcelo.lowell" + ], + [ + "irmgard.loya" + ], + [ + "penni.luong" + ], + [ + "effie.martindale" + ], + [ + "tai.maurer" + ], + [ + "gaylord.mcafee" + ], + [ + "fatimah.mcghee" + ], + [ + "xavier.mckay" + ], + [ + "adriane.newby" + ], + [ + "leda.oakes" + ], + [ + "ardella.orr" + ], + [ + "latasha.pham" + ], + [ + "eleanor.pinkston" + ], + [ + "lenard.post" + ], + [ + "sandra.pulido" + ], + [ + "yoko.rafferty" + ], + [ + "porfirio.rasmussen" + ], + [ + "treasa.rinaldi" + ], + [ + "claudine.ritchey" + ], + [ + "tod.rowe" + ], + [ + "neville.sales" + ], + [ + "cyndy.salter" + ], + [ + "cleopatra.see" + ], + [ + "wm.sierra" + ], + [ + "nan.simpkins" + ], + [ + "chuck.singer" + ], + [ + "celestina.slattery" + ], + [ + "anneliese.somerville" + ], + [ + "ossie.stamper" + ], + [ + "leanne.storey" + ], + [ + "russel.stroup" + ], + [ + "clement.tibbetts" + ], + [ + "mei.toro" + ], + [ + "ingrid.trice" + ], + [ + "brianna.true" + ], + [ + "shandra.turner" + ], + [ + "dayna.valles" + ], + [ + "isabelle.veal" + ], + [ + "taylor.washington" + ], + [ + "stacy.webber" + ], + [ + "suzi.wick" + ], + [ + "lindsy.wilke" + ], + [ + "reid.willingham" + ], + [ + "len.zarate" + ], + [ + "manager" + ] ], "voters": [ - 2227, - 2232, - 2235, - 2218, - 2244, - 2261, - 2279, - 2260, - 2275, - 2259, - 2230, - 2296, - 2264, - 2273, - 2306, - 2298, - 2303, - 2252, - 2291, - 1152, - 2302, - 2219, - 2280, - 2278, - 2222, - 2297, - 2267, - 2293, - 2256, - 2276, - 2226, - 2300, - 2299, - 2277, - 2220, - 2240, - 2286, - 2282, - 2268, - 2224, - 2233, - 2281, - 2272, - 2223, - 2274, - 2254, - 2301, - 2234, - 2225, - 2221, - 2241 + [ + "elfriede.aguiar" + ], + [ + "alisa.askew" + ], + [ + "herta.bourne" + ], + [ + "kristi.boykin" + ], + [ + "christine.brinkley" + ], + [ + "marquis.brody" + ], + [ + "jerrell.bunnell" + ], + [ + "josefa.burkholder" + ], + [ + "kellye.cobb" + ], + [ + "ngan.corbin" + ], + [ + "catherine.dillon" + ], + [ + "dalton.everson" + ], + [ + "levi.findley" + ], + [ + "hollie.gallardo" + ], + [ + "miss.gorham" + ], + [ + "karoline.hare" + ], + [ + "aurea.hay" + ], + [ + "diamond.hendrick" + ], + [ + "vonnie.hills" + ], + [ + "haywood.hogue" + ], + [ + "lorna.hubert" + ], + [ + "keisha.jordon" + ], + [ + "cyndi.kiefer" + ], + [ + "pedro.logue" + ], + [ + "marcelo.lowell" + ], + [ + "penni.luong" + ], + [ + "effie.martindale" + ], + [ + "gaylord.mcafee" + ], + [ + "adriane.newby" + ], + [ + "ardella.orr" + ], + [ + "latasha.pham" + ], + [ + "eleanor.pinkston" + ], + [ + "lenard.post" + ], + [ + "claudine.ritchey" + ], + [ + "tod.rowe" + ], + [ + "cyndy.salter" + ], + [ + "cleopatra.see" + ], + [ + "nan.simpkins" + ], + [ + "anneliese.somerville" + ], + [ + "ossie.stamper" + ], + [ + "russel.stroup" + ], + [ + "clement.tibbetts" + ], + [ + "ingrid.trice" + ], + [ + "brianna.true" + ], + [ + "shandra.turner" + ], + [ + "isabelle.veal" + ], + [ + "taylor.washington" + ], + [ + "stacy.webber" + ], + [ + "suzi.wick" + ], + [ + "lindsy.wilke" + ], + [ + "reid.willingham" + ] ] } }, @@ -147205,17 +155525,33 @@ "vote_start_datetime": "2015-01-01T00:00:00", "vote_end_date": "2099-12-31", "last_modified_time": "2018-06-03T10:22:16.329", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 894, - 747, - 772, - 803 + [ + "jeremy.carrington" + ], + [ + "lachelle.hermann" + ], + [ + "alton.smalley" + ], + [ + "madelyn.walker" + ] ], "voters": [ - 894, - 747, - 772 + [ + "jeremy.carrington" + ], + [ + "lachelle.hermann" + ], + [ + "alton.smalley" + ] ] } }, @@ -147239,11 +155575,21 @@ "last_modified_time": "2016-02-22T22:08:19.898", "last_modified_user": null, "participants": [ - 868, - 820, - 761, - 765, - 764 + [ + "dannie.cochran" + ], + [ + "wilmer.goodson" + ], + [ + "chia.spalding" + ], + [ + "gladis.vandiver" + ], + [ + "florencia.washington" + ] ], "voters": [] } @@ -147266,39 +155612,99 @@ "vote_start_datetime": "2014-03-07T00:00:00", "vote_end_date": "2014-03-16", "last_modified_time": "2018-06-06T09:06:22.585", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 736, - 737, - 732, - 2211, - 2213, - 829, - 873, - 606, - 1086, - 776, - 722, - 2089, - 793, - 2310, - 864, - 1078, - 742, - 844, - 815 + [ + "sandie.aiello" + ], + [ + "elenora.ellis" + ], + [ + "mickie.england" + ], + [ + "jarrett.flannery" + ], + [ + "georgiana.jasper" + ], + [ + "vernia.keel" + ], + [ + "aide.kraft" + ], + [ + "halley.landrum" + ], + [ + "kellee.maldonado" + ], + [ + "christia.manzo" + ], + [ + "earlene.marquis" + ], + [ + "del.mcnamee" + ], + [ + "antonetta.middleton" + ], + [ + "willard.perron.ext" + ], + [ + "reva.root" + ], + [ + "raymonde.stock" + ], + [ + "kymberly.strange" + ], + [ + "esther.ulrich" + ], + [ + "evap" + ] ], "voters": [ - 736, - 737, - 2213, - 873, - 606, - 776, - 722, - 742, - 844, - 815 + [ + "sandie.aiello" + ], + [ + "elenora.ellis" + ], + [ + "georgiana.jasper" + ], + [ + "aide.kraft" + ], + [ + "halley.landrum" + ], + [ + "christia.manzo" + ], + [ + "earlene.marquis" + ], + [ + "kymberly.strange" + ], + [ + "esther.ulrich" + ], + [ + "evap" + ] ] } }, @@ -147320,119 +155726,339 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-07", "last_modified_time": "2018-06-06T09:06:22.558", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 1146, - 2062, - 693, - 2046, - 1839, - 2057, - 2072, - 2069, - 2024, - 2037, - 2050, - 2064, - 2014, - 2073, - 2043, - 2059, - 2017, - 2079, - 2047, - 888, - 1144, - 1148, - 2048, - 1838, - 2035, - 2038, - 2041, - 2054, - 2061, - 2012, - 2322, - 2036, - 712, - 2060, - 2029, - 2032, - 2026, - 2042, - 2063, - 2040, - 2033, - 2044, - 2020, - 2022, - 1152, - 2034, - 1840, - 1842, - 2018, - 2065, - 2021, - 1155, - 2045, - 2068, - 2067, - 2028, - 2075, - 2025, - 2013, - 1151, - 2078, - 2071, - 2051, - 1531, - 2070, - 2023, - 1143, - 2030, - 2027, - 1154, - 1153, - 1142, - 2074, - 2076, - 2056, - 2055, - 2066, - 2053, - 2019, - 2052, - 2031 + [ + "lulu.ackerman" + ], + [ + "zane.aldridge" + ], + [ + "herminia.alley" + ], + [ + "echo.andre" + ], + [ + "heide.andrew" + ], + [ + "cleo.arreola" + ], + [ + "brice.ault" + ], + [ + "ayesha.bannister" + ], + [ + "isaura.baptiste" + ], + [ + "inge.baughman" + ], + [ + "mirella.behrens" + ], + [ + "elfrieda.bess" + ], + [ + "giovanna.browne" + ], + [ + "lashanda.brownlee" + ], + [ + "cecille.buck" + ], + [ + "donetta.burr" + ], + [ + "dia.bussey" + ], + [ + "juliane.call" + ], + [ + "rosendo.carlton" + ], + [ + "alene.casas" + ], + [ + "debra.chesser" + ], + [ + "raelene.clancy" + ], + [ + "daniel.cortez" + ], + [ + "elenora.crawford" + ], + [ + "scotty.daily" + ], + [ + "cyndy.david" + ], + [ + "eryn.devore" + ], + [ + "sheryl.dow" + ], + [ + "sherryl.dozier" + ], + [ + "dominga.earley" + ], + [ + "wes.eaton.ext" + ], + [ + "haley.engle" + ], + [ + "lilia.erwin" + ], + [ + "reva.farr" + ], + [ + "ivana.ferro" + ], + [ + "dwayne.fortier" + ], + [ + "rasheeda.glynn" + ], + [ + "fran.goodrich" + ], + [ + "haydee.greco" + ], + [ + "broderick.greenberg" + ], + [ + "tyrone.guay" + ], + [ + "yetta.heck" + ], + [ + "freddy.hitt" + ], + [ + "carylon.hoffmann" + ], + [ + "haywood.hogue" + ], + [ + "enrique.horne" + ], + [ + "verdell.joyner" + ], + [ + "giovanni.leger" + ], + [ + "tanya.maple" + ], + [ + "brent.mattson" + ], + [ + "thi.mcallister" + ], + [ + "jill.mccauley" + ], + [ + "brant.mcduffie" + ], + [ + "domingo.mcnutt" + ], + [ + "deidre.metzler" + ], + [ + "maricruz.nall" + ], + [ + "corinne.neff" + ], + [ + "freida.ness" + ], + [ + "maye.noonan" + ], + [ + "emmy.norwood" + ], + [ + "hugh.oliver" + ], + [ + "cierra.oreilly" + ], + [ + "lasonya.phillip" + ], + [ + "toshia.piazza" + ], + [ + "arletha.picard" + ], + [ + "beverley.pitcher" + ], + [ + "karri.putnam" + ], + [ + "porfirio.rasmussen" + ], + [ + "charlyn.robins" + ], + [ + "trey.ruby" + ], + [ + "francene.sabo" + ], + [ + "lin.sales" + ], + [ + "refugia.soliz" + ], + [ + "nicki.spear" + ], + [ + "leroy.surratt" + ], + [ + "yi.thurman" + ], + [ + "halina.tobias" + ], + [ + "shelia.turney" + ], + [ + "carma.watters" + ], + [ + "star.west" + ], + [ + "virgen.willingham" + ] ], "voters": [ - 1146, - 1839, - 2014, - 2059, - 2079, - 1144, - 1148, - 2035, - 2038, - 2041, - 2036, - 2042, - 2022, - 1152, - 2034, - 1155, - 2045, - 2067, - 2075, - 1531, - 2070, - 1143, - 2030, - 1154, - 2074, - 2053, - 2052, - 2031 + [ + "lulu.ackerman" + ], + [ + "heide.andrew" + ], + [ + "giovanna.browne" + ], + [ + "donetta.burr" + ], + [ + "juliane.call" + ], + [ + "debra.chesser" + ], + [ + "raelene.clancy" + ], + [ + "scotty.daily" + ], + [ + "cyndy.david" + ], + [ + "eryn.devore" + ], + [ + "haley.engle" + ], + [ + "fran.goodrich" + ], + [ + "carylon.hoffmann" + ], + [ + "haywood.hogue" + ], + [ + "enrique.horne" + ], + [ + "jill.mccauley" + ], + [ + "brant.mcduffie" + ], + [ + "deidre.metzler" + ], + [ + "corinne.neff" + ], + [ + "toshia.piazza" + ], + [ + "arletha.picard" + ], + [ + "karri.putnam" + ], + [ + "porfirio.rasmussen" + ], + [ + "trey.ruby" + ], + [ + "refugia.soliz" + ], + [ + "shelia.turney" + ], + [ + "star.west" + ], + [ + "virgen.willingham" + ] ] } }, @@ -147456,13 +156082,27 @@ "last_modified_time": "2016-02-22T22:08:19.840", "last_modified_user": null, "participants": [ - 767, - 2134, - 933, - 2039, - 2138, - 844, - 760 + [ + "mable.craddock" + ], + [ + "lyla.griffiths" + ], + [ + "hilde.langston" + ], + [ + "jere.marr" + ], + [ + "anton.swank" + ], + [ + "esther.ulrich" + ], + [ + "mario.voigt" + ] ], "voters": [] } @@ -147487,13 +156127,23 @@ "last_modified_time": "2016-02-22T22:08:19.836", "last_modified_user": null, "participants": [ - 1102, - 712, - 837, - 679 + [ + "etta.child" + ], + [ + "lilia.erwin" + ], + [ + "yong.furr" + ], + [ + "student" + ] ], "voters": [ - 1102 + [ + "etta.child" + ] ] } }, @@ -147515,75 +156165,207 @@ "vote_start_datetime": "2014-02-04T00:00:00", "vote_end_date": "2014-02-16", "last_modified_time": "2018-06-06T09:06:22.634", - "last_modified_user": 310, + "last_modified_user": [ + "amos.benoit" + ], "participants": [ - 805, - 796, - 754, - 882, - 2095, - 752, - 866, - 884, - 726, - 877, - 731, - 789, - 702, - 737, - 2229, - 759, - 903, - 858, - 837, - 801, - 822, - 740, - 830, - 727, - 854, - 707, - 850, - 1095, - 776, - 907, - 915, - 793, - 729, - 2137, - 734, - 863, - 2314, - 802, - 715, - 930, - 897, - 783, - 806, - 744, - 845, - 844, - 2228, - 721 + [ + "crysta.ainsworth" + ], + [ + "joi.almond" + ], + [ + "sheena.arsenault" + ], + [ + "eugenia.bauer" + ], + [ + "ali.best" + ], + [ + "verena.blaylock" + ], + [ + "myrtice.bohannon" + ], + [ + "maybelle.bolton" + ], + [ + "salina.boykin" + ], + [ + "lindsey.carranza" + ], + [ + "mirtha.cleveland" + ], + [ + "shameka.dew" + ], + [ + "rhona.earl" + ], + [ + "elenora.ellis" + ], + [ + "kristle.ewing" + ], + [ + "concha.ezell" + ], + [ + "corrinne.ferraro" + ], + [ + "jene.fowlkes" + ], + [ + "yong.furr" + ], + [ + "monet.greenlee" + ], + [ + "mitchel.heard" + ], + [ + "bertram.hendrick" + ], + [ + "criselda.henry" + ], + [ + "shanta.jay" + ], + [ + "velda.kimble" + ], + [ + "gertude.knotts" + ], + [ + "mandie.lomax" + ], + [ + "celsa.macias" + ], + [ + "christia.manzo" + ], + [ + "noma.mcdougall" + ], + [ + "catharine.medeiros" + ], + [ + "antonetta.middleton" + ], + [ + "shemeka.nieves" + ], + [ + "armand.person" + ], + [ + "tyrell.pfeiffer" + ], + [ + "elicia.rawlins" + ], + [ + "shannon.reece" + ], + [ + "enid.robb" + ], + [ + "lorrine.robertson" + ], + [ + "carolyn.rose" + ], + [ + "bailey.roybal" + ], + [ + "roxanna.sandlin" + ], + [ + "rebecca.schuler" + ], + [ + "bari.soares" + ], + [ + "kristie.stump" + ], + [ + "esther.ulrich" + ], + [ + "kanesha.waggoner" + ], + [ + "ute.ybarra" + ] ], "voters": [ - 726, - 877, - 731, - 702, - 737, - 2229, - 837, - 822, - 830, - 776, - 793, - 2137, - 897, - 806, - 744, - 845, - 844 + [ + "salina.boykin" + ], + [ + "lindsey.carranza" + ], + [ + "mirtha.cleveland" + ], + [ + "rhona.earl" + ], + [ + "elenora.ellis" + ], + [ + "kristle.ewing" + ], + [ + "yong.furr" + ], + [ + "mitchel.heard" + ], + [ + "criselda.henry" + ], + [ + "christia.manzo" + ], + [ + "antonetta.middleton" + ], + [ + "armand.person" + ], + [ + "bailey.roybal" + ], + [ + "rebecca.schuler" + ], + [ + "bari.soares" + ], + [ + "kristie.stump" + ], + [ + "esther.ulrich" + ] ] } }, @@ -147605,36 +156387,90 @@ "vote_start_datetime": "2014-02-05T00:00:00", "vote_end_date": "2014-02-12", "last_modified_time": "2018-06-06T09:06:22.639", - "last_modified_user": 650, + "last_modified_user": [ + "lisandra.grace.ext" + ], "participants": [ - 884, - 929, - 726, - 839, - 825, - 731, - 837, - 801, - 699, - 2213, - 2214, - 857, - 851, - 802, - 1141, - 783, - 2212, - 2317 + [ + "maybelle.bolton" + ], + [ + "crysta.bounds" + ], + [ + "salina.boykin" + ], + [ + "asa.carlton" + ], + [ + "cecile.caron" + ], + [ + "mirtha.cleveland" + ], + [ + "yong.furr" + ], + [ + "monet.greenlee" + ], + [ + "marcos.huang" + ], + [ + "georgiana.jasper" + ], + [ + "oneida.melendez" + ], + [ + "marilynn.oconnor" + ], + [ + "chauncey.rivera" + ], + [ + "enid.robb" + ], + [ + "hilda.rocha" + ], + [ + "roxanna.sandlin" + ], + [ + "adrianne.talley" + ], + [ + "mauro.vergara.ext" + ] ], "voters": [ - 726, - 731, - 837, - 2214, - 857, - 851, - 1141, - 2212 + [ + "salina.boykin" + ], + [ + "mirtha.cleveland" + ], + [ + "yong.furr" + ], + [ + "oneida.melendez" + ], + [ + "marilynn.oconnor" + ], + [ + "chauncey.rivera" + ], + [ + "hilda.rocha" + ], + [ + "adrianne.talley" + ] ] } }, @@ -147656,118 +156492,336 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-10", "last_modified_time": "2018-06-06T09:06:22.549", - "last_modified_user": 2324, + "last_modified_user": [ + "odis.cantu.ext" + ], "participants": [ - 2062, - 693, - 2046, - 1839, - 2057, - 2069, - 2024, - 2037, - 2050, - 2064, - 2014, - 2073, - 2059, - 2017, - 2079, - 2047, - 888, - 1144, - 1148, - 2048, - 1838, - 2035, - 2038, - 2041, - 2054, - 2061, - 2012, - 807, - 2036, - 2060, - 891, - 2029, - 2032, - 2058, - 2026, - 2042, - 2063, - 2040, - 2033, - 2044, - 2020, - 2022, - 1152, - 2034, - 914, - 1842, - 2018, - 2039, - 2065, - 2021, - 1155, - 2045, - 2067, - 2028, - 2075, - 2025, - 2013, - 1151, - 2078, - 2071, - 2051, - 1531, - 2023, - 911, - 1143, - 2030, - 2027, - 1153, - 2074, - 2268, - 2056, - 2055, - 2066, - 2053, - 2019, - 2031 + [ + "zane.aldridge" + ], + [ + "herminia.alley" + ], + [ + "echo.andre" + ], + [ + "heide.andrew" + ], + [ + "cleo.arreola" + ], + [ + "ayesha.bannister" + ], + [ + "isaura.baptiste" + ], + [ + "inge.baughman" + ], + [ + "mirella.behrens" + ], + [ + "elfrieda.bess" + ], + [ + "giovanna.browne" + ], + [ + "lashanda.brownlee" + ], + [ + "donetta.burr" + ], + [ + "dia.bussey" + ], + [ + "juliane.call" + ], + [ + "rosendo.carlton" + ], + [ + "alene.casas" + ], + [ + "debra.chesser" + ], + [ + "raelene.clancy" + ], + [ + "daniel.cortez" + ], + [ + "elenora.crawford" + ], + [ + "scotty.daily" + ], + [ + "cyndy.david" + ], + [ + "eryn.devore" + ], + [ + "sheryl.dow" + ], + [ + "sherryl.dozier" + ], + [ + "dominga.earley" + ], + [ + "dale.earnest" + ], + [ + "haley.engle" + ], + [ + "reva.farr" + ], + [ + "hester.ferro" + ], + [ + "ivana.ferro" + ], + [ + "dwayne.fortier" + ], + [ + "shakira.gilmer" + ], + [ + "rasheeda.glynn" + ], + [ + "fran.goodrich" + ], + [ + "haydee.greco" + ], + [ + "broderick.greenberg" + ], + [ + "tyrone.guay" + ], + [ + "yetta.heck" + ], + [ + "freddy.hitt" + ], + [ + "carylon.hoffmann" + ], + [ + "haywood.hogue" + ], + [ + "enrique.horne" + ], + [ + "tami.isaac" + ], + [ + "giovanni.leger" + ], + [ + "tanya.maple" + ], + [ + "jere.marr" + ], + [ + "brent.mattson" + ], + [ + "thi.mcallister" + ], + [ + "jill.mccauley" + ], + [ + "brant.mcduffie" + ], + [ + "deidre.metzler" + ], + [ + "maricruz.nall" + ], + [ + "corinne.neff" + ], + [ + "freida.ness" + ], + [ + "maye.noonan" + ], + [ + "emmy.norwood" + ], + [ + "hugh.oliver" + ], + [ + "cierra.oreilly" + ], + [ + "lasonya.phillip" + ], + [ + "toshia.piazza" + ], + [ + "beverley.pitcher" + ], + [ + "ileana.puente" + ], + [ + "karri.putnam" + ], + [ + "porfirio.rasmussen" + ], + [ + "charlyn.robins" + ], + [ + "francene.sabo" + ], + [ + "refugia.soliz" + ], + [ + "anneliese.somerville" + ], + [ + "leroy.surratt" + ], + [ + "yi.thurman" + ], + [ + "halina.tobias" + ], + [ + "shelia.turney" + ], + [ + "carma.watters" + ], + [ + "virgen.willingham" + ] ], "voters": [ - 1839, - 2064, - 2014, - 2059, - 1144, - 1148, - 2035, - 2041, - 2012, - 807, - 2036, - 2026, - 2042, - 2022, - 1152, - 2034, - 1842, - 2065, - 2021, - 1155, - 2045, - 2067, - 2075, - 1151, - 2071, - 1531, - 2023, - 911, - 1143, - 2074, - 2053, - 2031 + [ + "heide.andrew" + ], + [ + "elfrieda.bess" + ], + [ + "giovanna.browne" + ], + [ + "donetta.burr" + ], + [ + "debra.chesser" + ], + [ + "raelene.clancy" + ], + [ + "scotty.daily" + ], + [ + "eryn.devore" + ], + [ + "dominga.earley" + ], + [ + "dale.earnest" + ], + [ + "haley.engle" + ], + [ + "rasheeda.glynn" + ], + [ + "fran.goodrich" + ], + [ + "carylon.hoffmann" + ], + [ + "haywood.hogue" + ], + [ + "enrique.horne" + ], + [ + "giovanni.leger" + ], + [ + "brent.mattson" + ], + [ + "thi.mcallister" + ], + [ + "jill.mccauley" + ], + [ + "brant.mcduffie" + ], + [ + "deidre.metzler" + ], + [ + "corinne.neff" + ], + [ + "emmy.norwood" + ], + [ + "cierra.oreilly" + ], + [ + "toshia.piazza" + ], + [ + "beverley.pitcher" + ], + [ + "ileana.puente" + ], + [ + "karri.putnam" + ], + [ + "refugia.soliz" + ], + [ + "shelia.turney" + ], + [ + "virgen.willingham" + ] ] } }, @@ -147789,27 +156843,63 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-10", "last_modified_time": "2018-06-03T10:22:16.311", - "last_modified_user": 812, + "last_modified_user": [ + "denna.lester" + ], "participants": [ - 2069, - 2037, - 2260, - 2230, - 2036, - 769, - 1842, - 2013, - 2144, - 2276, - 2220, - 2019 + [ + "ayesha.bannister" + ], + [ + "inge.baughman" + ], + [ + "josefa.burkholder" + ], + [ + "catherine.dillon" + ], + [ + "haley.engle" + ], + [ + "caryl.ivory" + ], + [ + "giovanni.leger" + ], + [ + "maye.noonan" + ], + [ + "alta.omalley" + ], + [ + "ardella.orr" + ], + [ + "tod.rowe" + ], + [ + "carma.watters" + ] ], "voters": [ - 2260, - 2230, - 2036, - 1842, - 2220 + [ + "josefa.burkholder" + ], + [ + "catherine.dillon" + ], + [ + "haley.engle" + ], + [ + "giovanni.leger" + ], + [ + "tod.rowe" + ] ] } }, @@ -147831,54 +156921,144 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-10", "last_modified_time": "2018-06-06T09:06:22.510", - "last_modified_user": 812, + "last_modified_user": [ + "denna.lester" + ], "participants": [ - 884, - 929, - 877, - 730, - 859, - 837, - 645, - 801, - 921, - 822, - 733, - 2213, - 933, - 857, - 887, - 728, - 2312, - 863, - 2314, - 741, - 851, - 802, - 2091, - 930, - 2190, - 757, - 742, - 845 + [ + "maybelle.bolton" + ], + [ + "crysta.bounds" + ], + [ + "lindsey.carranza" + ], + [ + "almeta.cody" + ], + [ + "benito.fuqua" + ], + [ + "yong.furr" + ], + [ + "cole.gamboa" + ], + [ + "monet.greenlee" + ], + [ + "laveta.grubbs" + ], + [ + "mitchel.heard" + ], + [ + "shayna.hyde" + ], + [ + "georgiana.jasper" + ], + [ + "hilde.langston" + ], + [ + "marilynn.oconnor" + ], + [ + "roxy.olds" + ], + [ + "larraine.olson" + ], + [ + "marjory.park.ext" + ], + [ + "elicia.rawlins" + ], + [ + "shannon.reece" + ], + [ + "randell.reis" + ], + [ + "chauncey.rivera" + ], + [ + "enid.robb" + ], + [ + "danyel.robins" + ], + [ + "carolyn.rose" + ], + [ + "tara.snider" + ], + [ + "jeannie.spears" + ], + [ + "kymberly.strange" + ], + [ + "kristie.stump" + ] ], "voters": [ - 884, - 877, - 730, - 859, - 837, - 801, - 733, - 933, - 857, - 887, - 728, - 741, - 851, - 930, - 742, - 845 + [ + "maybelle.bolton" + ], + [ + "lindsey.carranza" + ], + [ + "almeta.cody" + ], + [ + "benito.fuqua" + ], + [ + "yong.furr" + ], + [ + "monet.greenlee" + ], + [ + "shayna.hyde" + ], + [ + "hilde.langston" + ], + [ + "marilynn.oconnor" + ], + [ + "roxy.olds" + ], + [ + "larraine.olson" + ], + [ + "randell.reis" + ], + [ + "chauncey.rivera" + ], + [ + "carolyn.rose" + ], + [ + "kymberly.strange" + ], + [ + "kristie.stump" + ] ] } }, @@ -147900,130 +157080,372 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-10", "last_modified_time": "2018-06-06T09:06:22.534", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 2227, - 2232, - 2305, - 2235, - 2218, - 2244, - 2261, - 2279, - 2260, - 2275, - 2242, - 2295, - 2259, - 1838, - 2236, - 2230, - 2269, - 2296, - 2264, - 2273, - 2263, - 2294, - 2306, - 2253, - 2238, - 2298, - 2303, - 2252, - 2291, - 2302, - 2307, - 2287, - 2219, - 2280, - 2255, - 2278, - 2289, - 2222, - 2284, - 2297, - 2267, - 2270, - 2293, - 2243, - 2288, - 2256, - 2262, - 2276, - 2226, - 2300, - 2299, - 2271, - 2304, - 2258, - 2277, - 2220, - 2290, - 2240, - 2286, - 2265, - 2282, - 2283, - 2285, - 2268, - 2224, - 2266, - 2233, - 2281, - 2231, - 2272, - 2223, - 2274, - 2308, - 2254, - 2301, - 2234, - 2225, - 2221, - 2241, - 2292, - 2257 + [ + "elfriede.aguiar" + ], + [ + "alisa.askew" + ], + [ + "tamatha.bivens" + ], + [ + "herta.bourne" + ], + [ + "kristi.boykin" + ], + [ + "christine.brinkley" + ], + [ + "marquis.brody" + ], + [ + "jerrell.bunnell" + ], + [ + "josefa.burkholder" + ], + [ + "kellye.cobb" + ], + [ + "johnsie.conrad" + ], + [ + "leslee.copeland" + ], + [ + "ngan.corbin" + ], + [ + "elenora.crawford" + ], + [ + "donetta.dempsey" + ], + [ + "catherine.dillon" + ], + [ + "thomas.echols" + ], + [ + "dalton.everson" + ], + [ + "levi.findley" + ], + [ + "hollie.gallardo" + ], + [ + "maryln.galvan" + ], + [ + "cherlyn.gillette" + ], + [ + "miss.gorham" + ], + [ + "myrna.grant" + ], + [ + "marybeth.groff" + ], + [ + "karoline.hare" + ], + [ + "aurea.hay" + ], + [ + "diamond.hendrick" + ], + [ + "vonnie.hills" + ], + [ + "lorna.hubert" + ], + [ + "alfredo.hutchison" + ], + [ + "paz.jewell" + ], + [ + "keisha.jordon" + ], + [ + "cyndi.kiefer" + ], + [ + "felicia.lashley" + ], + [ + "pedro.logue" + ], + [ + "sherly.lord" + ], + [ + "marcelo.lowell" + ], + [ + "irmgard.loya" + ], + [ + "penni.luong" + ], + [ + "effie.martindale" + ], + [ + "tai.maurer" + ], + [ + "gaylord.mcafee" + ], + [ + "fatimah.mcghee" + ], + [ + "xavier.mckay" + ], + [ + "adriane.newby" + ], + [ + "leda.oakes" + ], + [ + "ardella.orr" + ], + [ + "latasha.pham" + ], + [ + "eleanor.pinkston" + ], + [ + "lenard.post" + ], + [ + "sandra.pulido" + ], + [ + "yoko.rafferty" + ], + [ + "treasa.rinaldi" + ], + [ + "claudine.ritchey" + ], + [ + "tod.rowe" + ], + [ + "neville.sales" + ], + [ + "cyndy.salter" + ], + [ + "cleopatra.see" + ], + [ + "wm.sierra" + ], + [ + "nan.simpkins" + ], + [ + "chuck.singer" + ], + [ + "celestina.slattery" + ], + [ + "anneliese.somerville" + ], + [ + "ossie.stamper" + ], + [ + "leanne.storey" + ], + [ + "russel.stroup" + ], + [ + "clement.tibbetts" + ], + [ + "mei.toro" + ], + [ + "ingrid.trice" + ], + [ + "brianna.true" + ], + [ + "shandra.turner" + ], + [ + "dayna.valles" + ], + [ + "isabelle.veal" + ], + [ + "taylor.washington" + ], + [ + "stacy.webber" + ], + [ + "suzi.wick" + ], + [ + "lindsy.wilke" + ], + [ + "reid.willingham" + ], + [ + "len.zarate" + ], + [ + "manager" + ] ], "voters": [ - 2227, - 2232, - 2235, - 2218, - 2244, - 2261, - 2275, - 2259, - 2230, - 2264, - 2273, - 2238, - 2303, - 2291, - 2302, - 2219, - 2278, - 2297, - 2267, - 2293, - 2226, - 2300, - 2299, - 2271, - 2277, - 2220, - 2240, - 2282, - 2285, - 2224, - 2233, - 2281, - 2272, - 2223, - 2274, - 2254, - 2234, - 2225, - 2241 + [ + "elfriede.aguiar" + ], + [ + "alisa.askew" + ], + [ + "herta.bourne" + ], + [ + "kristi.boykin" + ], + [ + "christine.brinkley" + ], + [ + "marquis.brody" + ], + [ + "kellye.cobb" + ], + [ + "ngan.corbin" + ], + [ + "catherine.dillon" + ], + [ + "levi.findley" + ], + [ + "hollie.gallardo" + ], + [ + "marybeth.groff" + ], + [ + "aurea.hay" + ], + [ + "vonnie.hills" + ], + [ + "lorna.hubert" + ], + [ + "keisha.jordon" + ], + [ + "pedro.logue" + ], + [ + "penni.luong" + ], + [ + "effie.martindale" + ], + [ + "gaylord.mcafee" + ], + [ + "latasha.pham" + ], + [ + "eleanor.pinkston" + ], + [ + "lenard.post" + ], + [ + "sandra.pulido" + ], + [ + "claudine.ritchey" + ], + [ + "tod.rowe" + ], + [ + "cyndy.salter" + ], + [ + "nan.simpkins" + ], + [ + "celestina.slattery" + ], + [ + "ossie.stamper" + ], + [ + "russel.stroup" + ], + [ + "clement.tibbetts" + ], + [ + "ingrid.trice" + ], + [ + "brianna.true" + ], + [ + "shandra.turner" + ], + [ + "isabelle.veal" + ], + [ + "stacy.webber" + ], + [ + "suzi.wick" + ], + [ + "reid.willingham" + ] ] } }, @@ -148045,67 +157467,183 @@ "vote_start_datetime": "2014-04-06T00:00:00", "vote_end_date": "2014-04-13", "last_modified_time": "2018-06-06T09:06:22.519", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [ - 2062, - 2046, - 1839, - 2057, - 881, - 2014, - 2043, - 2047, - 770, - 935, - 767, - 1838, - 2038, - 2061, - 2012, - 2060, - 2029, - 2032, - 2026, - 2042, - 2063, - 2033, - 2020, - 750, - 1842, - 2018, - 2065, - 2021, - 1155, - 814, - 2045, - 2068, - 2028, - 2075, - 2025, - 2013, - 2051, - 1531, - 2023, - 1143, - 2030, - 923, - 1154, - 2076, - 920, - 804, - 2066, - 926 + [ + "zane.aldridge" + ], + [ + "echo.andre" + ], + [ + "heide.andrew" + ], + [ + "cleo.arreola" + ], + [ + "shaunna.barnard" + ], + [ + "giovanna.browne" + ], + [ + "cecille.buck" + ], + [ + "rosendo.carlton" + ], + [ + "zack.chaffin" + ], + [ + "keva.cheng" + ], + [ + "mable.craddock" + ], + [ + "elenora.crawford" + ], + [ + "cyndy.david" + ], + [ + "sherryl.dozier" + ], + [ + "dominga.earley" + ], + [ + "reva.farr" + ], + [ + "ivana.ferro" + ], + [ + "dwayne.fortier" + ], + [ + "rasheeda.glynn" + ], + [ + "fran.goodrich" + ], + [ + "haydee.greco" + ], + [ + "tyrone.guay" + ], + [ + "freddy.hitt" + ], + [ + "kristyn.holcomb" + ], + [ + "giovanni.leger" + ], + [ + "tanya.maple" + ], + [ + "brent.mattson" + ], + [ + "thi.mcallister" + ], + [ + "jill.mccauley" + ], + [ + "irving.mcdade" + ], + [ + "brant.mcduffie" + ], + [ + "domingo.mcnutt" + ], + [ + "maricruz.nall" + ], + [ + "corinne.neff" + ], + [ + "freida.ness" + ], + [ + "maye.noonan" + ], + [ + "lasonya.phillip" + ], + [ + "toshia.piazza" + ], + [ + "beverley.pitcher" + ], + [ + "karri.putnam" + ], + [ + "porfirio.rasmussen" + ], + [ + "christel.rayburn" + ], + [ + "trey.ruby" + ], + [ + "nicki.spear" + ], + [ + "yong.staley" + ], + [ + "gidget.stern" + ], + [ + "halina.tobias" + ], + [ + "marcia.trammell" + ] ], "voters": [ - 767, - 2012, - 2042, - 750, - 2065, - 2021, - 1155, - 2045, - 1143 + [ + "mable.craddock" + ], + [ + "dominga.earley" + ], + [ + "fran.goodrich" + ], + [ + "kristyn.holcomb" + ], + [ + "brent.mattson" + ], + [ + "thi.mcallister" + ], + [ + "jill.mccauley" + ], + [ + "brant.mcduffie" + ], + [ + "karri.putnam" + ] ] } }, @@ -148127,132 +157665,378 @@ "vote_start_datetime": "2014-02-01T00:00:00", "vote_end_date": "2014-02-14", "last_modified_time": "2018-06-06T09:06:22.676", - "last_modified_user": 116, + "last_modified_user": [ + "hugh.runyon" + ], "participants": [ - 2227, - 2232, - 2305, - 2235, - 2218, - 2244, - 2261, - 2279, - 2260, - 2275, - 2242, - 2295, - 2259, - 2236, - 2230, - 2269, - 2296, - 2264, - 2320, - 2273, - 2263, - 2294, - 2306, - 2253, - 2238, - 2298, - 2303, - 2252, - 2291, - 2302, - 2307, - 2287, - 2219, - 2280, - 2255, - 2278, - 2289, - 2222, - 2284, - 2297, - 2267, - 2270, - 2293, - 2243, - 2288, - 2256, - 2262, - 2276, - 2226, - 2299, - 2271, - 2304, - 2258, - 2277, - 2220, - 2290, - 2240, - 2286, - 2265, - 2282, - 2283, - 2285, - 2268, - 2224, - 2266, - 2233, - 2281, - 2231, - 2272, - 2223, - 2274, - 2308, - 2254, - 2301, - 2234, - 2225, - 2221, - 2241, - 2292, - 2257 + [ + "elfriede.aguiar" + ], + [ + "alisa.askew" + ], + [ + "tamatha.bivens" + ], + [ + "herta.bourne" + ], + [ + "kristi.boykin" + ], + [ + "christine.brinkley" + ], + [ + "marquis.brody" + ], + [ + "jerrell.bunnell" + ], + [ + "josefa.burkholder" + ], + [ + "kellye.cobb" + ], + [ + "johnsie.conrad" + ], + [ + "leslee.copeland" + ], + [ + "ngan.corbin" + ], + [ + "donetta.dempsey" + ], + [ + "catherine.dillon" + ], + [ + "thomas.echols" + ], + [ + "dalton.everson" + ], + [ + "levi.findley" + ], + [ + "leola.flannery" + ], + [ + "hollie.gallardo" + ], + [ + "maryln.galvan" + ], + [ + "cherlyn.gillette" + ], + [ + "miss.gorham" + ], + [ + "myrna.grant" + ], + [ + "marybeth.groff" + ], + [ + "karoline.hare" + ], + [ + "aurea.hay" + ], + [ + "diamond.hendrick" + ], + [ + "vonnie.hills" + ], + [ + "lorna.hubert" + ], + [ + "alfredo.hutchison" + ], + [ + "paz.jewell" + ], + [ + "keisha.jordon" + ], + [ + "cyndi.kiefer" + ], + [ + "felicia.lashley" + ], + [ + "pedro.logue" + ], + [ + "sherly.lord" + ], + [ + "marcelo.lowell" + ], + [ + "irmgard.loya" + ], + [ + "penni.luong" + ], + [ + "effie.martindale" + ], + [ + "tai.maurer" + ], + [ + "gaylord.mcafee" + ], + [ + "fatimah.mcghee" + ], + [ + "xavier.mckay" + ], + [ + "adriane.newby" + ], + [ + "leda.oakes" + ], + [ + "ardella.orr" + ], + [ + "latasha.pham" + ], + [ + "lenard.post" + ], + [ + "sandra.pulido" + ], + [ + "yoko.rafferty" + ], + [ + "treasa.rinaldi" + ], + [ + "claudine.ritchey" + ], + [ + "tod.rowe" + ], + [ + "neville.sales" + ], + [ + "cyndy.salter" + ], + [ + "cleopatra.see" + ], + [ + "wm.sierra" + ], + [ + "nan.simpkins" + ], + [ + "chuck.singer" + ], + [ + "celestina.slattery" + ], + [ + "anneliese.somerville" + ], + [ + "ossie.stamper" + ], + [ + "leanne.storey" + ], + [ + "russel.stroup" + ], + [ + "clement.tibbetts" + ], + [ + "mei.toro" + ], + [ + "ingrid.trice" + ], + [ + "brianna.true" + ], + [ + "shandra.turner" + ], + [ + "dayna.valles" + ], + [ + "isabelle.veal" + ], + [ + "taylor.washington" + ], + [ + "stacy.webber" + ], + [ + "suzi.wick" + ], + [ + "lindsy.wilke" + ], + [ + "reid.willingham" + ], + [ + "len.zarate" + ], + [ + "manager" + ] ], "voters": [ - 2227, - 2232, - 2218, - 2244, - 2261, - 2279, - 2260, - 2275, - 2259, - 2230, - 2296, - 2264, - 2273, - 2298, - 2303, - 2291, - 2302, - 2219, - 2280, - 2278, - 2297, - 2267, - 2293, - 2256, - 2226, - 2299, - 2271, - 2277, - 2220, - 2240, - 2286, - 2282, - 2285, - 2224, - 2233, - 2281, - 2272, - 2223, - 2274, - 2301, - 2234, - 2225 + [ + "elfriede.aguiar" + ], + [ + "alisa.askew" + ], + [ + "kristi.boykin" + ], + [ + "christine.brinkley" + ], + [ + "marquis.brody" + ], + [ + "jerrell.bunnell" + ], + [ + "josefa.burkholder" + ], + [ + "kellye.cobb" + ], + [ + "ngan.corbin" + ], + [ + "catherine.dillon" + ], + [ + "dalton.everson" + ], + [ + "levi.findley" + ], + [ + "hollie.gallardo" + ], + [ + "karoline.hare" + ], + [ + "aurea.hay" + ], + [ + "vonnie.hills" + ], + [ + "lorna.hubert" + ], + [ + "keisha.jordon" + ], + [ + "cyndi.kiefer" + ], + [ + "pedro.logue" + ], + [ + "penni.luong" + ], + [ + "effie.martindale" + ], + [ + "gaylord.mcafee" + ], + [ + "adriane.newby" + ], + [ + "latasha.pham" + ], + [ + "lenard.post" + ], + [ + "sandra.pulido" + ], + [ + "claudine.ritchey" + ], + [ + "tod.rowe" + ], + [ + "cyndy.salter" + ], + [ + "cleopatra.see" + ], + [ + "nan.simpkins" + ], + [ + "celestina.slattery" + ], + [ + "ossie.stamper" + ], + [ + "russel.stroup" + ], + [ + "clement.tibbetts" + ], + [ + "ingrid.trice" + ], + [ + "brianna.true" + ], + [ + "shandra.turner" + ], + [ + "taylor.washington" + ], + [ + "stacy.webber" + ], + [ + "suzi.wick" + ] ] } }, @@ -148276,13 +158060,27 @@ "last_modified_time": "2016-02-22T22:08:19.766", "last_modified_user": null, "participants": [ - 2059, - 2039, - 689, - 932, - 597, - 55, - 815 + [ + "donetta.burr" + ], + [ + "jere.marr" + ], + [ + "marya.metcalf" + ], + [ + "carmelo.michael" + ], + [ + "wade.ryan" + ], + [ + "celesta.york.ext" + ], + [ + "evap" + ] ], "voters": [] } @@ -148305,7 +158103,9 @@ "vote_start_datetime": "2015-11-01T00:00:00", "vote_end_date": "2015-11-01", "last_modified_time": "2018-06-03T10:22:16.380", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [], "voters": [] } @@ -148328,7 +158128,9 @@ "vote_start_datetime": "2015-10-01T00:00:00", "vote_end_date": "2015-10-01", "last_modified_time": "2018-06-03T10:22:16.193", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [], "voters": [] } @@ -148351,7 +158153,9 @@ "vote_start_datetime": "2014-06-20T00:00:00", "vote_end_date": "2014-06-20", "last_modified_time": "2019-01-28T10:34:37.254", - "last_modified_user": 815, + "last_modified_user": [ + "evap" + ], "participants": [], "voters": [] } @@ -148373,7 +158177,9 @@ 1 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -148394,7 +158200,9 @@ 2 ], "responsibles": [ - 251 + [ + "kindra.hancock.ext" + ] ] } }, @@ -148415,7 +158223,9 @@ 2 ], "responsibles": [ - 648 + [ + "henriette.park" + ] ] } }, @@ -148436,7 +158246,9 @@ 1 ], "responsibles": [ - 173 + [ + "chieko.lehman" + ] ] } }, @@ -148457,7 +158269,9 @@ 2 ], "responsibles": [ - 2341 + [ + "luciana.graves" + ] ] } }, @@ -148478,7 +158292,9 @@ 2 ], "responsibles": [ - 236 + [ + "ingeborg.herring" + ] ] } }, @@ -148499,7 +158315,9 @@ 1 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -148520,7 +158338,9 @@ 1 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -148541,7 +158361,9 @@ 2 ], "responsibles": [ - 2326 + [ + "xuan.bustamante.ext" + ] ] } }, @@ -148562,7 +158384,9 @@ 2 ], "responsibles": [ - 484 + [ + "harriet.rushing" + ] ] } }, @@ -148583,7 +158407,9 @@ 2 ], "responsibles": [ - 93 + [ + "viola.barringer" + ] ] } }, @@ -148604,7 +158430,9 @@ 2 ], "responsibles": [ - 251 + [ + "kindra.hancock.ext" + ] ] } }, @@ -148625,7 +158453,9 @@ 2 ], "responsibles": [ - 2341 + [ + "luciana.graves" + ] ] } }, @@ -148646,7 +158476,9 @@ 1 ], "responsibles": [ - 234 + [ + "lahoma.gage" + ] ] } }, @@ -148667,7 +158499,9 @@ 1 ], "responsibles": [ - 2325 + [ + "mariann.locke.ext" + ] ] } }, @@ -148688,7 +158522,9 @@ 1 ], "responsibles": [ - 222 + [ + "evie.martz" + ] ] } }, @@ -148709,7 +158545,9 @@ 2 ], "responsibles": [ - 127 + [ + "elena.kline" + ] ] } }, @@ -148730,7 +158568,9 @@ 2 ], "responsibles": [ - 236 + [ + "ingeborg.herring" + ] ] } }, @@ -148751,7 +158591,9 @@ 2 ], "responsibles": [ - 234 + [ + "lahoma.gage" + ] ] } }, @@ -148772,7 +158614,9 @@ 2 ], "responsibles": [ - 236 + [ + "ingeborg.herring" + ] ] } }, @@ -148793,7 +158637,9 @@ 2 ], "responsibles": [ - 186 + [ + "ranae.fry.ext" + ] ] } }, @@ -148814,7 +158660,9 @@ 2 ], "responsibles": [ - 2086 + [ + "amelia.handy.ext" + ] ] } }, @@ -148835,7 +158683,9 @@ 2 ], "responsibles": [ - 236 + [ + "ingeborg.herring" + ] ] } }, @@ -148856,7 +158706,9 @@ 2 ], "responsibles": [ - 1075 + [ + "trudie.huntley" + ] ] } }, @@ -148877,7 +158729,9 @@ 1 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -148898,7 +158752,9 @@ 1 ], "responsibles": [ - 2086 + [ + "amelia.handy.ext" + ] ] } }, @@ -148919,7 +158775,9 @@ 2 ], "responsibles": [ - 2341 + [ + "luciana.graves" + ] ] } }, @@ -148940,7 +158798,9 @@ 3 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -148961,7 +158821,9 @@ 1 ], "responsibles": [ - 236 + [ + "ingeborg.herring" + ] ] } }, @@ -148982,7 +158844,9 @@ 1 ], "responsibles": [ - 484 + [ + "harriet.rushing" + ] ] } }, @@ -149003,7 +158867,9 @@ 2 ], "responsibles": [ - 1009 + [ + "shayne.scruggs.ext" + ] ] } }, @@ -149024,7 +158890,9 @@ 2 ], "responsibles": [ - 283 + [ + "darlena.holliman.ext" + ] ] } }, @@ -149045,7 +158913,9 @@ 1 ], "responsibles": [ - 2324 + [ + "odis.cantu.ext" + ] ] } }, @@ -149066,7 +158936,9 @@ 1 ], "responsibles": [ - 234 + [ + "lahoma.gage" + ] ] } }, @@ -149087,7 +158959,9 @@ 1 ], "responsibles": [ - 1 + [ + "luann.schulz" + ] ] } }, @@ -149108,7 +158982,9 @@ 1 ], "responsibles": [ - 640 + [ + "arnold.lane" + ] ] } }, @@ -149129,7 +159005,9 @@ 1 ], "responsibles": [ - 173 + [ + "chieko.lehman" + ] ] } }, @@ -149150,7 +159028,9 @@ 1 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -149171,7 +159051,9 @@ 2 ], "responsibles": [ - 249 + [ + "sunni.hollingsworth" + ] ] } }, @@ -149192,7 +159074,9 @@ 1 ], "responsibles": [ - 249 + [ + "sunni.hollingsworth" + ] ] } }, @@ -149213,7 +159097,9 @@ 2 ], "responsibles": [ - 93 + [ + "viola.barringer" + ] ] } }, @@ -149234,7 +159120,9 @@ 1 ], "responsibles": [ - 601 + [ + "corinne.tolliver" + ] ] } }, @@ -149255,7 +159143,9 @@ 1 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -149276,7 +159166,9 @@ 2 ], "responsibles": [ - 641 + [ + "sandee.coker" + ] ] } }, @@ -149297,7 +159189,9 @@ 2 ], "responsibles": [ - 127 + [ + "elena.kline" + ] ] } }, @@ -149318,7 +159212,9 @@ 2 ], "responsibles": [ - 236 + [ + "ingeborg.herring" + ] ] } }, @@ -149339,7 +159235,9 @@ 2 ], "responsibles": [ - 186 + [ + "ranae.fry.ext" + ] ] } }, @@ -149360,7 +159258,9 @@ 2 ], "responsibles": [ - 116 + [ + "hugh.runyon" + ] ] } }, @@ -149381,7 +159281,9 @@ 2 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -149402,7 +159304,9 @@ 1 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -149423,7 +159327,9 @@ 1 ], "responsibles": [ - 283 + [ + "darlena.holliman.ext" + ] ] } }, @@ -149444,7 +159350,9 @@ 2 ], "responsibles": [ - 326 + [ + "junie.hicks" + ] ] } }, @@ -149465,7 +159373,9 @@ 1 ], "responsibles": [ - 2319 + [ + "salena.soriano" + ] ] } }, @@ -149486,7 +159396,9 @@ 1 ], "responsibles": [ - 173 + [ + "chieko.lehman" + ] ] } }, @@ -149507,7 +159419,9 @@ 2 ], "responsibles": [ - 234 + [ + "lahoma.gage" + ] ] } }, @@ -149528,7 +159442,9 @@ 2 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -149549,7 +159465,9 @@ 2 ], "responsibles": [ - 993 + [ + "beau.saunders.ext" + ] ] } }, @@ -149570,7 +159488,9 @@ 2 ], "responsibles": [ - 937 + [ + "sonia.dominguez.ext" + ] ] } }, @@ -149591,7 +159511,9 @@ 2 ], "responsibles": [ - 234 + [ + "lahoma.gage" + ] ] } }, @@ -149612,7 +159534,9 @@ 1 ], "responsibles": [ - 251 + [ + "kindra.hancock.ext" + ] ] } }, @@ -149633,7 +159557,9 @@ 1 ], "responsibles": [ - 641 + [ + "sandee.coker" + ] ] } }, @@ -149654,7 +159580,9 @@ 2 ], "responsibles": [ - 2319 + [ + "salena.soriano" + ] ] } }, @@ -149675,7 +159603,9 @@ 2 ], "responsibles": [ - 2186 + [ + "emilee.beavers.ext" + ] ] } }, @@ -149696,7 +159626,9 @@ 2 ], "responsibles": [ - 937 + [ + "sonia.dominguez.ext" + ] ] } }, @@ -149717,7 +159649,9 @@ 2 ], "responsibles": [ - 2086 + [ + "amelia.handy.ext" + ] ] } }, @@ -149738,7 +159672,9 @@ 1 ], "responsibles": [ - 127 + [ + "elena.kline" + ] ] } }, @@ -149759,7 +159695,9 @@ 1 ], "responsibles": [ - 234 + [ + "lahoma.gage" + ] ] } }, @@ -149780,7 +159718,9 @@ 1 ], "responsibles": [ - 1105 + [ + "qiana.briscoe.ext" + ] ] } }, @@ -149801,7 +159741,9 @@ 1 ], "responsibles": [ - 300 + [ + "charity.leonard" + ] ] } }, @@ -149822,7 +159764,9 @@ 2 ], "responsibles": [ - 234 + [ + "lahoma.gage" + ] ] } }, @@ -149843,7 +159787,9 @@ 2 ], "responsibles": [ - 234 + [ + "lahoma.gage" + ] ] } }, @@ -149864,7 +159810,9 @@ 1 ], "responsibles": [ - 640 + [ + "arnold.lane" + ] ] } }, @@ -149885,7 +159833,9 @@ 2 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -149906,7 +159856,9 @@ 2 ], "responsibles": [ - 484 + [ + "harriet.rushing" + ] ] } }, @@ -149927,7 +159879,9 @@ 2 ], "responsibles": [ - 234 + [ + "lahoma.gage" + ] ] } }, @@ -149948,7 +159902,9 @@ 2 ], "responsibles": [ - 127 + [ + "elena.kline" + ] ] } }, @@ -149969,7 +159925,9 @@ 2 ], "responsibles": [ - 937 + [ + "sonia.dominguez.ext" + ] ] } }, @@ -149990,7 +159948,9 @@ 2 ], "responsibles": [ - 236 + [ + "ingeborg.herring" + ] ] } }, @@ -150011,7 +159971,9 @@ 1 ], "responsibles": [ - 318 + [ + "laurence.tipton" + ] ] } }, @@ -150032,7 +159994,9 @@ 1 ], "responsibles": [ - 2325 + [ + "mariann.locke.ext" + ] ] } }, @@ -150053,7 +160017,9 @@ 2 ], "responsibles": [ - 222 + [ + "evie.martz" + ] ] } }, @@ -150074,7 +160040,9 @@ 1 ], "responsibles": [ - 648 + [ + "henriette.park" + ] ] } }, @@ -150095,7 +160063,9 @@ 1 ], "responsibles": [ - 395 + [ + "al.jean" + ] ] } }, @@ -150116,7 +160086,9 @@ 1 ], "responsibles": [ - 2086 + [ + "amelia.handy.ext" + ] ] } }, @@ -150137,7 +160109,9 @@ 1 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -150158,7 +160132,9 @@ 1 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -150179,7 +160155,9 @@ 2 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -150200,7 +160178,9 @@ 2 ], "responsibles": [ - 815 + [ + "evap" + ] ] } }, @@ -150221,7 +160201,9 @@ 2 ], "responsibles": [ - 641 + [ + "sandee.coker" + ] ] } }, @@ -150242,7 +160224,9 @@ 1 ], "responsibles": [ - 936 + [ + "gaylene.timmons.ext" + ] ] } }, @@ -150263,7 +160247,9 @@ 2 ], "responsibles": [ - 204 + [ + "lizabeth.steward" + ] ] } }, @@ -150284,7 +160270,9 @@ 1 ], "responsibles": [ - 127 + [ + "elena.kline" + ] ] } }, @@ -150305,7 +160293,9 @@ 2 ], "responsibles": [ - 204 + [ + "lizabeth.steward" + ] ] } }, @@ -150326,7 +160316,9 @@ 1 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -150347,7 +160339,9 @@ 1 ], "responsibles": [ - 234 + [ + "lahoma.gage" + ] ] } }, @@ -150368,7 +160362,9 @@ 1 ], "responsibles": [ - 2325 + [ + "mariann.locke.ext" + ] ] } }, @@ -150389,7 +160385,9 @@ 1 ], "responsibles": [ - 648 + [ + "henriette.park" + ] ] } }, @@ -150410,7 +160408,9 @@ 1 ], "responsibles": [ - 1072 + [ + "donnetta.casillas" + ] ] } }, @@ -150431,7 +160431,9 @@ 1 ], "responsibles": [ - 173 + [ + "chieko.lehman" + ] ] } }, @@ -150452,7 +160454,9 @@ 1 ], "responsibles": [ - 635 + [ + "jospeh.thorp.ext" + ] ] } }, @@ -150473,7 +160477,9 @@ 1 ], "responsibles": [ - 310 + [ + "amos.benoit" + ] ] } }, @@ -150494,7 +160500,9 @@ 2 ], "responsibles": [ - 204 + [ + "lizabeth.steward" + ] ] } }, @@ -150515,7 +160523,9 @@ 2 ], "responsibles": [ - 959 + [ + "lyndia.higdon" + ] ] } }, @@ -150536,7 +160546,9 @@ 1 ], "responsibles": [ - 643 + [ + "arron.tran" + ] ] } }, @@ -150557,7 +160569,9 @@ 2 ], "responsibles": [ - 650 + [ + "lisandra.grace.ext" + ] ] } }, @@ -150578,7 +160592,9 @@ 2 ], "responsibles": [ - 236 + [ + "ingeborg.herring" + ] ] } }, @@ -150599,7 +160615,9 @@ 2 ], "responsibles": [ - 234 + [ + "lahoma.gage" + ] ] } }, @@ -150620,7 +160638,9 @@ 2 ], "responsibles": [ - 93 + [ + "viola.barringer" + ] ] } }, @@ -150641,7 +160661,9 @@ 2 ], "responsibles": [ - 648 + [ + "henriette.park" + ] ] } }, @@ -150662,7 +160684,9 @@ 2 ], "responsibles": [ - 116 + [ + "hugh.runyon" + ] ] } }, @@ -150683,7 +160707,9 @@ 2 ], "responsibles": [ - 267 + [ + "karine.prater" + ] ] } }, @@ -150704,7 +160730,9 @@ 2 ], "responsibles": [ - 234 + [ + "lahoma.gage" + ] ] } }, @@ -150725,7 +160753,9 @@ 2 ], "responsibles": [ - 173 + [ + "chieko.lehman" + ] ] } }, @@ -150746,7 +160776,9 @@ 1 ], "responsibles": [ - 994 + [ + "merle.higdon.ext" + ] ] } }, @@ -150767,7 +160799,9 @@ 2 ], "responsibles": [ - 236 + [ + "ingeborg.herring" + ] ] } }, @@ -150788,7 +160822,9 @@ 2 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -150809,7 +160845,9 @@ 1 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -150830,7 +160868,9 @@ 1 ], "responsibles": [ - 236 + [ + "ingeborg.herring" + ] ] } }, @@ -150851,7 +160891,9 @@ 1 ], "responsibles": [ - 249 + [ + "sunni.hollingsworth" + ] ] } }, @@ -150872,7 +160914,9 @@ 2 ], "responsibles": [ - 186 + [ + "ranae.fry.ext" + ] ] } }, @@ -150893,7 +160937,9 @@ 1 ], "responsibles": [ - 236 + [ + "ingeborg.herring" + ] ] } }, @@ -150914,7 +160960,9 @@ 1 ], "responsibles": [ - 409 + [ + "pamula.sims" + ] ] } }, @@ -150935,7 +160983,9 @@ 1 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -150956,7 +161006,9 @@ 2 ], "responsibles": [ - 186 + [ + "ranae.fry.ext" + ] ] } }, @@ -150977,7 +161029,9 @@ 2 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -150998,7 +161052,9 @@ 2 ], "responsibles": [ - 234 + [ + "lahoma.gage" + ] ] } }, @@ -151019,7 +161075,9 @@ 1 ], "responsibles": [ - 116 + [ + "hugh.runyon" + ] ] } }, @@ -151040,7 +161098,9 @@ 2 ], "responsibles": [ - 2341 + [ + "luciana.graves" + ] ] } }, @@ -151061,7 +161121,9 @@ 1 ], "responsibles": [ - 127 + [ + "elena.kline" + ] ] } }, @@ -151082,7 +161144,9 @@ 3 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -151103,7 +161167,9 @@ 1 ], "responsibles": [ - 234 + [ + "lahoma.gage" + ] ] } }, @@ -151124,7 +161190,9 @@ 1 ], "responsibles": [ - 33 + [ + "latosha.moon" + ] ] } }, @@ -151145,7 +161213,9 @@ 1 ], "responsibles": [ - 204 + [ + "lizabeth.steward" + ] ] } }, @@ -151166,7 +161236,9 @@ 2 ], "responsibles": [ - 648 + [ + "henriette.park" + ] ] } }, @@ -151187,7 +161259,9 @@ 1 ], "responsibles": [ - 255 + [ + "responsible" + ] ] } }, @@ -151208,7 +161282,9 @@ 2 ], "responsibles": [ - 127 + [ + "elena.kline" + ] ] } } diff --git a/evap/evaluation/tests/test_commands.py b/evap/evaluation/tests/test_commands.py --- a/evap/evaluation/tests/test_commands.py +++ b/evap/evaluation/tests/test_commands.py @@ -199,7 +199,8 @@ def test_dumpdata_called(self): management.call_command('dump_testdata') outfile_name = os.path.join(settings.BASE_DIR, "evaluation", "fixtures", "test_data.json") - mock.assert_called_once_with("dumpdata", "auth.group", "evaluation", "rewards", "grades", indent=2, output=outfile_name) + mock.assert_called_once_with('dumpdata', 'auth.group', 'evaluation', 'rewards', 'grades', + indent=2, natural_foreign=True, natural_primary=True, output=outfile_name) @override_settings(REMIND_X_DAYS_AHEAD_OF_END_DATE=[0, 2])
Importing a backup made by update_production.sh does not work flawlessly. Last week we wanted to do a production update. The json dump file created during that update could not be imported without issues: - The dump does not contain the cronjob user, but foreign key references to it. This can not be imported - The dump contains data included by django by default (auth, permission, ...). These need to be excluded when importing. There should be some kind of documentation on what needs to be executed to import this dump back into the database. We should also add some test (could probably just run on travis) that ensures this always works (dump, flush database, migrate, load dump).
we have `dump_testdata`, which probably dumps the data we want to dump in `update_production.sh`. maybe we should make `dump_testdata` take an `output` parameter which is forwarded to `dumpdata`, and if it's not specified, it's set to the `outfile_name` variable that's created there. then we can use `dump_testdata` in `update_production.sh`.
2019-06-25T09:09:28
e-valuation/EvaP
1,360
e-valuation__EvaP-1360
[ "1347" ]
b3715158306c27734b29253598c0a644c840b9b0
diff --git a/evap/staff/forms.py b/evap/staff/forms.py --- a/evap/staff/forms.py +++ b/evap/staff/forms.py @@ -511,7 +511,7 @@ def clean(self): raise forms.ValidationError(_('You must have at least one of these.')) -class ContributionFormSet(AtLeastOneFormSet): +class ContributionFormSet(BaseInlineFormSet): def __init__(self, data=None, *args, **kwargs): data = self.handle_moved_contributors(data, **kwargs) super().__init__(data, *args, **kwargs)
diff --git a/evap/staff/tests/test_forms.py b/evap/staff/tests/test_forms.py --- a/evap/staff/tests/test_forms.py +++ b/evap/staff/tests/test_forms.py @@ -341,6 +341,23 @@ def test_take_deleted_contributions_into_account(self): formset = contribution_formset(instance=evaluation, form_kwargs={'evaluation': evaluation}, data=data) self.assertTrue(formset.is_valid()) + def test_there_can_be_no_contributions(self): + """ + Tests that there can also be no contribution + Regression test for #1347 + """ + evaluation = mommy.make(Evaluation) + contribution_formset = inlineformset_factory(Evaluation, Contribution, formset=ContributionFormSet, form=ContributionForm, extra=0) + + data = to_querydict({ + 'contributions-TOTAL_FORMS': 0, + 'contributions-INITIAL_FORMS': 1, + 'contributions-MAX_NUM_FORMS': 5, + }) + + formset = contribution_formset(instance=evaluation, form_kwargs={'evaluation': evaluation}, data=data) + self.assertTrue(formset.is_valid()) + def test_hidden_and_managers_only(self): """ Asserts that hidden questionnaires are shown to managers only if they are already selected for a
Remove AtLeastOne contributor constraint We have a constraint that every evaluation must have at least one contributor. This was useful to define at least one person with access to the results. Now, evaluations belong to courses which must have at least one responsible. This responsible can access the results also when not explicitly being added as a contributor. When creating exam evaluations we don't want to add additional questions and use contributions only for visibility permissions. If only the responsible is involved, we currently unnecessarily have to add the responsible as a contributor. So the constraint should be removed.
2019-09-16T18:51:55
e-valuation/EvaP
1,367
e-valuation__EvaP-1367
[ "1103" ]
92c318d710f27334ffe86a3783e58ae569d661c2
diff --git a/evap/evaluation/templatetags/evaluation_filters.py b/evap/evaluation/templatetags/evaluation_filters.py --- a/evap/evaluation/templatetags/evaluation_filters.py +++ b/evap/evaluation/templatetags/evaluation_filters.py @@ -38,10 +38,10 @@ # values for approval states shown to staff StateValues = namedtuple('StateValues', ('order', 'icon', 'filter', 'description')) APPROVAL_STATES = { - 'new': StateValues(0, 'fas fa-circle icon-yellow', 'fa-circle icon-yellow', _('In preparation')), - 'prepared': StateValues(2, 'far fa-square icon-gray', 'fa-square icon-gray', _('Awaiting editor review')), - 'editor_approved': StateValues(1, 'far fa-check-square icon-yellow', 'fa-check-square icon-yellow', _('Approved by editor, awaiting manager review')), - 'approved': StateValues(3, 'far fa-check-square icon-green', 'fa-check-square icon-green', _('Approved by manager')), + 'new': StateValues(0, 'fas fa-circle icon-yellow', 'new', _('In preparation')), + 'prepared': StateValues(2, 'far fa-square icon-gray', 'prepared', _('Awaiting editor review')), + 'editor_approved': StateValues(1, 'far fa-check-square icon-yellow', 'editor_approved', _('Approved by editor, awaiting manager review')), + 'approved': StateValues(3, 'far fa-check-square icon-green', 'approved', _('Approved by manager')), }
Inline datatables localization files to speed up first paint Right now, datatables gets the localization file in form of a URL (see [datatables.html](https://github.com/fsr-itse/EvaP/blob/master/evap/evaluation/templates/datatables.html)), that is, it starts an ajax request when it starts processing the tables, and waits with processing until the result has been received. both locales should be included into the compressed javascript or inlined into the html template so they are loaded earlier. we do something similar for the [bootstrap datetimepicker](https://github.com/fsr-itse/EvaP/blob/028b6301e3eed446d93ae8675030d82c68d46886/evap/evaluation/templates/bootstrap_datetimepicker.html). unfortunately, it's not that easy in this case, since the localization files are json files, not javascript files. one approach would be to turn the json files to js files, and simply putting the datastructure inside into a variable with the name of the corresponding locale.
i'm currently working on completely removing the datatables from the results pages so this might become obsolete. we are using datatables on other pages as well. We can maybe replace those as well...
2019-10-16T12:37:49