summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2014-11-08 19:14:32 -0600
committerDan McGee <dan@archlinux.org>2014-11-08 19:14:32 -0600
commit88a457f1c8ae057278f1a7cadb6c163183484019 (patch)
treeccfd5d51d9b8d96e6e00eec218fde8c81cc4d1a1
parent96a7614285325b693434f3fd011238000d75926d (diff)
downloadarchweb-88a457f1c8ae057278f1a7cadb6c163183484019.tar.gz
archweb-88a457f1c8ae057278f1a7cadb6c163183484019.zip
Minor news listing tweaks
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--news/urls.py3
-rw-r--r--templates/news/list.html3
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 %}