[cmsiki-svn] SF.net SVN: cmsiki: [20] trunk/cmsiki/templates/story
Status: Pre-Alpha
Brought to you by:
cnu
From: <cn...@us...> - 2007-03-31 07:50:33
|
Revision: 20 http://cmsiki.svn.sourceforge.net/cmsiki/?rev=20&view=rev Author: cnu Date: 2007-03-31 00:50:31 -0700 (Sat, 31 Mar 2007) Log Message: ----------- Corrected category links in templates to show slug Modified Paths: -------------- trunk/cmsiki/templates/story/category_detail.html trunk/cmsiki/templates/story/story_archive.html trunk/cmsiki/templates/story/story_archive_day.html trunk/cmsiki/templates/story/story_archive_month.html trunk/cmsiki/templates/story/story_detail.html Modified: trunk/cmsiki/templates/story/category_detail.html =================================================================== --- trunk/cmsiki/templates/story/category_detail.html 2007-03-29 21:30:26 UTC (rev 19) +++ trunk/cmsiki/templates/story/category_detail.html 2007-03-31 07:50:31 UTC (rev 20) @@ -19,7 +19,7 @@ {{ story.replaced_body }} <div class="postinfo"> - Posted under category <a href="/category/{{ story.category }}">{{ story.category }}</a> | + Posted under category <a href="/category/{{ story.category.slug }}">{{ story.category }}</a> | <a href="{{ story.get_absolute_url }}">{{ comment_count }} Comments</a> </div> </div> Modified: trunk/cmsiki/templates/story/story_archive.html =================================================================== --- trunk/cmsiki/templates/story/story_archive.html 2007-03-29 21:30:26 UTC (rev 19) +++ trunk/cmsiki/templates/story/story_archive.html 2007-03-31 07:50:31 UTC (rev 20) @@ -12,7 +12,7 @@ {{ story.replaced_body }} <div class="postinfo"> - Posted under category <a href="/category/{{ story.category }}">{{ story.category }}</a> | + Posted under category <a href="/category/{{ story.category.slug }}">{{ story.category }}</a> | <a href="{{ story.get_absolute_url }}">{{ comment_count }} Comments</a> </div> </div> Modified: trunk/cmsiki/templates/story/story_archive_day.html =================================================================== --- trunk/cmsiki/templates/story/story_archive_day.html 2007-03-29 21:30:26 UTC (rev 19) +++ trunk/cmsiki/templates/story/story_archive_day.html 2007-03-31 07:50:31 UTC (rev 20) @@ -12,7 +12,7 @@ {{ story.replaced_body }} <div class="postinfo"> - Posted under category <a href="/category/{{ story.category }}">{{ story.category }}</a> | + Posted under category <a href="/category/{{ story.category.slug }}">{{ story.category }}</a> | <a href="{{ story.get_absolute_url }}">{{ comment_count }} Comments</a> </div> </div> Modified: trunk/cmsiki/templates/story/story_archive_month.html =================================================================== --- trunk/cmsiki/templates/story/story_archive_month.html 2007-03-29 21:30:26 UTC (rev 19) +++ trunk/cmsiki/templates/story/story_archive_month.html 2007-03-31 07:50:31 UTC (rev 20) @@ -13,7 +13,7 @@ {{ story.replaced_body }} <div class="postinfo"> - Posted under category <a href="/category/{{ story.category }}">{{ story.category }}</a> | + Posted under category <a href="/category/{{ story.category.slug }}">{{ story.category }}</a> | <a href="{{ story.get_absolute_url }}">{{ comment_count }} Comments</a> </div> Modified: trunk/cmsiki/templates/story/story_detail.html =================================================================== --- trunk/cmsiki/templates/story/story_detail.html 2007-03-29 21:30:26 UTC (rev 19) +++ trunk/cmsiki/templates/story/story_detail.html 2007-03-31 07:50:31 UTC (rev 20) @@ -25,7 +25,7 @@ {{ object.replaced_body }} </div> - <div class="postinfo">Posted under category <a href="/category/{{ object.category }}">{{ object.category }}</a>.</div> + <div class="postinfo">Posted under category <a href="/category/{{ object.category.slug }}">{{ object.category }}</a>.</div> {{ category }} <!-- </div> --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |