Changeset 1067 for WAeUP_SRP/trunk/skins/waeup_default
- Timestamp:
- 15 Dec 2006, 17:43:18 (18 years ago)
- Location:
- WAeUP_SRP/trunk/skins/waeup_default
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_default/online_payment.pt
r1047 r1067 5 5 action="http://www.wemaonlinepayments.biz/payment.aspx" 6 6 id="Form1"> 7 <div>8 <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJLTkzNjMzMjc5D2QWAgIBD2QWAgIZDw9kFgIeB29uY2xpY2sFbGphdmFzY3JpcHQ6cmV0dXJuIGZuUG9zdEJhY2tCZXR3ZWVuUGFnZXMoJ2RvY3VtZW50LkZvcm0xJywnaHR0cDovL3d3dy53ZW1hb25saW5lcGF5bWVudHMuYml6L3BheW1lbnQuYXNweCcpO2RkeyluJQkYEPTlhLbbxO4d41Wpexo=" />9 </div>10 7 <table> 11 8 <tr> 12 9 <td >Site ID</td> 13 10 <td >Code that represents the portal within the payment gateway. This is assigned to the portal by Wema Bank</td> 14 <td><input name="x_SiteID" type="text" id="x_SiteID" size="33" value="8000" /></td> 11 <td><input name="x_SiteID" 12 type="text" 13 id="x_SiteID" 14 size="33" 15 value="8000" /> 16 </td> 15 17 </tr> 16 18 <tr> … … 34 36 type="text" 35 37 id="x_PayDesc" 36 value=" School Fees for 2006/2007 Session"38 value="School Fees for 2006/2007 Session" 37 39 /> 38 40 </td> … … 48 50 type="text" 49 51 id="x_Billto" 50 value=" John Pedro" />52 value="John Pedro" /> 51 53 </td> 52 54 </tr> … … 59 61 <input name="x_Shipto" type="text" 60 62 id="x_Shipto" 61 value=" 63 value="Recipient Address" 62 64 /> 63 65 </td> … … 70 72 type="text" 71 73 id="x_PayerID" 72 style="WIDTH: 268px; HEIGHT: 22px" 73 value=" CS960307087 " 74 value="CS960307087 " 74 75 /> 75 76 </td> … … 81 82 type="text" 82 83 id="x_PayerNames" 83 value=" 84 value="John Pedro" 84 85 /> 85 86 </td> … … 91 92 <input name="x_PayerEmail" 92 93 type="text" id="x_PayerEmail" 93 value=" 94 value="abc@yahoo.co.uk" /></td> 94 95 </tr> 95 96 <tr> … … 111 112 type="text" 112 113 id="x_amt" 113 value=" 114 value="7500" 114 115 /> 115 116 </td> … … 135 136 type="text" 136 137 id="x_Redirect_url" 137 style="WIDTH: 264px; HEIGHT: 22px" size="38"138 138 value="http://uniben.waeup.org/callback" 139 139 /> … … 150 150 </tr> 151 151 </table> 152 <div>153 <input type="hidden"154 name="__EVENTVALIDATION"155 id="__EVENTVALIDATION"156 value="/wEWDgKlt8BZApCJ0bMKApmj0YAKAoHTk+8HAsSt4qICArKX2q0FAvne2eQLAoiz43kC8Nfy2gkCl5uJ6AsC39WuxgoCyoCWrgMCj8y3rQgCya6ThwXqaVrYsmCB2RtXWJb/sBMQi/Vhfw=="157 />158 </div>159 152 </form> 160 153 </metal:main> -
WAeUP_SRP/trunk/skins/waeup_default/portlet_waeup_status_display.pt
r888 r1067 2 2 <tal:block define="item nocall:options/context_obj; 3 3 item_info item/getContentInfo; 4 student_info item/getStudentInfo; 5 base_url python: request.get('cpsskins_base_url'); 6 states_not_shown python: ('work',);"> 7 8 9 <span tal:condition="python:path('item_info/review_state') not in states_not_shown "> 10 11 <span tal:condition="student_info"> 12 <span tal:content="student_info/review_state" /> 13 <span tal:condition="python:item_info['review_state']!=student_info['review_state']"> 4 review_state item/getStudentReviewState;" 5 > 6 <span tal:condition="review_state"> 7 <span tal:content="review_state" /> 8 <span tal:condition="python:item_info['review_state']!= review_state"> 14 9 / <span tal:content="item_info/review_state" /> 15 10 </span> 16 11 </ span> 17 18 <span tal:condition="not: student_info"> 12 <span tal:condition="not: review_state"> 19 13 <span tal:content="item_info/review_state" /> 20 14 </span> 21 22 </span>23 15 </tal:block> 24 16 </metal:block>
Note: See TracChangeset for help on using the changeset viewer.