Skip to content

Commit

Permalink
fix no-sidebar class being localised
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes authored and amercader committed May 9, 2012
1 parent fb8fb4e commit e77b689
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ckan/templates/group/edit.html
Expand Up @@ -4,7 +4,7 @@

<py:def function="page_title">Edit: ${c.group.display_name}</py:def>
<py:def function="page_heading">Edit: ${c.group.display_name}</py:def>
<py:def function="body_class">no-sidebar</py:def>
<py:def function="body_class">${h.literal('no-sidebar')}</py:def>


<div py:match="content" class="group-edit-form">
Expand Down
2 changes: 1 addition & 1 deletion ckan/templates/home/index.html
Expand Up @@ -4,7 +4,7 @@
py:strip=""
>

<py:def function="body_class">no-sidebar</py:def>
<py:def function="body_class">${h.literal('no-sidebar')}</py:def>

<py:def function="page_title">Welcome</py:def>

Expand Down
2 changes: 1 addition & 1 deletion ckan/templates/package/edit.html
Expand Up @@ -5,7 +5,7 @@

<py:def function="page_title">${c.pkg.title or c.pkg.name} - Edit - Datasets</py:def>
<py:def function="page_heading">Edit: ${c.pkg.title or c.pkg.name}</py:def>
<py:def function="body_class">no-sidebar</py:def>
<py:def function="body_class">${h.literal('no-sidebar')}</py:def>

<py:def function="optional_head">
<script>
Expand Down
2 changes: 1 addition & 1 deletion ckan/templates/package/editresources.html
Expand Up @@ -5,7 +5,7 @@

<py:def function="page_title">${c.pkg.title or c.pkg.name} - Edit Resources - Datasets</py:def>
<py:def function="page_heading">Edit Resources: ${c.pkg.title or c.pkg.name}</py:def>
<py:def function="body_class">no-sidebar</py:def>
<py:def function="body_class">${h.literal('no-sidebar')}</py:def>

<py:def function="optional_head">
<script>
Expand Down
2 changes: 1 addition & 1 deletion ckan/templates/package/history.html
Expand Up @@ -5,7 +5,7 @@

<py:def function="page_title">${c.pkg_dict.get('title', c.pkg_dict['name'])} - Datasets - History</py:def>
<py:def function="page_heading">History: ${c.pkg.title or c.pkg.name}</py:def>
<py:def function="body_class">no-sidebar</py:def>
<py:def function="body_class">${h.literal('no-sidebar')}</py:def>

<div py:match="content" class="dataset">
<h3>Revisions</h3>
Expand Down
2 changes: 1 addition & 1 deletion ckan/templates/package/new.html
Expand Up @@ -6,7 +6,7 @@
<py:def function="page_title">Add - Datasets</py:def>
<py:def function="page_heading">Add a Dataset</py:def>

<py:def function="body_class">no-sidebar</py:def>
<py:def function="body_class">${h.literal('no-sidebar')}</py:def>

<py:def function="optional_head">
<script>
Expand Down
2 changes: 1 addition & 1 deletion ckan/templates/revision/diff.html
Expand Up @@ -3,7 +3,7 @@
py:strip="">

<py:def function="page_title">Differences - Revisions</py:def>
<py:def function="body_class">no-sidebar</py:def>
<py:def function="body_class">${h.literal('no-sidebar')}</py:def>

<div py:match="content">
<h2>Revision Differences -
Expand Down
2 changes: 1 addition & 1 deletion ckan/templates/revision/list.html
Expand Up @@ -4,7 +4,7 @@

<py:def function="page_title">Revision History</py:def>
<py:def function="page_heading">Revision History</py:def>
<py:def function="body_class">no-sidebar</py:def>
<py:def function="body_class">${h.literal('no-sidebar')}</py:def>

<div py:match="content">
<p>Track the most recent changes to the system, with most recent
Expand Down

0 comments on commit e77b689

Please sign in to comment.