[phpwebapp-commits] CVS: top10/templates/preference_list preference_list.html,1.2.2.1,1.2.2.2
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2004-07-22 14:09:38
|
Update of /cvsroot/phpwebapp/top10/templates/preference_list In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17879/templates/preference_list Modified Files: Tag: maisp preference_list.html Log Message: Index: preference_list.html =================================================================== RCS file: /cvsroot/phpwebapp/top10/templates/preference_list/preference_list.html,v retrieving revision 1.2.2.1 retrieving revision 1.2.2.2 diff -C2 -d -r1.2.2.1 -r1.2.2.2 *** preference_list.html 14 Jan 2004 16:25:59 -0000 1.2.2.1 --- preference_list.html 22 Jul 2004 14:09:29 -0000 1.2.2.2 *************** *** 1,42 **** ! <WebBox ID="preference_list"> <p> User <b>{{username}}</b> <a class="button" href="javascript:change_username()">Change Username</a> ! <If condition="'{{username}}'=='guest'"> Please identify yourself by giving your username. ! </If> </p> ! <Repeat rs="preference_list"> ! <IfEmpty> ! <p>There is no project in the list!</p> ! </IfEmpty> ! <Header> ! <table cellspacing="1" cellpadding="3" bgcolor="#dddddd"> ! </Header> ! <RepeatBody> ! <Var name="bgcolor">({{CurrentRowNr}} % 2 ? "#eeeee6" : "#f8f8ff")</Var> ! <tr bgcolor="{{bgcolor}}"> ! <td width="2%" align="center"> ! <b>{{CurrentRecNr}}.</b> ! </td> ! <td> ! <a href="javascript:proj_details('{{proj_id}}')">{{proj_id}}</a> ! </td> ! <td width="2%" align="right">({{points}}) </td> ! <td>{{proj_name}}</td> ! <td> ! <a class="button" href="javascript:move_up('{{proj_id}}')">Move Up</a> ! <a class="button" href="javascript:remove('{{proj_id}}')">Delete</a> ! </td> ! </tr> ! </RepeatBody> ! <Footer> ! </table> ! </Footer> ! </Repeat> ! <br> <a class="button" href="javascript:save_preferences()">Save Your Preference List</a> ! <hr> ! </WebBox> --- 1,34 ---- ! <webbox id="preference_list"> <p> User <b>{{username}}</b> <a class="button" href="javascript:change_username()">Change Username</a> ! <if condition="'{{username}}'=='guest'"> Please identify yourself by giving your username. ! </if> </p> ! <table cellspacing="1" cellpadding="3" bgcolor="#dddddd"> ! <repeat rs="preference_list"> ! <ifempty><tr><td>There is no project in the list!</td></tr></ifempty> ! <var name="bgcolor">({{CurrentRowNr}} % 2 ? "#eeeee6" : "#f8f8ff")</var> ! <tr bgcolor="{{bgcolor}}"> ! <td width="2%" align="center"> ! <b>{{CurrentRecNr}}.</b> ! </td> ! <td> ! <a href="javascript:proj_details('{{proj_id}}')">{{proj_id}}</a> ! </td> ! <td width="2%" align="right">({{points}}) </td> ! <td>{{proj_name}}</td> ! <td> ! <a class="button" href="javascript:move_up('{{proj_id}}')">Move Up</a> ! <a class="button" href="javascript:remove('{{proj_id}}')">Delete</a> ! </td> ! </tr> ! </repeat> ! </table> ! <br /> <a class="button" href="javascript:save_preferences()">Save Your Preference List</a> ! <hr /> ! </webbox> |