|
293
|
1 |
# -*- coding: utf-8 -*- |
|
|
2 |
''' |
|
|
3 |
Created on Jul 01, 2014 |
|
|
4 |
|
|
|
5 |
@author: tc |
|
|
6 |
''' |
|
|
7 |
from datetime import datetime |
|
|
8 |
from django.db.models import Q |
|
|
9 |
from django.http.response import HttpResponse |
|
|
10 |
from django.views.generic import TemplateView |
|
|
11 |
from hdabo.models import Tag |
|
|
12 |
from hdalab.utils import LineNodePlacer |
|
|
13 |
from hdalab.views.ajax import filter_generic |
|
|
14 |
import json |
|
|
15 |
import uuid |
|
|
16 |
|
|
|
17 |
import logging |
|
|
18 |
logger = logging.getLogger(__name__) |
|
|
19 |
|
|
|
20 |
|
|
|
21 |
class ProfileHome(TemplateView): |
|
|
22 |
|
|
|
23 |
template_name = "profile_home.html" |
|
|
24 |
|
|
|
25 |
# def get(self, request): |
|
|
26 |
# |
|
|
27 |
# |
|
|
28 |
# return HttpResponse(json.dumps("content"), content_type="application/json") |
|
|
29 |
|
|
|
30 |
|