From 0cac18ea4f3e56d1b7d1bdcb6729e22cbf3f5a44 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Thu, 20 Jun 2013 14:09:11 -0500 Subject: Add link to release listing page from public index We didn't link this page from anywhere so it was hard to find. Also add it to the sitemap so it gets indexed. Signed-off-by: Dan McGee --- templates/public/index.html | 2 ++ 1 file changed, 2 insertions(+) (limited to 'templates') diff --git a/templates/public/index.html b/templates/public/index.html index 37d6decc..7e6daf8d 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -169,6 +169,8 @@ title="View the available package groups">Package Groups
  • Todo Lists
  • +
  • ISO Release List
  • Visualizations
  • -- cgit v1.2.3-2-g168b From 772a500534a508b5b9f88e2883c8dcb488c4b4d9 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sat, 13 Jul 2013 09:50:45 -0500 Subject: Move simple feeds templates directly into feed classes No need to call out to the template engine to format... nothing at all. Just fetch the attribute directly and save the render step. Signed-off-by: Dan McGee --- templates/feeds/news_title.html | 1 - templates/feeds/packages_description.html | 1 - 2 files changed, 2 deletions(-) delete mode 100644 templates/feeds/news_title.html delete mode 100644 templates/feeds/packages_description.html (limited to 'templates') diff --git a/templates/feeds/news_title.html b/templates/feeds/news_title.html deleted file mode 100644 index 7899fce3..00000000 --- a/templates/feeds/news_title.html +++ /dev/null @@ -1 +0,0 @@ -{{ obj.title }} \ No newline at end of file diff --git a/templates/feeds/packages_description.html b/templates/feeds/packages_description.html deleted file mode 100644 index cfc42616..00000000 --- a/templates/feeds/packages_description.html +++ /dev/null @@ -1 +0,0 @@ -{{ obj.pkgdesc }} \ No newline at end of file -- cgit v1.2.3-2-g168b From 845769e156520708acf65c8f3ec2756476202cc7 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sat, 13 Jul 2013 09:51:33 -0500 Subject: Show alternate email on mirror details page Signed-off-by: Dan McGee --- templates/mirrors/mirror_details.html | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'templates') diff --git a/templates/mirrors/mirror_details.html b/templates/mirrors/mirror_details.html index ccd6eb57..1c7f5633 100644 --- a/templates/mirrors/mirror_details.html +++ b/templates/mirrors/mirror_details.html @@ -48,6 +48,10 @@ Admin Email: {% if mirror.admin_email %}{{ mirror.admin_email }}{% else %}None{% endif %} + + Alternate Email: + {% if mirror.alternate_email %}{{ mirror.alternate_email }}{% else %}None{% endif %} + Notes: {{ mirror.notes|linebreaks }} -- cgit v1.2.3-2-g168b