Ignore:
Timestamp:
08/05/10 19:33:08 (3 years ago)
Author:
Jose Benito <jose.benito.gonzalez@…>
Branches:
master, burotel, hello-world-walkthrough, ipv6, new-webex, v0.97-series, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, b8c30da8ebdbdcbd675a873997cc3e95f567de49, 4287315ec967a3da168d83963c14001db8487d53
Children:
e77daf
Parents:
da025d
git-author:
Leszek Syroka <leszek.marek.syroka@…> (06/30/10 16:57:09)
git-committer:
Jose Benito <jose.benito.gonzalez@…> (08/05/10 19:33:08)
Message:

[FIX] Poster session - contribution improvements

  • duration when adding a contribution is hidden
  • duration when displaying the list of contributions for a poster session (from both, display and management area) is hidden
  • "Add new > contribution" is now "Add poster"
  • fix#466
File:
1 edited

Legend:

Unmodified
Added
Removed
  • indico/MaKaC/webinterface/pages/conferences.py

    r639df4 rafd571  
    73767376        title = """<a href=%s>%s</a>"""%( quoteattr( str( urlHandlers.UHContributionModification.getURL( contrib ) ) ), self.htmlText( contrib.getTitle() )) 
    73777377        strdur = "" 
    7378         if contrib.getDuration() is not None and contrib.getDuration().seconds != 0: 
     7378        if contrib.getSession() and contrib.getSession()._ttType == 'poster': 
     7379            strdur = 'poster' 
     7380        elif contrib.getDuration() is not None and contrib.getDuration().seconds != 0: 
    73797381            strdur = (datetime(1900,1,1)+ contrib.getDuration()).strftime("%Hh%M'") 
    73807382            dur = contrib.getDuration() 
Note: See TracChangeset for help on using the changeset viewer.