Beginning of the search part

This commit is contained in:
Sebastian Lohff 2017-03-15 03:07:50 +01:00
parent a074cb85ca
commit 25f0e78cab
8 changed files with 25 additions and 0 deletions

0
darksearch/__init__.py Normal file
View File

3
darksearch/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
darksearch/apps.py Normal file
View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class DarksearchConfig(AppConfig):
name = 'darksearch'

View File

3
darksearch/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
darksearch/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

8
darksearch/urls.py Normal file
View File

@ -0,0 +1,8 @@
from django.conf.urls import url
from . import views as darksearch_views
urlpatterns = [
url(r'^$', darksearch_views.search, name='search'),
]

3
darksearch/views.py Normal file
View File

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.