Browse Source

Allow easy customization of global site name and header

Seriously, our recursive acronym is neat, but our members care little about it :-)
Jocelyn Delalande 6 years ago
parent
commit
94ac061fab
4 changed files with 15 additions and 3 deletions
  1. 2 0
      README.md
  2. 7 1
      coin/isp_database/context_processors.py
  3. 4 0
      coin/settings_base.py
  4. 2 2
      coin/templates/base.html

+ 2 - 0
README.md

@@ -373,6 +373,8 @@ MEMBERSHIP_FEE_REMINDER_DATES = [
 - `MEMBER_CAN_EDIT_VPN_CONF`: Allow members to edit some part of their vpn configuration
 - `DEBUG` : Enable debug for development **do not use in production** : display
    stracktraces and enable [django-debug-toolbar](https://django-debug-toolbar.readthedocs.io).
+- `SITE_TITLE`: the base of site title (displayed in browser window/tab title)
+- `SITE_HEADER`: the site header (displayed in all pages as page header)
 
 Accounting logs
 ---------------

+ 7 - 1
coin/isp_database/context_processors.py

@@ -1,9 +1,15 @@
 # -*- coding: utf-8 -*-
 from __future__ import unicode_literals
 
+from django.conf import settings
+
 from coin.isp_database.models import ISPInfo
 
 def branding(request):
     """ Just a shortcut to get the ISP object in templates
     """
-    return {'branding': ISPInfo.objects.first()}
+    return {
+        'branding': ISPInfo.objects.first(),
+        'SITE_HEADER': settings.SITE_HEADER,
+        'SITE_TITLE': settings.SITE_TITLE,
+    }

+ 4 - 0
coin/settings_base.py

@@ -289,6 +289,10 @@ MEMBERSHIP_FEE_REMINDER_DATES = [
     {'months': +1},  # 1 month after
 ]
 
+# Customize template titles
+SITE_TITLE = "COIN - SI"
+SITE_HEADER = "COIN est un Outil pour un Internet Neutre"
+
 # Pattern used to display a unique reference for any subscription
 # Helpful for bank wire transfer identification
 SUBSCRIPTION_REFERENCE = 'REF-{subscription.offer.reference}-{subscription.pk}'

+ 2 - 2
coin/templates/base.html

@@ -5,7 +5,7 @@
 <head>
     <meta charset="utf-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <title>{% block title %}COIN - {{ branding.shortname|capfirst }} SI{% endblock %}</title>
+    <title>{% block title %}{{ SITE_TITLE }}{% endblock %}</title>
     <link rel="stylesheet" href="{% static "css/foundation.css"%}" />
     <link rel="stylesheet" href="{% static "css/font-awesome.min.css"%}" />
     <link rel="stylesheet" href="{% static "css/local.css" %}" />
@@ -34,7 +34,7 @@
             <div class="show-for-medium-up">
                 <div class="row">
                     <div class="large-12">
-                        <h1><a href="{% url 'home' %}">COIN est un Outil pour un Internet Neutre</a></h1>
+                        <h1><a href="{% url 'home' %}">{{ SITE_HEADER }}</a></h1>
                     </div>
                 </div>
             </div>