aboutsummaryrefslogtreecommitdiffstats
path: root/layerindex
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2018-03-21 15:20:00 +1300
committerPaul Eggleton <paul.eggleton@linux.intel.com>2018-03-26 08:27:40 +1300
commit2138ca81f95892deb1d8a4f62f08054645311339 (patch)
tree311642911a66b9f970f310c6b98e8e4fa621e43d /layerindex
parent2d73d7dec1966475b6bb73021e88c8ad64515649 (diff)
downloadopenembedded-core-contrib-2138ca81f95892deb1d8a4f62f08054645311339.tar.gz
context_processors.py: adjust default site name
Default site name should be Layer Index, not metadata index as it was before. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'layerindex')
-rw-r--r--layerindex/context_processors.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/layerindex/context_processors.py b/layerindex/context_processors.py
index e2852ee2e9..c21c4a9161 100644
--- a/layerindex/context_processors.py
+++ b/layerindex/context_processors.py
@@ -12,10 +12,10 @@ def layerindex_context(request):
if site and site.name and site.name != 'example.com':
site_name = site.name
else:
- site_name = 'OpenEmbedded metadata index'
+ site_name = 'OpenEmbedded Layer Index'
return {
'all_branches': Branch.objects.exclude(name='oe-classic').order_by('sort_priority'),
'unpublished_count': LayerItem.objects.filter(status='N').count(),
'oe_classic': Branch.objects.filter(name='oe-classic'),
'site_name': site_name
- } \ No newline at end of file
+ }