Changeset d358a3 in indico


Ignore:
Timestamp:
10/04/10 17:17:46 (3 years ago)
Author:
Jose Benito <jose.benito.gonzalez@…>
Branches:
master, burotel, hello-world-walkthrough, ipv6, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, 0da0c1403bae8e51d8229f460181c71b9e6dda72
Children:
e725de
Parents:
664658
git-author:
csvetelina.angelova@…> (08/25/09 11:28:05)
git-committer:
Jose Benito <jose.benito.gonzalez@…> (10/04/10 17:17:46)
Message:

[IMPROVEMENT] - Reviewing History layout fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • indico/MaKaC/webinterface/tpls/ContributionReviewingHistory.tpl

    rc5b4e0 rd358a3  
    77 
    88    <% if review.getRefereeJudgement().isSubmitted(): %> 
    9         <table width="90%%" align="center" border="0"> 
     9        <table width="90%%" align="center" border="0" style="padding-bottom: 10px;"> 
     10                    <tr> 
     11                        <td colspan="3" class="groupTitle" style="padding-top:20px;"><%= _("Judgement details")%></td> 
     12                    </tr> 
     13                    <tr> 
     14                    <td nowrap class="titleCellFormat" style="border-right:5px solid #FFFFFF;border-left:5px solid #FFFFFF;border-bottom: 1px solid #BBBBBB; padding-top: 5px; padding-bottom: 5px;"> 
     15                    <span class="titleCellFormat"><%= _("Judgement version")%></span> 
     16            </td> 
     17            <td nowrap class="titleCellFormat" style="border-right:5px solid #FFFFFF;border-left:5px solid #FFFFFF;border-bottom: 1px solid #BBBBBB; padding-top: 5px; padding-bottom: 5px;"> 
     18                    <span class="titleCellFormat"><%= _("Type")%></span> 
     19            </td> 
     20            <td nowrap class="titleCellFormat" style="border-right:5px solid #FFFFFF;border-left:5px solid #FFFFFF;border-bottom: 1px solid #BBBBBB; padding-top: 5px; padding-bottom: 5px;"> 
     21                    <span class="titleCellFormat"><%= _("Material")%></span> 
     22            </td> 
     23            </tr> 
    1024            <tr> 
    11                 <td align="left" colspan="2"> 
     25            <% for m in review.getMaterials(): %> 
     26                <td> 
    1227                    <span style="border-right:5px solid #FFFFFF;border-left:5px solid #FFFFFF;"> 
    13                         <%= _("Review")%> <%= review.getVersion() %> 
     28                        <%= _("Review")%>: <%= review.getVersion() %> 
    1429                    </span> 
    1530                </td> 
    16             </tr> 
    17             <% for m in review.getMaterials(): %> 
    18             <tr> 
    1931                <td nowrap class="titleCellFormat" style="border-right:5px solid #FFFFFF;"> 
    2032                    <span style="border-right:5px solid #FFFFFF;border-left:5px solid #FFFFFF;"> 
    2133                        <%= m.getTitle() %> 
    2234                    </span> 
    23                 </td> 
     35                </td>    
    2436                <% for res in m.getResourceList(): %> 
    25                 <td align="left"> 
     37                <td> 
    2638                    <span style="border-right:5px solid #FFFFFF;border-left:5px solid #FFFFFF;"> 
    2739                    <% if isinstance(res, LocalFile): %> 
     
    3547                    </span> 
    3648                </td> 
    37                 <td width="100%%"></td> 
    3849                <% end %> 
    3950            </tr> 
    4051            <% end %> 
    4152        </table> 
    42          
    4353        <% includeTpl ('ContributionReviewingDisplay', 
    4454                        Editing = review.getEditorJudgement(), AdviceList = review.getReviewerJudgements(), Review = review, 
    4555                        ConferenceChoice = ConferenceChoice) %> 
    46                          
    4756        <br><br><br> 
    4857    <% end %> 
    49  
    5058<% end %> 
Note: See TracChangeset for help on using the changeset viewer.