14 lines
333 B
Python
14 lines
333 B
Python
# -*- coding: utf-8 -*-
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
import os.path
|
|
from django.db import models
|
|
from django.db.models import Q
|
|
from django.contrib.auth.models import User
|
|
|
|
from oxdata.utils.shortcuts import render_to_json_response
|
|
|
|
|
|
def poster(request):
|
|
#FIXME: get MovieId from provided id and redirect to poster url
|
|
return
|
|
|