Commit e48f3639 authored by ibuler's avatar ibuler

Modify url

parent cf15b7ea
......@@ -16,8 +16,10 @@ Including another URLconf
from django.conf.urls import url, include
from django.conf import settings
from django.conf.urls.static import static
from django.views.generic.base import TemplateView
urlpatterns = [
url(r'^$', TemplateView.as_view(template_name='base.html')),
url(r'^users/', include('users.urls')),
url(r'^assets/', include('assets.urls')),
# url(r'^admin/', admin.site.urls),
......
......@@ -16,10 +16,10 @@ def create_usergroup(name):
def get_random_usergroup():
pass
def create_user(username, name, email, groups):
pass
class UserListViewTests(TestCase):
pass
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment