Changeset 0a4b4c in indico
- Timestamp:
- 05/11/10 19:53:12 (3 years ago)
- 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, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, 0da0c1403bae8e51d8229f460181c71b9e6dda72
- Children:
- 9d6eb3
- Parents:
- 48a9df
- git-author:
- Ian Rolewicz <ian.rolewicz@…> (04/28/10 09:03:39)
- git-committer:
- Jose Benito <jose.benito.gonzalez@…> (05/11/10 19:53:12)
- Location:
- indico
- Files:
-
- 4 edited
-
MaKaC/webinterface/pages/conferences.py (modified) (4 diffs)
-
MaKaC/webinterface/tpls/AbstractsParticipantList.tpl (modified) (6 diffs)
-
htdocs/abstractsManagment.py (modified) (1 diff)
-
htdocs/css/Default.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
indico/MaKaC/webinterface/pages/conferences.py
r8b64ae r0a4b4c 7304 7304 7305 7305 7306 class WPConfParticipantList( WPConf erenceBase):7306 class WPConfParticipantList( WPConfAbstractList ): 7307 7307 7308 7308 def __init__(self, rh, conf, emailList, displayedGroups, abstracts): 7309 WPConf erenceBase.__init__(self, rh, conf)7309 WPConfAbstractList.__init__(self, rh, conf, None) 7310 7310 self._emailList = emailList 7311 7311 self._displayedGroups = displayedGroups 7312 7312 self._abstracts = abstracts 7313 7313 7314 def _getBody( self, params ): 7315 WPConferenceBase._getBody(self, params) 7314 def _getTabContent( self, params ): 7316 7315 wc = WAbstractsParticipantList(self._conf, self._emailList, self._displayedGroups, self._abstracts) 7317 7316 return wc.getHTML() … … 8474 8473 else: 8475 8474 color="white" 8476 participant = "%s <%s>"%(subm.getFullName(), subm.getEmail())8475 participant = "%s %s %s <%s>"%(subm.getTitle(), subm.getFirstName(), subm.getFamilyName().upper(), subm.getEmail()) 8477 8476 l.append("<tr>\ 8478 8477 <td colspan=\"2\" nowrap bgcolor=\"%s\" class=\"blacktext\">\ … … 8598 8597 else: 8599 8598 color="white" 8600 participant = "%s <%s>"%(pAuth.getFullName(), pAuth.getEmail())8599 participant = "%s %s %s <%s>"%(pAuth.getTitle(), pAuth.getFirstName(), pAuth.getFamilyName().upper(), pAuth.getEmail()) 8601 8600 l.append("<tr><td colspan=\"2\" nowrap bgcolor=\"%s\" \ 8602 8601 class=\"blacktext\"> %s</td></tr>"%(color, self.htmlText(participant))) … … 8623 8622 cAuthEmail = cAuth.getEmail() 8624 8623 if cAuthEmail.strip() == "": 8625 participant = "%s "%cAuth.getFullName()8624 participant = "%s %s %s"%(cAuth.getTitle(), cAuth.getFirstName(), cAuth.getFamilyName().upper()) 8626 8625 else: 8627 participant = "%s <%s>"%(cAuth.getFullName(), cAuthEmail)8626 participant = "%s %s %s <%s>"%(cAuth.getTitle(), cAuth.getFirstName(), cAuth.getFamilyName().upper(), cAuthEmail) 8628 8627 l.append("<tr><td colspan=\"2\" nowrap bgcolor=\"%s\" class=\"blacktext\">\ 8629 8628 %s</td></tr>"%(color, self.htmlText(participant))) -
indico/MaKaC/webinterface/tpls/AbstractsParticipantList.tpl
r9033fd r0a4b4c 1 1 2 <table align="center" width=" 75%%">2 <table align="center" width="100%%"> 3 3 <tr> 4 <td class=" formTitle"> <%= _("List of participants")%></td>4 <td class="groupTitle"> <%= _("List of participants")%></td> 5 5 </tr> 6 6 <tr> 7 7 <td> 8 8 <br> 9 <table width="100%%" align="center" border="0" style="border-left: 1px solid #777777">9 <table width="100%%" align="center" border="0"> 10 10 <tr> 11 <td colspan="2" class="group Title" width="100%%"> <%= _("Submitters")%></td>11 <td colspan="2" class="groupSubTitle" width="100%%"> <%= _("Submitters")%></td> 12 12 </tr> 13 13 <tr> … … 19 19 <td align="right" valign="top"> 20 20 <form action="mailto:%(submitterEmails)s" method="POST" enctype="text/plain"> 21 <input type="submit" class="btn" value="<%= _(" send")%>">21 <input type="submit" class="btn" value="<%= _("compose email")%>"> 22 22 </form> 23 23 %(showSubmitters)s … … 30 30 <td> 31 31 <br> 32 <table width="100%%" align="center" border="0" style="border-left: 1px solid #777777">32 <table width="100%%" align="center" border="0"> 33 33 <tr> 34 <td colspan="2" class="group Title" width="100%%"> <%= _("Primary authors")%></td>34 <td colspan="2" class="groupSubTitle" width="100%%"> <%= _("Primary authors")%></td> 35 35 </tr> 36 36 <tr> … … 42 42 <td align="right" valign="top"> 43 43 <form action="mailto:%(primaryAuthorEmails)s" method="POST" enctype="text/plain"> 44 <input type="submit" class="btn" value="<%= _(" send")%>">44 <input type="submit" class="btn" value="<%= _("compose email")%>"> 45 45 </form> 46 46 %(showPrimaryAuthors)s … … 53 53 <td> 54 54 <br> 55 <table width="100%%" align="center" border="0" style="border-left: 1px solid #777777">55 <table width="100%%" align="center" border="0"> 56 56 <tr> 57 <td colspan="2" class="group Title" width="100%%"> <%= _("Co-Authors")%></td>57 <td colspan="2" class="groupSubTitle" width="100%%"> <%= _("Co-Authors")%></td> 58 58 </tr> 59 59 <tr> … … 65 65 <td align="right" valign="top"> 66 66 <form action="mailto:%(coAuthorEmails)s" method="POST" enctype="text/plain"> 67 <input type="submit" class="btn" value="<%= _(" send")%>">67 <input type="submit" class="btn" value="<%= _("compose email")%>"> 68 68 </form> 69 69 %(showCoAuthors)s -
indico/htdocs/abstractsManagment.py
r281d39 r0a4b4c 30 30 def newAbstract( req, **params ): 31 31 return conferenceModif.RHNewAbstract( req ).process( params ) 32 33 def participantList( req, **params ): 34 return conferenceModif.RHAbstractsParticipantList( req ).process( params ) -
indico/htdocs/css/Default.css
r4efd00 r0a4b4c 898 898 } 899 899 900 .groupTitle, .groupTitleNoBorder {900 .groupTitle, .groupTitleNoBorder, .groupSubTitle { 901 901 font-family: "Times New Roman", Verdana, Arial; 902 902 font-size: 24px; … … 910 910 .groupTitleNoBorder { 911 911 border-bottom: none; 912 } 913 914 .groupSubTitle { 915 font-size: 20px; 912 916 } 913 917
Note: See TracChangeset
for help on using the changeset viewer.
