diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2012-02-23 02:52:04 -0800 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2012-02-23 02:52:04 -0800 |
commit | d5adb67ef480bd24bcca4d384eba72e51ae27446 (patch) | |
tree | 6e7daff5fffd3adf40b30db3b66221543c3d1ec4 /view/contacts-template.tpl | |
parent | 85d09f48d0bdddd43c8dd13c618cc714a679d141 (diff) | |
parent | cbc60d525e9140169c3b2d03998c53907b2fa3a7 (diff) | |
download | volse-hubzilla-d5adb67ef480bd24bcca4d384eba72e51ae27446.tar.gz volse-hubzilla-d5adb67ef480bd24bcca4d384eba72e51ae27446.tar.bz2 volse-hubzilla-d5adb67ef480bd24bcca4d384eba72e51ae27446.zip |
Merge pull request #46 from fabrixxm/master
more work on quattro theme and less html in php
Diffstat (limited to 'view/contacts-template.tpl')
-rwxr-xr-x | view/contacts-template.tpl | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/view/contacts-template.tpl b/view/contacts-template.tpl new file mode 100755 index 000000000..ecb342bf4 --- /dev/null +++ b/view/contacts-template.tpl @@ -0,0 +1,26 @@ +<h1>$header{{ if $total }} ($total){{ endif }}</h1> + +{{ if $finding }}<h4>$finding</h4>{{ endif }} + +<div id="contacts-search-wrapper"> +<form id="contacts-search-form" action="$cmd" method="get" > +<span class="contacts-search-desc">$desc</span> +<input type="text" name="search" id="contacts-search" class="search-input" onfocus="this.select();" value="$search" /> +<input type="submit" name="submit" id="contacts-search-submit" value="$submit" /> +</form> +</div> +<div id="contacts-search-end"></div> + +$tabs + + +{{ for $contacts as $contact }} + {{ inc contact_template.tpl }}{{ endinc }} +{{ endfor }} +<div id="contact-edit-end"></div> + +$paginate + + + + |