# HG changeset patch # User Pawel Solyga # Date 1224694535 0 # Node ID cc603a815cad60f151eda49f8d9a85cfd02f45a6 # Parent f3525c1288eda30c0a84f59374dcb12209d6218c Fix some wrong paths to templates (committed in r864). Patch by: Pawel Solyga Review by: to-be-reviewed diff -r f3525c1288ed -r cc603a815cad app/soc/templates/soc/list/all.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/soc/templates/soc/list/all.html Wed Oct 22 16:55:35 2008 +0000 @@ -0,0 +1,25 @@ +{% extends "soc/base.html" %} +{% comment %} +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +{% endcomment %} +{% load forms_helpers %} +{% block body %} +

+

+{% block instructions %} +List of {{ entity_type_plural }} in Google Open Source Programs. +{% endblock %} +

+{% include list_main %} +

+{% endblock %} diff -r f3525c1288ed -r cc603a815cad app/soc/templates/soc/models/all.html --- a/app/soc/templates/soc/models/all.html Wed Oct 22 16:21:50 2008 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,25 +0,0 @@ -{% extends "soc/base.html" %} -{% comment %} -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -{% endcomment %} -{% load forms_helpers %} -{% block body %} -

-

-{% block instructions %} -List of {{ entity_type_plural }} in Google Open Source Programs. -{% endblock %} -

-{% include list_main %} -

-{% endblock %} diff -r f3525c1288ed -r cc603a815cad app/soc/views/models/host.py --- a/app/soc/views/models/host.py Wed Oct 22 16:21:50 2008 +0000 +++ b/app/soc/views/models/host.py Wed Oct 22 16:55:35 2008 +0000 @@ -103,7 +103,7 @@ # TODO(tlarsen) Add support for Django style template lookup params['edit_template'] = 'soc/models/edit.html' params['public_template'] = 'soc/models/public.html' - params['list_template'] = 'soc/models/all.html' + params['list_template'] = 'soc/list/all.html' params['lists_template'] = { 'list_main': 'soc/list/list_main.html',