diff options
author | Friendika <info@friendika.com> | 2011-11-01 19:16:33 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-11-01 19:16:33 -0700 |
commit | 3d9a9614e232a3ff207803be1092b1d42bcadde6 (patch) | |
tree | af9ba51b8cefc4246a2627ec2e94b940c6531aa4 /view | |
parent | 0975ea86101281befec9258d58e28c88d7b8ae4d (diff) | |
download | volse-hubzilla-3d9a9614e232a3ff207803be1092b1d42bcadde6.tar.gz volse-hubzilla-3d9a9614e232a3ff207803be1092b1d42bcadde6.tar.bz2 volse-hubzilla-3d9a9614e232a3ff207803be1092b1d42bcadde6.zip |
common friends
Diffstat (limited to 'view')
-rw-r--r-- | view/common_friends.tpl | 12 | ||||
-rw-r--r-- | view/contact_edit.tpl | 9 | ||||
-rw-r--r-- | view/profile_vcard.tpl | 2 |
3 files changed, 22 insertions, 1 deletions
diff --git a/view/common_friends.tpl b/view/common_friends.tpl new file mode 100644 index 000000000..1f610d8c4 --- /dev/null +++ b/view/common_friends.tpl @@ -0,0 +1,12 @@ +<div class="profile-match-wrapper"> + <div class="profile-match-photo"> + <a href="$url"> + <img src="$photo" alt="$name" width="80" height="80" title="$name [$url]" /> + </a> + </div> + <div class="profile-match-break"></div> + <div class="profile-match-name"> + <a href="$url" title="$name[$tags]">$name</a> + </div> + <div class="profile-match-end"></div> +</div>
\ No newline at end of file diff --git a/view/contact_edit.tpl b/view/contact_edit.tpl index 248140a6b..c2e3e36fb 100644 --- a/view/contact_edit.tpl +++ b/view/contact_edit.tpl @@ -19,6 +19,7 @@ $nettype </div> <div id="contact-edit-nav-wrapper" > + <div id="contact-edit-links" > <a href="contacts/$contact_id/block" class="icon block" id="contact-edit-block-link" title="$block_text"></a> <a href="contacts/$contact_id/ignore" class="icon no" id="contact-edit-ignore-link" title="$ignore_text"></a> @@ -41,6 +42,14 @@ $nettype </div> <div id="contact-edit-end" ></div> + + {{ if $common_text }} + <div id="contact-edit-common"> + <a href="$common_link">$common_text</a> + </a> + {{ endif }} + + $insecure $blocked $ignored diff --git a/view/profile_vcard.tpl b/view/profile_vcard.tpl index d65b65784..c78eb9b7f 100644 --- a/view/profile_vcard.tpl +++ b/view/profile_vcard.tpl @@ -21,7 +21,7 @@ {{ if $pdesc }}<div class="title">$profile.pdesc</div>{{ endif }} - <div id="profile-photo-wrapper"><img class="photo" width="175" height="175" src="$profile.photo" alt="$profile.name"></div> + <div id="profile-photo-wrapper"><img class="photo" width="175" height="175" src="$profile.photo" alt="$profile.name" /></div> |