Changeset 3e73f9 in indico


Ignore:
Timestamp:
08/24/12 17:03:48 (9 months ago)
Author:
Pedro Ferreira <jose.pedro.ferreira@…>
Branches:
master, ipv6, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, 0da0c1403bae8e51d8229f460181c71b9e6dda72
Children:
334288
Parents:
a3d7d74
git-author:
Alberto Resco Perez <alberto.resco.perez@…> (08/07/12 16:31:27)
git-committer:
Pedro Ferreira <jose.pedro.ferreira@…> (08/24/12 17:03:48)
Message:

[FIX] Show title of presenters and conveners in TT

Location:
indico
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • indico/MaKaC/fossils/conference.py

    re7ad64 r3e73f9  
    8282        """ Conference Participation Family Name """ 
    8383 
     84    def getDirectFullName(self): 
     85        """ Conference Participation Full Name """ 
     86 
     87    getDirectFullName.name = "name" 
     88 
     89 
    8490 
    8591class IConferenceParticipationFossil(IConferenceParticipationMinimalFossil): 
  • indico/MaKaC/fossils/contribution.py

    rbefda7 r3e73f9  
    7878        pass 
    7979 
    80     def getFullNameNoTitle(self): 
     80    def getDirectFullName(self): 
    8181        pass 
    82     getFullNameNoTitle.name = "name" 
     82    getDirectFullName.name = "name" 
    8383 
    8484 
     
    9292        pass 
    9393 
    94     def getFullNameNoTitle(self): 
     94    def getDirectFullName(self): 
    9595        pass 
    96     getFullNameNoTitle.name = "name" 
     96    getDirectFullName.name = "name" 
    9797 
    9898class IContributionParticipationMinimalFossil(IFossil): 
  • indico/MaKaC/webinterface/tpls/ContributionDisplayFull.tpl

    r364fc7 r3e73f9  
    9999            <ul> 
    100100            % for pa in Contribution.getPrimaryAuthorList()[:4]: 
    101                 <li><a href="${getAuthorURL(pa)}">${pa.getDirectFullNameNoTitle()}</a> 
     101                <li><a href="${getAuthorURL(pa)}">${pa.getDirectFullName()}</a> 
    102102                    <span style="font-size:10px">${pa.getAffiliation()}</span> 
    103103            % endfor 
     
    111111            <ul> 
    112112            % for ca in Contribution.getCoAuthorList()[:4]: 
    113                 <li><a href="${getAuthorURL(ca)}">${ca.getDirectFullNameNoTitle()}</a> 
     113                <li><a href="${getAuthorURL(ca)}">${ca.getDirectFullName()}</a> 
    114114                    <span style="font-size:10px">${ca.getAffiliation()}</span> 
    115115            % endfor 
  • indico/htdocs/js/indico/Timetable/Draw.js

    rbefda7 r3e73f9  
    122122                     conveners, 
    123123                     function(conv) { 
    124                          return conv.firstName + ' ' + 
    125                              conv.familyName; 
     124                         return conv.name; 
    126125                     }).join(', '); 
    127126             } else { 
Note: See TracChangeset for help on using the changeset viewer.