[Comoblog-commit] modules/mod_blogrolling/admin/templates mod_blogrolling.tpl.htm,NONE,1.1 mod_blogr
Status: Inactive
Brought to you by:
markwallis
|
From: iamdecal <iam...@us...> - 2006-02-23 23:05:26
|
Update of /cvsroot/comoblog/modules/mod_blogrolling/admin/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11362/mod_blogrolling/admin/templates Added Files: mod_blogrolling.tpl.htm mod_blogrolling_add.tpl.htm mod_blogrolling_edit.tpl.htm Log Message: wasnt in cvs so ive added it to fix a bug raised on the forums, - also added some of the stuff thats in use on my site --- NEW FILE: mod_blogrolling.tpl.htm --- <!-- BEGIN: main --> {FILE "../../../admin/templates/mod_header.tpl.htm"} <table border="0" width="760" align="center" cellspacing="0" cellpadding="4" style="border: 1px solid black;"> <tr> <td width="20"><a href="mod_blogrolling_add.php" onclick="void open_popup(this.href,320,250); return false;"><img src="../../../admin/img/add.gif" border="0"></a></td> <td width="720"><a href="mod_blogrolling_add.php" onclick="void open_popup(this.href,320,250); return false;">Add new link</a></td> </tr> </table> <br /> <br /> <!-- BEGIN: items --> <table border="0" width="760" align="center" cellspacing="0" cellpadding="4" style="border: 1px solid black;"> <!-- BEGIN: item --> <tr bgcolor="{BGCOLOR}"> <td valign="top"><b>{ITEM.blogrolling_title}</b></td> <td valign="top">{ITEM.blogrolling_description}</td> <td valign="top"><a href="{ITEM.blogrolling_url}" target="_blank">{ITEM.blogrolling_url}</a></td> <td><a href="mod_blogrolling_edit.php?i={ITEM.blogrolling_id}" onclick="void open_popup(this.href,400,300); return false;"><img src="../../../admin/img/edit.gif" border="0"></a></td> <td><a href="mod_blogrolling_del.php?i={ITEM.blogrolling_id}" onclick="if (confirm('Are you sure you want to delete this item? ({ITEM.blogrolling_title})')) document.location.href=this.href; else return false;"><img src="../../../admin/img/delete.gif" border="0"></a></td> </tr> <!-- END: item --> </table> <!-- END: items --> {FILE "../../../admin/templates/mod_footer.tpl.htm"} <!-- END: main --> --- NEW FILE: mod_blogrolling_add.tpl.htm --- <!-- BEGIN: main --> {FILE "../../../admin/templates/mod_popup_header.tpl.htm"} <br /> <p align="center"><b>NEW BLOGROLLING ITEM</b></p> <br /> <form action="{ACTION}" method="POST"> <p>URL:<br /> <input type="text" name="blogrolling_url" value="http://" maxlength="255" size="40" style="width:300px;"> </p> <p>Title:<br /> <input type="text" name="blogrolling_title" value="" maxlength="255" size="40" style="width:300px;"> </p> <p>Description:<br /> <input type="text" name="blogrolling_description" value="" maxlength="255" size="40" style="width:300px;"> </p> <input type="image" src="../../../admin/img/save.gif" border="0"> </form> {FILE "../../../admin/templates/mod_footer.tpl.htm"} <!-- END: main --> --- NEW FILE: mod_blogrolling_edit.tpl.htm --- <!-- BEGIN: main --> {FILE "../../../admin/templates/mod_popup_header.tpl.htm"} <br /> <p align="center"><b>EDIT BLOGROLLING ITEM</b></p> <br /> <form action="{ACTION}" method="POST"> <input type="hidden" name="blogrolling_id" value="{ITEM.blogrolling_id}"> <p>URL:<br /> <input type="text" name="blogrolling_url" value="{ITEM.blogrolling_url}" maxlength="255" size="40" style="width:300px;"> </p> <p>Title:<br /> <input type="text" name="blogrolling_title" value="{ITEM.blogrolling_title}" maxlength="255" size="40" style="width:300px;"> </p> <p>Description:<br /> <input type="text" name="blogrolling_description" value="{ITEM.blogrolling_description}" maxlength="255" size="40" style="width:300px;"> </p> <input type="image" src="../../../admin/img/save.gif" border="0"> </form> {FILE "../../../admin/templates/mod_footer.tpl.htm"} <!-- END: main --> |