From c464bc494c51bd871c2cf01a441ea2c4f8defc65 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 24 Jun 2012 21:16:55 -0700 Subject: add like/dislike to profiles --- view/profile_advanced.tpl | 13 +++++++++++++ view/profile_edit.tpl | 24 ++++++++++++++++++++++++ 2 files changed, 37 insertions(+) (limited to 'view') diff --git a/view/profile_advanced.tpl b/view/profile_advanced.tpl index 0b8f31f43..b02b7f27d 100644 --- a/view/profile_advanced.tpl +++ b/view/profile_advanced.tpl @@ -89,6 +89,19 @@ {{ endif }} +{{ if $profile.likes }} +
+
$profile.likes.0
+
$profile.likes.1
+
+{{ endif }} + +{{ if $profile.dislikes }} +
+
$profile.dislikes.0
+
$profile.dislikes.1
+
+{{ endif }} {{ if $profile.contact }}
diff --git a/view/profile_edit.tpl b/view/profile_edit.tpl index ad34b9956..64cd47324 100644 --- a/view/profile_edit.tpl +++ b/view/profile_edit.tpl @@ -187,6 +187,30 @@ $lbl_hobbies +
+

+$lbl_likes +

+ + + +
+
+ + + +
+

+$lbl_dislikes +

+ + + +
+
+ + +

$lbl_social -- cgit v1.2.3 From ad6c82bdea11e4c35284e18608f78ad4c355405d Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 24 Jun 2012 22:23:17 -0700 Subject: implement "follow" service limits --- view/en/update_fail_eml.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/en/update_fail_eml.tpl b/view/en/update_fail_eml.tpl index f68a3dece..548e1a0df 100644 --- a/view/en/update_fail_eml.tpl +++ b/view/en/update_fail_eml.tpl @@ -1,5 +1,5 @@ Hey, -I'm $sitename. +I'm $sitename; The friendica developers released update $update recently, but when I tried to install it, something went terribly wrong. This needs to be fixed soon and I can't do it alone. Please contact a -- cgit v1.2.3 From 35a098e0dc7940974132d8d65bbc4418d92fb204 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 25 Jun 2012 01:37:44 -0700 Subject: service limits for photo uploads --- view/photos_upload.tpl | 3 +++ view/theme/duepuntozero/style.css | 3 +++ 2 files changed, 6 insertions(+) (limited to 'view') diff --git a/view/photos_upload.tpl b/view/photos_upload.tpl index 318a92427..706b3398d 100644 --- a/view/photos_upload.tpl +++ b/view/photos_upload.tpl @@ -1,4 +1,7 @@

$pagename

+ +
$usage
+
diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index de366210b..ea3a2da9c 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -1644,6 +1644,9 @@ input#dfrn-url { display:block!important; } +#photos-usage-message { + margin-bottom: 15px; +} #acl-wrapper { -- cgit v1.2.3