koleS: {% url tool.view %} should work in django 1.5
hwrd|work joined the channel
jeroengerits joined the channel
subbyyy has quit
in djang 1.4, you'd have to do {% load url from future %} at the top of the template
subbyyy joined the channel
koleS
I am using 1.5, sry forgot to say
bmispelon: Indeed it works, thx.
Nemo7 has quit
jSanp has quit
txomon has quit
rh0dium joined the channel
mengu joined the channel
rafales joined the channel
zemanel has quit
vakaras has quit
banrahan joined the channel
jSanp joined the channel
jSanp has quit
jSanp joined the channel
filipemanuel has quit
rtnpro joined the channel
bahodir has quit
jeroengerits has quit
zemanel joined the channel
chrismed joined the channel
freannrak joined the channel
jezi22 joined the channel
felix89 joined the channel
felix89
hi!
jezi22
how to convert date strings to datetime?
lduros joined the channel
django-bot has quit
felix89
I am deploying via fcgi, using the runfcgi tool. From my admin interface I allow exporting to csv files. However, these ones are written as "root", I need them to be written as another user. How to do?
bmispelon: thank you.. even though it is a stupid question. xD
bmispelon
jezi22: it's a valid question. It's probably easy to find its answer with a search engine though.
jezi22
bmispelon: yeah im just rushing no sleep. so i am being stupid xD
maspwr has quit
shredding has quit
rtnpro has quit
a2on has quit
gremmie has quit
zemanel has quit
phildini has quit
jwa
I'm at a loss, I'm using django.test.TestCase and have an absolute path to a fixture file in the `fixtures` property, but it still won't load: http://dpaste.org/TGhOk/#L123
a2on joined the channel
zemanel joined the channel
glitch273 joined the channel
target_i joined the channel
what_larks joined the channel
davecap joined the channel
plabo has quit
spirat
I want to send data to another server to get auth tokens, can I use httplib2 or is there an internal thing in django for this?
lduros has quit
a13x15
spirat: not an expert, but I think that django does not provide such functionality
JesperHansen joined the channel
ChaozZBubi has quit
ChaozZBubi joined the channel
lduros joined the channel
Jygga
spirat: it is propable that: there is an app for that
a2on has quit
zemanel has quit
mordonez joined the channel
mordonez
Hi guys, what could be a possible reason to not get the entire path in templates
I have an ImageField and I only get folder/image.jpg
Jygga
also take a look at python-requests
mordonez
not with /media/folder/image.jpg
any ideas?
tlab joined the channel
in admin everything works fine
mike007 has quit
Jygga
mordonez: add {{ MEDIA_URL }} in your template, the field is relative to that
and I don't know how to concatenate in thumbnail tag
Jygga
what is your MEDIA_URL ?
mordonez
I got it
TSnowman
hi, I'm trying to enable oauth2 with my api and looking for a lib that can help, I've found a few and pydanny's article about their sorry state, altho that was almost a year ago :) wondering - what's the "de facto" oauth2 lib these days?
mordonez
was missing the media url
thanks
lduros has quit
chrismed has quit
zemanel joined the channel
eVRiAL has quit
spirat
a13x15: Jygga: I see, I can use httplib2 then, that's what used on the sample