summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 %}