Commit 093cc333d1cbfd0a313b24d1ea7eb2ae2ead42a6

Authored by Gustavo
1 parent 580112e7

Started news urls including the manage

Showing 1 changed file with 7 additions and 0 deletions   Show diff stats
news/urls.py
... ... @@ -0,0 +1,7 @@
  1 +from django.conf.urls import url
  2 +from . import views
  3 +
  4 +urlpatterns = [
  5 + url(r'^$', views.ListNewsView.as_view(), name='manage_news'),
  6 +
  7 +]
... ...