src/hdalab/views/profile.py
author cavaliet
Wed, 16 Jul 2014 15:15:50 +0200
changeset 293 b33caeba7faa
child 294 6c12ccf29a95
permissions -rw-r--r--
profile page first step

# -*- 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")