Skip to content

Commit

Permalink
Added new app more
Browse files Browse the repository at this point in the history
  • Loading branch information
DipanshKhandelwal committed Nov 10, 2017
1 parent 2da0b15 commit b4b18e6
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions Warehouse/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
'store',
'sell',
'buy',
'more',
]

MIDDLEWARE = [
Expand Down
1 change: 1 addition & 0 deletions Warehouse/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
url(r'^logout/$', auth_views.logout, name='logout'),
url(r'^aboutus/', include('aboutus.urls')),
url(r'^store/', include('store.urls')),
url(r'^more/', include('more.urls')),
url(r'^sell/', include('sell.urls')),
url(r'^buy/', include('buy.urls')),
url(r'^$', include('basic.urls')),
Expand Down
Empty file added more/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions more/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
7 changes: 7 additions & 0 deletions more/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from __future__ import unicode_literals

from django.apps import AppConfig


class MoreConfig(AppConfig):
name = 'more'
Empty file added more/forms.py
Empty file.
5 changes: 5 additions & 0 deletions more/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from __future__ import unicode_literals

from django.db import models

# Create your models here.
5 changes: 5 additions & 0 deletions more/templates/more/more.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{% extends 'basic/base.html' %}

{% block content %}
This is more page.
{% endblock %}
3 changes: 3 additions & 0 deletions more/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
Empty file added more/urls.py
Empty file.
Empty file added more/views.py
Empty file.

0 comments on commit b4b18e6

Please sign in to comment.