Changeset c7307f in indico
- Timestamp:
- 02/24/11 15:25:45 (2 years ago)
- 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:
- 7d30d5
- Parents:
- 5f7a6d
- git-author:
- Pedro Ferreira <jose.pedro.ferreira@…> (02/24/11 15:24:37)
- git-committer:
- Pedro Ferreira <jose.pedro.ferreira@…> (02/24/11 15:25:45)
- Location:
- indico/MaKaC/webinterface/tpls
- Files:
-
- 4 edited
-
ConfModifEPayment.tpl (modified) (3 diffs)
-
ConfModifEPaymentDataModification.tpl (modified) (2 diffs)
-
ConfModifRegForm.tpl (modified) (2 diffs)
-
ConfModifRegFormDataModification.tpl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
indico/MaKaC/webinterface/tpls/ConfModifEPayment.tpl
r5f7a6d rc7307f 50 50 <tr> 51 51 <td class="dataCaptionTD"><span class="dataCaptionFormat"><%= _("Payment Summary Email Message")%></span></td> 52 <td bgcolor="white" width="100% %" class="blacktext">53 <textarea rows="6" cols="60" disabled="disabled"> %(receiptMsgPayment)s</textarea>52 <td bgcolor="white" width="100%" class="blacktext"> 53 <textarea rows="6" cols="60" disabled="disabled"><%= receiptMsgPayment %></textarea> 54 54 <br/> 55 55 </td> … … 58 58 <tr> 59 59 <td class="dataCaptionTD"><span class="dataCaptionFormat"><%= _("Success Email Message")%></span></td> 60 <td bgcolor="white" width="100% %" class="blacktext">61 <textarea rows="6" cols="60" disabled="disabled"> %(successMsgPayment)s</textarea>60 <td bgcolor="white" width="100%" class="blacktext"> 61 <textarea rows="6" cols="60" disabled="disabled"><%= successMsgPayment %></textarea> 62 62 <br/> 63 63 </td> … … 87 87 </table> 88 88 <br> 89 -
indico/MaKaC/webinterface/tpls/ConfModifEPaymentDataModification.tpl
r5f7a6d rc7307f 31 31 <td nowrap class="dataCaptionTD"><span class="titleCellFormat"><%= _("Payment Summary Email Message")%></span></td> 32 32 <td align="left"> 33 <%=_("Currently this email is")%> <strong> %(receiptMsgPaymentEnabled)s</strong> (<%=_("You can change this in the")%> <a href="%(dataModificationURL)s"><%=_("registration form setup")%></a>)<br>34 <textarea name="receiptMsgPayment" rows="6" cols="60"> %(receiptMsgPayment)s</textarea>33 <%=_("Currently this email is")%> <strong><%= receiptMsgPaymentEnabled %></strong> (<%=_("You can change this in the")%> <a href="<%= dataModificationURL %>"><%=_("registration form setup")%></a>)<br> 34 <textarea name="receiptMsgPayment" rows="6" cols="60"><%= receiptMsgPayment %></textarea> 35 35 </td> 36 36 </tr> … … 38 38 <td nowrap class="dataCaptionTD"><span class="titleCellFormat"><%= _("Success Email Message")%></span></td> 39 39 <td align="left"> 40 <%=_("Currently this email is")%> <strong> %(successMsgPaymentEnabled)s</strong> (<%=_("You can change this in the")%> <a href="%(dataModificationURL)s"><%=_("registration form setup")%></a>)<br>41 <textarea name="successMsgPayment" rows="6" cols="60"> %(successMsgPayment)s</textarea>40 <%=_("Currently this email is")%> <strong><%= successMsgPaymentEnabled %></strong> (<%=_("You can change this in the")%> <a href="<%= dataModificationURL %>"><%=_("registration form setup")%></a>)<br> 41 <textarea name="successMsgPayment" rows="6" cols="60"><%= successMsgPayment %></textarea> 42 42 </td> 43 43 </tr> -
indico/MaKaC/webinterface/tpls/ConfModifRegForm.tpl
r5f7a6d rc7307f 68 68 <td class="dataCaptionTD"><span class="dataCaptionFormat"> <%= _("Email notification sender address")%></span></td> 69 69 <td class="blacktext"> 70 %(notificationSender)s70 <%= notificationSender %> 71 71 </td> 72 72 </tr> … … 79 79 <tr> 80 80 <td class="dataCaptionTD"><span class="dataCaptionFormat"> <%= _("Email registrant")%></span></td> 81 <td bgcolor="white" width="100% %">81 <td bgcolor="white" width="100%"> 82 82 <% if activated: %> 83 83 <table> 84 84 <tr> 85 85 <td align="right"><strong><%= _("After registration")%></strong>:</td> 86 <td> %(sendRegEmail)s</td>86 <td><%= sendRegEmail %></td> 87 87 </tr> 88 88 <tr> 89 89 <td align="right"><strong><%= _("With a payment summary")%></strong>:</td> 90 <td> %(sendReceiptEmail)s</td>90 <td><%= sendReceiptEmail %></td> 91 91 </tr> 92 92 <tr> 93 93 <td align="right"><strong><%= _("After successful payment")%></strong>:</td> 94 <td> %(sendPaidEmail)s</td>94 <td><%= sendPaidEmail %></td> 95 95 </tr> 96 96 </table> -
indico/MaKaC/webinterface/tpls/ConfModifRegFormDataModification.tpl
r5f7a6d rc7307f 87 87 <tr> 88 88 <td nowrap class="titleCellTD"><span class="titleCellFormat"> <%= _("Email notification sender address")%></span></td> 89 <td bgcolor="white" width="100% %"><input type="text" size="50" name="notificationSender" value="<%= notificationSender %>"></td>89 <td bgcolor="white" width="100%"><input type="text" size="50" name="notificationSender" value="<%= notificationSender %>"></td> 90 90 </tr> 91 91 <tr> … … 94 94 <span class="smallLabel"><%= _("(on new registrations)")%></span> 95 95 </td> 96 <td bgcolor="white" width="100% %">96 <td bgcolor="white" width="100%"> 97 97 <table align="left"> 98 98 <tr> … … 117 117 <tr> 118 118 <td nowrap class="titleCellTD"><span class="titleCellFormat"> <%= _("Email registrant...")%></span></td> 119 <td bgcolor="white" width="100% %">120 <input type="checkbox" size="50" name="sendRegEmail" id="sendRegEmail" %(sendRegEmail)s>119 <td bgcolor="white" width="100%"> 120 <input type="checkbox" size="50" name="sendRegEmail" id="sendRegEmail" <%= sendRegEmail %>> 121 121 <label for="sendRegEmail"><strong><%= _("...after registration")%></strong></label> 122 122 <br> 123 123 124 <input type="checkbox" size="50" name="sendReceiptEmail" id="sendReceiptEmail" %(sendReceiptEmail)s>124 <input type="checkbox" size="50" name="sendReceiptEmail" id="sendReceiptEmail" <%= sendReceiptEmail %>> 125 125 <label for="sendReceiptEmail"><strong><%= _("...with a payment summary")%></strong></label> 126 126 <br> 127 127 128 <input type="checkbox" size="50" name="sendPaidEmail" id="sendPaidEmail" %(sendPaidEmail)s>128 <input type="checkbox" size="50" name="sendPaidEmail" id="sendPaidEmail" <%= sendPaidEmail %>> 129 129 <label for="sendPaidEmail"><strong><%= _("...after successful payment")%></strong></label> 130 130 </td>
Note: See TracChangeset
for help on using the changeset viewer.
