Skip to content
Snippets Groups Projects
Commit d260a109 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Merge branch 'eplevikler' into 'develop'

Eplevikler

See merge request !7
parents 4c3d5870 dfd44ad2
Branches
No related tags found
1 merge request!7Eplevikler
This diff is collapsed.
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.test import TestCase
# Create your tests here.
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.index,name='index'),
]
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request):
context = {
}
return render(request,'cydiapomonella/index.html', context)
#return HttpResponse("Hello - 01 !!.. This is new app for VIPSWeb")
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment