Skip to content

Commit

Permalink
cil-ed18004f: Shows the section in <strong> and then the node name af…
Browse files Browse the repository at this point in the history
…terwards
  • Loading branch information
chilts committed Jan 26, 2010
1 parent 43f96ae commit c4d9de6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions issues/i_ed18004f.cil
@@ -1,10 +1,10 @@
Summary: Show the node name in the page/recipe node lists
Status: New
Status: Finished
CreatedBy: Andrew Chilton <andychilton@gmail.com>
AssignedTo: Andrew Chilton <andychilton@gmail.com>
Label: Milestone-v0.05
Inserted: 2010-01-26T05:47:08
Updated: 2010-01-26T05:48:13
Updated: 2010-01-26T05:53:17

It's really hard to tell what page is what, especially if it's the 'index' page
but it's named something completely different.
4 changes: 2 additions & 2 deletions theme/admin/page-list.html
Expand Up @@ -14,7 +14,7 @@ <h2>Page List</h2>
<thead>
<tr>
<th class="thin">Edit</th>
<th>Section</th>
<th>Section / Name</th>
<th>Title</th>
<th class="thin">Delete</th>
</tr>
Expand All @@ -26,7 +26,7 @@ <h2>Page List</h2>
<a href="edit.html?key={{ page.key|urlencode }}"><img title="Edit Page" src="/s/i/layout_edit.png" /></a>
</td>
<td>
{{ page.section.path|escape }}
<strong>{{ page.section.path|escape }}</strong>{{ page.name|escape }}
</td>
<td>
<a href="edit.html?key={{ page.key|urlencode }}">{{ page.title|escape }}</a>
Expand Down
4 changes: 2 additions & 2 deletions theme/admin/recipe-list.html
Expand Up @@ -14,7 +14,7 @@ <h2>Recipe List</h2>
<thead>
<tr>
<th class="thin">Edit</th>
<th>Section</th>
<th>Section / Name</th>
<th>Title</th>
<th class="thin">Delete</th>
</tr>
Expand All @@ -26,7 +26,7 @@ <h2>Recipe List</h2>
<a href="edit.html?key={{ recipe.key|urlencode }}"><img title="Edit Recipe" src="/s/i/layout_edit.png" /></a>
</td>
<td>
{{ recipe.name|escape }}
<strong>{{ recipe.section.path|escape }}</strong>{{ recipe.name|escape }}
</td>
<td>
<a href="edit.html?key={{ recipe.key|urlencode }}">{{ recipe.title|escape }}</a>
Expand Down

0 comments on commit c4d9de6

Please sign in to comment.