Show More
Commit Description:
fixed announcement refresh bug when initially there was no announcement
Commit Description:
fixed announcement refresh bug when initially there was no announcement
File last commit:
Show/Diff file:
Action:
app/views/main/list.html.haml | 37 lines | 881 B | text/x-haml | HamlLexer |
- content_for :head do
= javascript_include_tag :defaults
= javascript_include_tag 'announcement_refresh.js'
= user_title_bar(@user)
.announcementbox{:style => (@announcements.length==0 ? "display:none" : "")}
%span{:class => 'title'}
Announcements
#announcementbox-body
= render :partial => 'announcement', :collection => @announcements
- if Configuration.show_submitbox_to?(@user)
.submitbox
= error_messages_for 'submission'
= render :partial => 'submission_box'
%hr/
- if (Configuration.contest_mode?) and (@user.site!=nil) and (@user.site.started!=true)
%p=t 'main.start_soon'
- if Configuration.show_tasks_to?(@user)
%table.info
%tr.info-head
%th
%th Tasks
%th # of sub(s)
%th Results
= render :partial => 'problem', :collection => @problems
%hr/
:javascript
Announcement.registerRefreshEventTimer();