Change date format in grades page from YYYY-MM-DD to YYYY/MM/DD
This commit is contained in:
parent
6477ad1f9b
commit
8eab18c91b
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ def parse_grade_value(value):
|
|||
return None
|
||||
|
||||
def format_date(dt):
|
||||
return dt.strftime("%Y-%m-%d")
|
||||
return dt.strftime("%Y/%m/%d")
|
||||
|
||||
def GradesPage(page):
|
||||
grades = fetch_all_grades()
|
||||
|
|
Loading…
Add table
Reference in a new issue