Example #1
0
 def get_context_data(self, **kwargs):
     context_data = super(TimeTrialAllBest, self).get_context_data(**kwargs)
     if self.kwargs['season'] == 'current':
         season_start = Home.get_season_start()
         context_data['timetrial_list'] = self.get_timetrial_list(
             start_time__gt=season_start)
     else:
         context_data['timetrial_list'] = self.get_timetrial_list()
     return context_data
Example #2
0
File: views.py Project: TK-IT/kasse
 def get_context_data(self, **kwargs):
     context_data = super(TimeTrialAllBest, self).get_context_data(**kwargs)
     if self.kwargs['season'] == 'current':
         season_start = Home.get_season_start()
         context_data['timetrial_list'] = self.get_timetrial_list(
             start_time__gt=season_start)
     else:
         context_data['timetrial_list'] = self.get_timetrial_list()
     return context_data
Example #3
0
File: urls.py Project: TK-IT/kasse
    Home, Log, Login, Logout, ProfileCreate, ChangePassword, ProfileView,
    ProfileEdit, ProfileEditAdmin, UserCreate, Association, ProfileList,
    ProfileMerge, ContestCreate, AssociationPeriodUpdate,
)
import stopwatch.urls
import iou.urls
import news.urls
from stopwatch.views import TimeTrialStopwatchOffline

urlpatterns = [
    url(r'^admin/', include(admin.site.urls)),
    url(r'^timetrial/', include(stopwatch.urls)),
    url(r'^news/', include(news.urls)),
    url(r'^iou/', include(iou.urls)),

    url(r'^$', Home.as_view(), name='home'),
    url(r'^log/$', Log.as_view(), name='log'),

    url(r'^login/$', Login.as_view(), name='login'),
    url(r'^logout/$', Logout.as_view(), name='logout'),
    url(r'^password/$', ChangePassword.as_view(), name='password'),

    url(r'^newuser/$', UserCreate.as_view(),
        name='newuserprofile'),
    url(r'^newuser/(?P<pk>\d+)/$', UserCreate.as_view(),
        name='newuser'),
    url(r'^profile/$', ProfileList.as_view(),
        name='profile_list'),
    url(r'^profile/(?P<pk>\d+)/$', ProfileView.as_view(),
        name='profile'),
    url(r'^profile/(?P<pk>\d+)/merge/$', ProfileMerge.as_view(),
Example #4
0
    ProfileList,
    ProfileMerge,
    ContestCreate,
    AssociationPeriodUpdate,
)
import stopwatch.urls
import iou.urls
import news.urls
from stopwatch.views import TimeTrialStopwatchOffline

urlpatterns = [
    url(r'^admin/', include(admin.site.urls)),
    url(r'^timetrial/', include(stopwatch.urls)),
    url(r'^news/', include(news.urls)),
    url(r'^iou/', include(iou.urls)),
    url(r'^$', Home.as_view(), name='home'),
    url(r'^log/$', Log.as_view(), name='log'),
    url(r'^login/$', Login.as_view(), name='login'),
    url(r'^logout/$', Logout.as_view(), name='logout'),
    url(r'^password/$', ChangePassword.as_view(), name='password'),
    url(r'^newuser/$', UserCreate.as_view(), name='newuserprofile'),
    url(r'^newuser/(?P<pk>\d+)/$', UserCreate.as_view(), name='newuser'),
    url(r'^profile/$', ProfileList.as_view(), name='profile_list'),
    url(r'^profile/(?P<pk>\d+)/$', ProfileView.as_view(), name='profile'),
    url(r'^profile/(?P<pk>\d+)/merge/$',
        ProfileMerge.as_view(),
        name='profile_merge'),
    url(r'^profile/edit/$', ProfileEdit.as_view(), name='profile_edit'),
    url(r'^profile/edit/(?P<pk>\d+)/$',
        ProfileEditAdmin.as_view(),
        name='profile_edit_admin'),