Changeset c7307f in indico


Ignore:
Timestamp:
02/24/11 15:25:45 (2 years ago)
Author:
Pedro Ferreira <jose.pedro.ferreira@…>
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)
Message:

[FIX] Missing template substitutions

Location:
indico/MaKaC/webinterface/tpls
Files:
4 edited

Legend:

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

    r5f7a6d rc7307f  
    5050    <tr> 
    5151        <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> 
    5454           <br/> 
    5555        </td> 
     
    5858    <tr> 
    5959        <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> 
    6262           <br/> 
    6363        </td> 
     
    8787</table> 
    8888<br> 
    89  
  • indico/MaKaC/webinterface/tpls/ConfModifEPaymentDataModification.tpl

    r5f7a6d rc7307f  
    3131            <td nowrap class="dataCaptionTD"><span class="titleCellFormat"><%= _("Payment Summary Email Message")%></span></td> 
    3232            <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> 
    3535            </td> 
    3636        </tr> 
     
    3838            <td nowrap class="dataCaptionTD"><span class="titleCellFormat"><%= _("Success Email Message")%></span></td> 
    3939            <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> 
    4242            </td> 
    4343        </tr> 
  • indico/MaKaC/webinterface/tpls/ConfModifRegForm.tpl

    r5f7a6d rc7307f  
    6868    <td class="dataCaptionTD"><span class="dataCaptionFormat"> <%= _("Email notification sender address")%></span></td> 
    6969    <td class="blacktext"> 
    70       %(notificationSender)s 
     70      <%= notificationSender %> 
    7171    </td> 
    7272  </tr> 
     
    7979  <tr> 
    8080    <td class="dataCaptionTD"><span class="dataCaptionFormat"> <%= _("Email registrant")%></span></td> 
    81     <td bgcolor="white" width="100%%"> 
     81    <td bgcolor="white" width="100%"> 
    8282      <% if activated: %> 
    8383      <table> 
    8484        <tr> 
    8585          <td align="right"><strong><%= _("After registration")%></strong>:</td> 
    86           <td>%(sendRegEmail)s</td> 
     86          <td><%= sendRegEmail %></td> 
    8787        </tr> 
    8888        <tr> 
    8989          <td align="right"><strong><%= _("With a payment summary")%></strong>:</td> 
    90           <td>%(sendReceiptEmail)s</td> 
     90          <td><%= sendReceiptEmail %></td> 
    9191        </tr> 
    9292        <tr> 
    9393          <td align="right"><strong><%= _("After successful payment")%></strong>:</td> 
    94           <td>%(sendPaidEmail)s</td> 
     94          <td><%= sendPaidEmail %></td> 
    9595        </tr> 
    9696      </table> 
  • indico/MaKaC/webinterface/tpls/ConfModifRegFormDataModification.tpl

    r5f7a6d rc7307f  
    8787    <tr> 
    8888      <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> 
    9090    </tr> 
    9191    <tr> 
     
    9494        <span class="smallLabel"><%= _("(on new registrations)")%></span> 
    9595      </td> 
    96       <td bgcolor="white" width="100%%"> 
     96      <td bgcolor="white" width="100%"> 
    9797        <table align="left"> 
    9898        <tr> 
     
    117117    <tr> 
    118118      <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 %>> 
    121121        <label for="sendRegEmail"><strong><%= _("...after registration")%></strong></label> 
    122122        <br> 
    123123 
    124         <input type="checkbox" size="50" name="sendReceiptEmail" id="sendReceiptEmail" %(sendReceiptEmail)s> 
     124        <input type="checkbox" size="50" name="sendReceiptEmail" id="sendReceiptEmail" <%= sendReceiptEmail %>> 
    125125        <label for="sendReceiptEmail"><strong><%= _("...with a payment summary")%></strong></label> 
    126126        <br> 
    127127 
    128         <input type="checkbox" size="50" name="sendPaidEmail" id="sendPaidEmail" %(sendPaidEmail)s> 
     128        <input type="checkbox" size="50" name="sendPaidEmail" id="sendPaidEmail" <%= sendPaidEmail %>> 
    129129        <label for="sendPaidEmail"><strong><%= _("...after successful payment")%></strong></label> 
    130130      </td> 
Note: See TracChangeset for help on using the changeset viewer.