-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
2,060 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# arbiter | ||
# A Django app that implements a MMS for the red/blue models. | ||
# | ||
# Author: Benjamin Bengfort <[email protected]> | ||
# Created: Tue Aug 02 09:13:41 2016 -0400 | ||
# | ||
# Copyright (C) 2016 District Data Labs | ||
# For license information, see LICENSE.txt | ||
# | ||
# ID: __init__.py [cd70726] [email protected] $ | ||
|
||
""" | ||
A Django app that implements a MMS for the red/blue models. | ||
""" | ||
|
||
########################################################################## | ||
## Imports | ||
########################################################################## | ||
|
||
|
||
########################################################################## | ||
## Configuration | ||
########################################################################## | ||
|
||
default_app_config = 'arbiter.apps.ArbiterConfig' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# arbiter.admin | ||
# Django admin CMS definitions and registrations for the arbiter app. | ||
# | ||
# Author: Benjamin Bengfort <[email protected]> | ||
# Created: Tue Aug 02 09:18:18 2016 -0400 | ||
# | ||
# Copyright (C) 2016 District Data Labs | ||
# For license information, see LICENSE.txt | ||
# | ||
# ID: admin.py [cd70726] [email protected] $ | ||
|
||
""" | ||
Django admin CMS definitions and registrations for the arbiter app. | ||
""" | ||
|
||
########################################################################## | ||
## Imports | ||
########################################################################## | ||
|
||
from django.contrib import admin | ||
from arbiter.models import Estimator, Score | ||
|
||
########################################################################## | ||
## Register Admin | ||
########################################################################## | ||
|
||
admin.site.register(Estimator) | ||
admin.site.register(Score) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# arbiter.apps | ||
# Application definition for the arbiter app. | ||
# | ||
# Author: Benjamin Bengfort <[email protected]> | ||
# Created: Tue Aug 02 09:14:47 2016 -0400 | ||
# | ||
# Copyright (C) 2016 District Data Labs | ||
# For license information, see LICENSE.txt | ||
# | ||
# ID: apps.py [cd70726] [email protected] $ | ||
|
||
""" | ||
Application definition for the arbiter app. | ||
""" | ||
|
||
########################################################################## | ||
## Imports | ||
########################################################################## | ||
|
||
from django.apps import AppConfig | ||
|
||
|
||
########################################################################## | ||
## Corpus Config | ||
########################################################################## | ||
|
||
class ArbiterConfig(AppConfig): | ||
|
||
name = 'arbiter' | ||
verbose_name = 'Arbiter' | ||
|
||
def ready(self): | ||
pass | ||
# import arbiter.signals |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# arbiter.management | ||
# A module that specifies Django management commands for the arbiter app. | ||
# | ||
# Author: Benjamin Bengfort <[email protected]> | ||
# Created: Tue Aug 02 10:36:54 2016 -0400 | ||
# | ||
# Copyright (C) 2016 District Data Labs | ||
# For license information, see LICENSE.txt | ||
# | ||
# ID: __init__.py [feb4803] [email protected] $ | ||
|
||
""" | ||
A module that specifies Django management commands for the arbiter app. | ||
""" | ||
|
||
########################################################################## | ||
## Imports | ||
########################################################################## |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# arbiter.management.commands | ||
# Module that contains each individual management command for Django. | ||
# | ||
# Author: Benjamin Bengfort <[email protected]> | ||
# Created: Tue Aug 02 10:37:24 2016 -0400 | ||
# | ||
# Copyright (C) 2016 District Data Labs | ||
# For license information, see LICENSE.txt | ||
# | ||
# ID: __init__.py [feb4803] [email protected] $ | ||
|
||
""" | ||
Module that contains each individual management command for Django. | ||
""" | ||
|
||
########################################################################## | ||
## Imports | ||
########################################################################## |
Oops, something went wrong.