diff --git a/apps/core/context_processors.py b/apps/core/context_processors.py
new file mode 100644
index 0000000..ef5a73f
--- /dev/null
+++ b/apps/core/context_processors.py
@@ -0,0 +1,4 @@
+from django.conf import settings
+
+def about(request):
+ return {'ABOUT_URL': settings.ABOUT_URL}
diff --git a/apps/core/templates/base.html b/apps/core/templates/base.html
index f332c33..7cbc06b 100644
--- a/apps/core/templates/base.html
+++ b/apps/core/templates/base.html
@@ -15,6 +15,14 @@
Monitor
Transactions
Logout
+ About
+ Fork me
+
+ {% else %}
+
{% endif %}
{% block content %}
diff --git a/walletmonitor/settings.py b/walletmonitor/settings.py
index 770fa9f..ac3ff5a 100644
--- a/walletmonitor/settings.py
+++ b/walletmonitor/settings.py
@@ -64,6 +64,7 @@ TEMPLATES = [
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
+ 'apps.core.context_processors.about',
],
},
},
diff --git a/walletmonitor/settings_local.py.example b/walletmonitor/settings_local.py.example
index 3baa2ba..06c2bb4 100644
--- a/walletmonitor/settings_local.py.example
+++ b/walletmonitor/settings_local.py.example
@@ -14,3 +14,4 @@ EMAIL_HOST_PASSWORD = 'topsecret'
EMAIL_USE_TLS = True
SITE_ID = 1
+ABOUT_URL = 'https://about.example.com'