Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions makeabilitylab/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@
ALLOWED_HOSTS = ['*']

# Makeability Lab Global Variables, including Makeability Lab version
ML_WEBSITE_VERSION = "2.2.2" # Keep this updated with each release and also change the short description below
ML_WEBSITE_VERSION_DESCRIPTION = "Fixed auto-complete fields in admin interface after upgrading to Django 5.2.9"
ML_WEBSITE_VERSION = "2.2.3" # Keep this updated with each release and also change the short description below
ML_WEBSITE_VERSION_DESCRIPTION = "Updated the view-project-people page"
DATE_MAKEABILITYLAB_FORMED = datetime.date(2012, 1, 1) # Date Makeability Lab was formed
MAX_BANNERS = 7 # Maximum number of banners on a page

Expand Down
2 changes: 1 addition & 1 deletion website/models/position.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def get_title_index(self):
if self.title in self.TITLE_ORDER_MAPPING:
return self.TITLE_ORDER_MAPPING[self.title]
else:
return self.TITLE_ORDER_MAPPING[self.UNKNOWN]
return self.TITLE_ORDER_MAPPING[Title.UNKNOWN]

def get_time_in_this_position(self):
"""Returns a timedelta object of total time in this position"""
Expand Down
Loading