# HG changeset patch # User Pawel Solyga # Date 1224760835 0 # Node ID ec1b590418dfbb837694779471689ab1b779e84a # Parent 5acee4621c3d116b3a0f1a76b12c32a7b19038f7 Rename Host list templates from group_ to host_ and move then to soc/host/list folder. Update affected files with new paths. Patch by: Pawel Solyga Review by: to-be-reviewed diff -r 5acee4621c3d -r ec1b590418df app/soc/templates/soc/host/group_heading.html --- a/app/soc/templates/soc/host/group_heading.html Thu Oct 23 09:47:38 2008 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ - - User linkname - Host linkname - Given name - Surname - diff -r 5acee4621c3d -r ec1b590418df app/soc/templates/soc/host/group_row.html --- a/app/soc/templates/soc/host/group_row.html Thu Oct 23 09:47:38 2008 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ - - - - -
{{ data_element.given_name }}
-
{{ data_element.surname }}
- diff -r 5acee4621c3d -r ec1b590418df app/soc/templates/soc/host/list/host_heading.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/soc/templates/soc/host/list/host_heading.html Thu Oct 23 11:20:35 2008 +0000 @@ -0,0 +1,6 @@ + + User linkname + Host linkname + Given name + Surname + diff -r 5acee4621c3d -r ec1b590418df app/soc/templates/soc/host/list/host_row.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/soc/templates/soc/host/list/host_row.html Thu Oct 23 11:20:35 2008 +0000 @@ -0,0 +1,10 @@ + + + + +
{{ data_element.given_name }}
+
{{ data_element.surname }}
+ diff -r 5acee4621c3d -r ec1b590418df app/soc/views/models/host.py --- a/app/soc/views/models/host.py Thu Oct 23 09:47:38 2008 +0000 +++ b/app/soc/views/models/host.py Thu Oct 23 11:20:35 2008 +0000 @@ -101,8 +101,8 @@ params['lists_template'] = { 'list_main': 'soc/list/list_main.html', 'list_pagination': 'soc/list/list_pagination.html', - 'list_row': 'soc/host/group_row.html', - 'list_heading': 'soc/host/group_heading.html', + 'list_row': 'soc/host/list/host_row.html', + 'list_heading': 'soc/host/list/host_heading.html', } params['delete_redirect'] = '/site/host/list'