diff options
author | Dan McGee <dan@archlinux.org> | 2014-11-08 19:14:32 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2014-11-08 19:14:32 -0600 |
commit | 88a457f1c8ae057278f1a7cadb6c163183484019 (patch) | |
tree | ccfd5d51d9b8d96e6e00eec218fde8c81cc4d1a1 | |
parent | 96a7614285325b693434f3fd011238000d75926d (diff) |
Minor news listing tweaks
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | news/urls.py | 3 | ||||
-rw-r--r-- | templates/news/list.html | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/news/urls.py b/news/urls.py index 0eec6d86..c13722d4 100644 --- a/news/urls.py +++ b/news/urls.py @@ -5,8 +5,7 @@ from .views import (NewsDetailView, NewsListView, urlpatterns = patterns('news.views', - (r'^$', - NewsListView.as_view(), {}, 'news-list'), + (r'^$', NewsListView.as_view(), {}, 'news-list'), (r'^preview/$', 'preview'), # old news URLs, permanent redirect view so we don't break all links diff --git a/templates/news/list.html b/templates/news/list.html index 4acbc7e9..71cd3d02 100644 --- a/templates/news/list.html +++ b/templates/news/list.html @@ -10,7 +10,7 @@ {% block content %} <div id="news-article-list" class="box"> - <h2>News Archives</h2> + <h2>Arch Linux News Archives</h2> {% if perms.news.add_news %} <ul class="admin-actions"> @@ -54,6 +54,5 @@ </table> {% include "news/paginator.html" %} - </div> {% endblock %} |