Private
Public Access
1
0

Merge branch 'bugfix/somefixes' into develop

This commit is contained in:
Sander Roosendaal
2019-09-02 11:51:51 +02:00
2 changed files with 11 additions and 4 deletions

View File

@@ -3417,10 +3417,15 @@ def workout_edit_view(request,id=0,message="",successmessage=""):
privacy = 'private'
else:
privacy = 'visible'
startdatetime = datetime.datetime.combine(
date,starttime
try:
startdatetime = datetime.datetime.combine(
date,starttime
)
except TypeError:
startdatetime = datetime.datetime.combine(
date,datetime.datetime.min.time()
)
try:
startdatetime = pytz.timezone(thetimezone).localize(

View File

@@ -366,10 +366,12 @@
background: white;
}
/*
nav li.selected {
color: #1c75bc;
background: white;
}
}
*/
.nav-active,
.nav-active a,