i just tried switching to the dev version and it's still happening
dkog joined the channel
i can't get loaddata to work without throwing DeserializationError: maximum recursion depth exceeded while calling a Python object
dkog
Hi - I tried writing middleware process_response, but it runs after my template is rendered. How might I hook the response flow to run code before a template is rendered?
mikeywaites has quit
luillee has quit
WiFau has quit
lobo_d_b has quit
Maybe a ContextProcessor? (even though it's not modifying the context itself) ?
missfilly joined the channel
missfilly has quit
missfilly joined the channel
solancer
error 'str' object has no attribute 'status_code'
Joestar79 has quit
nicklo joined the channel
lobo_d_b joined the channel
rakl joined the channel
rakl
WARNING 2012-12-29 19:49:50,375 rdbms_mysqldb.py:74] The rdbms API is not available because the MySQLdb library could not be loaded.
^ why am I getting this when I'm not using mysql at all?
rakl, try adding "import MySQLdb" to the top of dev_appserver.py
WiFau has left the channel
SgtBananas joined the channel
SgtBananas
is FunkyBob around?
Cromulent joined the channel
tback joined the channel
rakl
solancer "no module named mysqldb" tried MYSQLdb as well
figabo has quit
solancer
rakl, its more likely that your .yaml is incorrectly formatted. Check it is exactly the same as the demo app.
ObseLeTe joined the channel
SgtBananas
does anyone know if self._meta.fields.blank is set to True if the value of a field is None?
ermm..
figabo joined the channel
rakl
solancer hmm, unlikely because I just got this codebase from a working app, but I'll check it out
SgtBananas
one of the values in self._meta.fields, not the whole thing
charettes joined the channel
rakl
the server starts fine btw, it just throws up that error
endra joined the channel
do I need to run syncdb if I'm using appengine/
solancer
is " threadsafe: false"
tkaemming joined the channel
solancer has quit
friskd has quit
Megido has quit
jSanp joined the channel
jSanp has quit
cyberdelia has quit
jSanp joined the channel
jonathanchu has quit
SgtBananas has quit
domas joined the channel
domas
great movie!
rh0dium has quit
lobo_d_b
domas: what movie ?
domas
'django unchained'
rh0dium joined the channel
tlab has quit
lobo_d_b
domas: hehe
rakl has quit
Brewster is now known as Brewster[afk]
rakl joined the channel
derPepo has quit
samraker has quit
Tykling joined the channel
rogi
my TypedChoiceField is not setting initial value from instance I pass to the form, any tips on debugging whats going on?
Tykling
hello, question: when using @transaction.commit_manually is it possible to re-enable autocommit later in the function ? I am getting TransactionManagementError exceptions, presumably because my template calls get_profile (which results in a select after commit)
I tried calling transaction.autocommit() before render_to_response but that didn't help
arietis has quit
joshfinnie has quit
joshfinnie joined the channel
Zapwai has quit
endra has quit
bradleyayers joined the channel
emadicius has quit
Megido joined the channel
Megido
who know any multiupload for admin?
hirokiky joined the channel
tback has left the channel
hirokiky has quit
Rile joined the channel
anth0ny joined the channel
rh0dium has quit
anth0ny has quit
endra joined the channel
rh0dium joined the channel
rh0dium has quit
mykul joined the channel
Bubo joined the channel
Bubo
I have this page: http://puu.sh/1GW5h -- What is the best way to make all of this editable with Django? You can edit name, link, money, etc.. How should I go to do it?
rh0dium joined the channel
apollo13
Bubo: formsets
Bubo
thanks
apollo13
most likely even a model formset
Bubo
apollo13 the pic that I gave you is generated from Django. All that info is in the DB
I just want to be able to change it on my site and save it if it's changed
apollo13
yeah model formsets
Bubo
nice
ty
whafro has quit
nicklo has quit
ticketbot has quit
ticketbot joined the channel
nicklo joined the channel
scaphilo has quit
arturrro has quit
rawGem has quit
bradleyayers has quit
mengu_ joined the channel
ionelmc has quit
m0n5t3r has quit
Brewster[afk] is now known as Brewster
rocky has quit
rh0dium has quit
badbandit
is it possible to do something similar to the formfield_override for a changelist page? I want to use a widget to convert all values to currency eg 11122.22 bc $11,122.22
bluepnume has quit
mattmcc
You can put method names in your list_display.
So write a formatting function on your model or ModelAdmin and use that instead of the field itself.