Skip to content

Commit e85b487

Browse files
authored
Merge pull request #1249 from makeabilitylab/1112-update-view-project-people-page
Significantly updated this internal page with a frontend
2 parents 8d49ef8 + 115b17a commit e85b487

File tree

5 files changed

+1668
-75
lines changed

5 files changed

+1668
-75
lines changed

makeabilitylab/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@
7272
ALLOWED_HOSTS = ['*']
7373

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

website/models/position.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def get_title_index(self):
129129
if self.title in self.TITLE_ORDER_MAPPING:
130130
return self.TITLE_ORDER_MAPPING[self.title]
131131
else:
132-
return self.TITLE_ORDER_MAPPING[self.UNKNOWN]
132+
return self.TITLE_ORDER_MAPPING[Title.UNKNOWN]
133133

134134
def get_time_in_this_position(self):
135135
"""Returns a timedelta object of total time in this position"""

0 commit comments

Comments
 (0)