|
From: Benjamin C. <bc...@us...> - 2002-06-10 12:52:39
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv1467/templates/default
Modified Files:
index.html
Log Message:
Show the saved queries on the home page (Adi Sieker)
Index: index.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/index.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- index.html 18 May 2002 03:00:50 -0000 1.9
+++ index.html 10 Jun 2002 12:52:35 -0000 1.10
@@ -17,6 +17,15 @@
{sectionelse}
{$STRING.nobugs}
{/section}
+ {if count($queries)}
+ <br>
+ <br>
+ <b>Saved Queries</b>
+ <br>
+ {section name=query loop=$queries}
+ <a href="{$smarty.server.PHP_SELF}?{$queries[query].saved_query_string}">{$queries[query].saved_query_name}</a><br>
+ {/section}
+ {/if}
</td>
<td valign="top">
{if USE_JPGRAPH}
|