Skip to content

Commit faa96de

Browse files
authored
Merge pull request #3 from open-oni/fix_name
use featured_content
2 parents 9c9a2cf + eea8523 commit faa96de

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

urls.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from django.conf.urls import url, include
2-
from onisite.plugins.featured_pages import views
2+
from onisite.plugins.featured_content import views
33

44
urlpatterns = [
5-
url('', views.featured, name="featured_home"),
5+
url('', views.featured, name="featured_home")
66
]

views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from django.shortcuts import render_to_response
44
from django.template import RequestContext
55

6-
from onisite.plugins.featured_pages import config
6+
from onisite.plugins.featured_content import config
77
from core import models
88

99
def featured(request):

0 commit comments

Comments
 (0)