Beginning of the search part

master
Sebastian Lohff 7 years ago
parent a074cb85ca
commit 25f0e78cab

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

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

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

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

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

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