diff -r f6742c41d7a3 -r b33caeba7faa src/hdalab/views/profile.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/hdalab/views/profile.py Wed Jul 16 15:15:50 2014 +0200 @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +''' +Created on Jul 01, 2014 + +@author: tc +''' +from datetime import datetime +from django.db.models import Q +from django.http.response import HttpResponse +from django.views.generic import TemplateView +from hdabo.models import Tag +from hdalab.utils import LineNodePlacer +from hdalab.views.ajax import filter_generic +import json +import uuid + +import logging +logger = logging.getLogger(__name__) + + +class ProfileHome(TemplateView): + + template_name = "profile_home.html" + +# def get(self, request): +# +# +# return HttpResponse(json.dumps("content"), content_type="application/json") + + \ No newline at end of file