# HG changeset patch # User Pawel Solyga # Date 1241023918 -7200 # Node ID e7bb719e2539da70977fc96253c1a1656230779a # Parent f92942dfc28f25a5df13aafb96593712ff4d3e33 Fix Issue 389 (Clicking list entry will not open new tab/window). Patch by: Daniel Hans Reviewed by: Pawel Solyga diff -r f92942dfc28f -r e7bb719e2539 app/soc/content/css/soc-090421.css --- a/app/soc/content/css/soc-090421.css Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/content/css/soc-090421.css Wed Apr 29 18:51:58 2009 +0200 @@ -495,6 +495,8 @@ .list table tr.on { background-color: #ff9; + cursor: hand; + cursor: pointer; } .list table tr.off { @@ -509,6 +511,10 @@ border-left: 1px solid lightgray; } +.list table td.no_hand { + cursor: default; +} + /* * STUDENT PROPOSAL REVIEWS */ diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/club/list/row.html --- a/app/soc/templates/soc/club/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/club/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,6 +1,6 @@ - -
+ diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/club_admin/list/row.html --- a/app/soc/templates/soc/club_admin/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/club_admin/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,6 +1,6 @@ - -
+ diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/club_app/list/row.html --- a/app/soc/templates/soc/club_app/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/club_app/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,6 +1,6 @@ - -
+ diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/club_member/list/row.html --- a/app/soc/templates/soc/club_member/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/club_member/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,6 +1,6 @@ - -
+ diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/document/list/row.html --- a/app/soc/templates/soc/document/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/document/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,8 +1,8 @@ - + diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/group/list/row.html --- a/app/soc/templates/soc/group/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/group/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,6 +1,6 @@ - -
+ diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/host/list/row.html --- a/app/soc/templates/soc/host/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/host/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,6 +1,6 @@ - -
+ diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/job/list/row.html --- a/app/soc/templates/soc/job/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/job/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,8 +1,8 @@ - + diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/mentor/list/row.html --- a/app/soc/templates/soc/mentor/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/mentor/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,6 +1,6 @@ - -
+ diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/notification/list/row.html --- a/app/soc/templates/soc/notification/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/notification/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,6 +1,6 @@ - -
+
{% if list.item.from_user %} {{ list.item.from_user.name }} diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/org_admin/list/row.html --- a/app/soc/templates/soc/org_admin/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/org_admin/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,6 +1,6 @@ - -
+ diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/org_app/list/row.html --- a/app/soc/templates/soc/org_app/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/org_app/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,9 +1,19 @@ - -
{{ list.item.name }} + + + -
{{ list.item.ideas|urlizetrunc:35 }}
+ + + diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/organization/list/row.html --- a/app/soc/templates/soc/organization/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/organization/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,10 +1,27 @@ - - + + +
{{ list.item.short_name }}
-
{{ list.item.ideas|urlizetrunc:35 }}
+ {% if list.item.ideas %} + + {% else %} + + {% endif %} + + diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/presence/list/row.html --- a/app/soc/templates/soc/presence/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/presence/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,8 +1,8 @@ - + diff -r f92942dfc28f -r e7bb719e2539 app/soc/templates/soc/priority_group/list/row.html --- a/app/soc/templates/soc/priority_group/list/row.html Wed Apr 29 18:20:30 2009 +0200 +++ b/app/soc/templates/soc/priority_group/list/row.html Wed Apr 29 18:51:58 2009 +0200 @@ -1,5 +1,5 @@ - +