8 lines
134 B
Python
8 lines
134 B
Python
|
from .models import Contest
|
||
|
|
||
|
|
||
|
def current_contest(self):
|
||
|
return {
|
||
|
'current_contest': Contest.get_current_contest(),
|
||
|
}
|