source: indico/indico/MaKaC/webinterface/tpls/AbstractDisplay.tpl @ 988cfe

hello-world-walkthroughipv6v0.98-seriesv0.98.2v0.98.3v0.98b2v0.99v1.0v1.1
Last change on this file since 988cfe was 988cfe, checked in by Jose Benito <jose.benito.gonzalez@…>, 2 years ago

[IMP] Replaced Indico templates with Mako

  • conversion script
  • fixed some simple mistakes in templates
  • replaced all tabs to 4 spaces
  • refactored some old code in TemplateExec?
  • fixes #676
  • Property mode set to 100644
File size: 9.2 KB
Line 
1
2<table width="100%" align="center">
3    <tr>
4        <td align="center">
5            <table align="center">
6                <tr>
7                    <form action=${ modifyURL } method="POST">
8                    <td>
9                        <input type="submit" class="btn" value="${ _("modify")}" ${ btnModifyDisabled }>
10                    </td>
11                    </form>
12                    <form action=${ withdrawURL } method="POST">
13                    <td>
14                        <input type="submit" class="btn" value="${ _("withdraw")}" ${ btnWithdrawDisabled }>
15                    </td>
16                    </form>
17                    ${ btnRecover }
18                </tr>
19            </table>
20        </td>
21    </tr>
22    <tr>
23        <td>
24            <table width="95%" style="border:1px solid #777777;" cellspacing="1" align="center">
25             <tr>
26                    <td bgcolor="white">
27                        <table width="90%" align="center">
28                            <tr>
29                                <td align="center">
30                                    <font size="+1" color="black"><b>${ title }</b></font>
31                                </td>
32                            </tr>
33                <tr><td>&nbsp;</td></tr>
34                            <tr>
35                                <td><br></td>
36                            </tr>
37                            <tr>
38                                <td>
39                                    <table width="90%" align="center">
40                                        <tr>
41                                            <td>
42                                                <table width="100%" cellspacing="0">
43                                                    <tr>
44                                                        <td nowrap class="displayField"><b> ${ _("Abstract ID")} :</b></td>
45                                                        <td width="100%">${ abstractId }</td>
46                                                    </tr>
47                                                </table>
48                                            </td>
49                                        </tr>
50           ${ additionalFields }
51                                        <tr>
52                                            <td>
53                                                <table width="100%" cellspacing="0">
54                                                    <tr>
55                                                        <td nowrap class="displayField" valign="top"><b> ${ _("Primary authors")} :</b></td>
56                                                        <td width="100%">${ primary_authors }</td>
57                                                    </tr>
58                                                </table>
59                                            </td>
60                                        </tr>
61                                        <tr>
62                                            <td>
63                                                <table width="100%" cellspacing="0">
64                                                    <tr>
65                                                        <td nowrap class="displayField" valign="top"><b> ${ _("Co-Authors")} :</b></td>
66                                                        <td width="100%">${ authors }</td>
67                                                    </tr>
68                                                </table>
69                                            </td>
70                                        </tr>
71                                        <tr>
72                                            <td><table width="100%" cellspacing="0">
73                                                    <tr>
74                                                        <td nowrap class="displayField" valign="top"><b> ${ _("Presenters")} :</b></td>
75                                                        <td width="100%">${ speakers }</td>
76                                                    </tr>
77                                                </table>
78                                            </td>
79                                        </tr>
80                                        <tr>
81                                            <td>
82                                                <table width="100%" cellspacing="0">
83                                                    <tr>
84                                                        <td nowrap class="displayField" valign="top"><b> ${ _("Track classification")} :</b></td>
85                                                        <td width="100%">${ tracks }</td>
86                                                    </tr>
87                                                </table>
88                                            </td>
89                                        </tr>
90                                        ${ contribType }
91                                        <tr>
92                                            <td>
93                                                <table cellspacing="0">
94                                                    <tr>
95                                                        <td nowrap class="displayField" valign="top"><b> ${ _("Submitted by")} :</b></td>
96                                                        <td>${ submitter }</td>
97                                                    </tr>
98                                                </table>
99                                            </td>
100                                        </tr>
101                                        <tr>
102                                            <td>
103                                                <table width="100%" cellspacing="0">
104                                                    <tr>
105                                                        <td nowrap class="displayField" valign="top"><b> ${ _("Submitted on")} :</b></td>
106                                                        <td width="100%">${ submissionDate }</td>
107                                                    </tr>
108                                                </table>
109                                            </td>
110                                        </tr>
111                                        <tr>
112                                            <td>
113                                                <table width="100%" cellspacing="0">
114                                                    <tr>
115                                                        <td nowrap class="displayField" valign="top"><b> ${ _("Last modified on")} :</b></td>
116                                                        <td width="100%">${ modificationDate }</td>
117                                                    </tr>
118                                                </table>
119                                            </td>
120                                        </tr>
121                                        <tr>
122                                            <td>
123                                                <table>
124                                                    <tr>
125                                                        <td nowrap class="displayField" valign="top"><b> ${ _("Status")} :</b></td>
126                                                        <td>${ status }</td>
127                                                    </tr>
128                                                </table>
129                                            </td>
130                                        </tr>
131                                        <tr>
132                                            <td>
133                                                <table cellspacing="0">
134                                                    <tr>
135                                                        <td nowrap class="displayField" valign="top"><b> ${ _("Comments")} :</b></td>
136                                                    </tr>
137                                                    <tr>
138                                                        <td width="30"></td>
139                                                        <td><pre>${ comments }</pre></td>
140                                                    </tr>
141                                                </table>
142                                            </td>
143                                        </tr>
144                                    </table>
145                                </td>
146                            </tr>
147                        </table>
148                    </td>
149                </tr>
150            </table>
151        </td>
152    </tr>
153    <tr>
154        <td align="center">
155            <table align="center">
156                <tr>
157                    <form action=${ modifyURL } method="POST">
158                    <td>
159                        <input type="submit" class="btn" value="${ _("modify")}" ${ btnModifyDisabled }>
160                    </td>
161                    </form>
162                    <form action=${ withdrawURL } method="POST">
163                    <td>
164                        <input type="submit" class="btn" value="${ _("withdraw")}" ${ btnWithdrawDisabled }>
165                    </td>
166                    </form>
167                    ${ btnRecover }
168                </tr>
169            </table>
170        </td>
171    </tr>
172</table>
173<br>
Note: See TracBrowser for help on using the repository browser.