[phpwebapp-commits] CVS: top10/templates/proj_list proj_list.html,1.2,1.3
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2004-07-22 09:39:05
|
Update of /cvsroot/phpwebapp/top10/templates/proj_list In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10079/templates/proj_list Modified Files: proj_list.html Log Message: Index: proj_list.html =================================================================== RCS file: /cvsroot/phpwebapp/top10/templates/proj_list/proj_list.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** proj_list.html 24 Sep 2003 14:01:36 -0000 1.2 --- proj_list.html 22 Jul 2004 09:38:22 -0000 1.3 *************** *** 1,13 **** ! <Include SRC="{{./}}filter/filter.html" /> ! <WebBox ID="proj_list"> ! <Repeat rs="proj_list_rs"> ! <IfEmpty> ! No Records Found! <br> ! </IfEmpty> ! <Header> ! <table cellspacing="1" cellpadding="2" bgcolor="#dddddd"> ! <form name="proj_list" onsubmit="return false;"> ! </Header> ! <RepeatBody> <tr> <td bgcolor="white" width="2%" align="center">{{CurrentRecNr}}</td> --- 1,11 ---- ! <include src="{{./}}filter/filter.html" /> ! <webbox id="proj_list"> ! <table cellspacing="1" cellpadding="2" bgcolor="#dddddd"> ! <form name="proj_list" onsubmit="return false;"> ! <repeat rs="proj_list_rs"> ! <ifempty> ! <tr><td colspan="7">No Records Found!</td></tr> ! </ifempty> ! <repeatbody> <tr> <td bgcolor="white" width="2%" align="center">{{CurrentRecNr}}</td> *************** *** 20,32 **** <td bgcolor="white">{{proj_descr}}</td> <td bgcolor="white"> ! <input type="checkbox" name="project" value="{{proj_id}}"> </td> </tr> ! </RepeatBody> ! <Footer> ! </form> ! </table> ! <Include SRC="{{./}}footer/list_footer.html" /> ! </Footer> ! </Repeat> ! </WebBox> --- 18,28 ---- <td bgcolor="white">{{proj_descr}}</td> <td bgcolor="white"> ! <input type="checkbox" name="project" value="{{proj_id}}" /> </td> </tr> ! </repeatbody> ! </repeat> ! </form> ! </table> ! <include src="{{./}}footer/list_footer.html" /> ! </webbox> |