django and jquery data grids

2012-06-25 Thread rafiee.nima
Hi I want to know what is the most compatible and straight forward jquery data grid plugin for django and also how I can integrated jqgrid with django -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit

Re: Import error

2012-06-25 Thread Derek
Emily If you are starting a new topic, please start a new thread - and again, as per the guidelines for using the mailing list that Cal referred to, the more specific your question, the more chance of getting a reply. :) On Friday, 22 June 2012 17:14:34 UTC+2, Emily N wrote: > > Kurtis, Adrian

convert str to datetime

2012-06-25 Thread armagan
Hi, I'm trying to convert to str to datetime. "date object" must be datetime object. Can you help me? def item_pubdate(self, item): # Yayinlanma Tarihi if item.delivery_date: date = item.delivery_date dt = datetime.combine(date, time()) return dt

Re: acces cleaned data from a dynamic form

2012-06-25 Thread Daniel Roseman
On Sunday, 24 June 2012 15:36:27 UTC+1, het.oosten wrote: > > Django 1.2.3 > > For a restaurant i want to make a form, were the user can add their > address, and their order. The order part is dynamic (users can add > extra fields). I used jquery.formset for this. > > To accomplish this i have

change default date format to dd-mm-YYYY

2012-06-25 Thread ledzgio
How can I change default project/app date format to dd-mm-? thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/Z3fcdtqKpvYJ. To post to this group

Re: convert str to datetime

2012-06-25 Thread Daniel Roseman
On Monday, 25 June 2012 09:42:27 UTC+1, armagan wrote: > > Hi, > > I'm trying to convert to str to datetime. "date object" must be datetime > object. Can you help me? > > def item_pubdate(self, item): # Yayinlanma Tarihi > > if item.delivery_date: > > date = item.delivery_date

Re: change default date format to dd-mm-YYYY

2012-06-25 Thread Mike Dewhirst
On 25/06/2012 6:51pm, ledzgio wrote: How can I change default project/app date format to dd-mm-? This is straight from the Python 2.7 docs. import datetime d = datetime.datetime(2010, 7, 4, 12, 15, 58) >>> '{:%Y-%m-%d%H:%M:%S}'.format(d) '2010-07-04 12:15:58' or in a template ... https

Re: change default date format to dd-mm-YYYY

2012-06-25 Thread ledzgio
Il giorno lunedì 25 giugno 2012 10:51:43 UTC+2, ledzgio ha scritto: > > How can I change default project/app date format to dd-mm-? > > thanks > -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit htt

Re: change default date format to dd-mm-YYYY

2012-06-25 Thread ledzgio
Very useful, thanks. But how can I change the date format also in the admin interface when using DateField? Il giorno lunedì 25 giugno 2012 11:05:38 UTC+2, Mike Dewhirst ha scritto: > > On 25/06/2012 6:51pm, ledzgio wrote: > > How can I change default project/app date format to dd-mm-? > >

Re: change default date format to dd-mm-YYYY

2012-06-25 Thread Harjot Mann
just write d=models.DateField() in yor models.py file On Mon, Jun 25, 2012 at 2:38 PM, ledzgio wrote: > Very useful, thanks. > But how can I change the date format also in the admin interface when > using DateField? > > Il giorno lunedì 25 giugno 2012 11:05:38 UTC+2, Mike Dewhirst ha scritto: >

how to ues render_comment_form correctly

2012-06-25 Thread dragonfly
HI, everyone. Some questions about the render_comment_form tag and the get_comment_form tag make me confused. Here is my code: #blog_detail.html {% extends "base.html" %} {% block content %} {{ post.title }} {{ post.timestamp }} {{ post.body }} {% load comments %} {% render_com

ImportError: Settings cannot be imported, because environment variable DJANGO_SETTINGS_MODULE is undefined.

2012-06-25 Thread totechess
Tengo el siguiente problema. Con la última actualización de django 1.5 supongamos estoy en un directorio x y al hacer django-admin startproject miProyecto me genera la carpeta miProyecto con la siguiente estructura manage.py miProyecto/ __init__.py settings.py urls.py wsgi.py al posicionarm

Hey

2012-06-25 Thread Pervez Mulla
HI, How can I extract data from DB so that I can take that data n send it to templates to display graphs according to DataBase values . How can I write view function for that? Thank You Pervez -- You received this message because you are subscribed to the Google Groups "Django users" group. T

Custom SQL for creating django tables

2012-06-25 Thread Mina Farid
Hello guys, I am connection from django to Apache Derby. I am using IBM DB2 driver backend. Django tables are created in DB2 syntax, which is not very compatible with Derby. Is there any way that I can force django to customize the creation of SQL to a certain (say SQL standard) syntax? Thanks

Re: acces cleaned data from a dynamic form

2012-06-25 Thread het.oosten
Thank you for your help! > I don't understand your questions. I am sorry about that, I probably ask my question the wrong way because of my lack of experience > A formset is a set of forms. What would {{ formset.dish }} even refer to? > Only the forms inside the formset have a `dish` field. Whe

Re: acces cleaned data from a dynamic form

2012-06-25 Thread Melvyn Sopacua
On 25-6-2012 12:52, het.oosten wrote: > Thank you for your help! > >> I don't understand your questions. > > I am sorry about that, I probably ask my question the wrong way > because of my lack of experience > >> A formset is a set of forms. What would {{ formset.dish }} even refer to? >> Only t

Re: DISTINCT ON fields is not supported by this database backend

2012-06-25 Thread Mário Neto
What's your database backend? https://docs.djangoproject.com/en/dev/ref/models/querysets/#django.db.models.query.QuerySet.distinct Note This ability to specify field names is only available in PostgreSQL. []s 2012/6/24 Marcin Tustin > DISTINCT ON fields is not supported by this database bac

Re: 403 error when POSTing to a view with csrf protection

2012-06-25 Thread Mike
Hi Kurtis - The problem is that the client is not a web browser. Its desktop application that I'm developing for Mac OS using the Cocoa frameworks. The Django server will process user's data and return it to the user's desktop application. The desktop app will communicate with the django se

Re: convert str to datetime

2012-06-25 Thread Melvyn Sopacua
On 25-6-2012 10:42, armagan wrote: > Hi, > > I'm trying to convert to str to datetime. "date object" must be datetime > object. Can you help me? > > def item_pubdate(self, item): # Yayinlanma Tarihi > > if item.delivery_date: > > date = item.delivery_date So, that's a stri

Render time

2012-06-25 Thread Larry Martell
This is not strictly a django question, but I'm hoping someone here has solved this and can help me. I have a client that has a django app that collects a bunch of server side statistics on the users activities - e.g. what reports they run, the number of rows returned, how long the query took, etc.

Re: 403 error when POSTing to a view with csrf protection

2012-06-25 Thread Melvyn Sopacua
Hi Mike, > POST: [u'']}>, > COOKIES:{'csrftoken': 'qsl91ZDqVL5wirXlUwIYmu8ytTVES3nt'}, > 'CSRF_COOKIE': 'qsl91ZDqVL5wirXlUwIYmu8ytTVES3nt', > 'CSRF_COOKIE_USED': True, > 'HTTP_COOKIE': 'csrftoken=qsl91ZDqVL5wirXlUwIYmu8ytTVES3nt', > 'HTTP_HOST': '127.0.0.1:8000', Since this all looks sane, wh

Re: Render time

2012-06-25 Thread bruno desthuilliers
On Monday, June 25, 2012 1:34:08 PM UTC+2, larry@gmail.com wrote: > > Now they want me to add to that how long > the browser takes to render the page > How would server code ever know this ? -- You received this message because you are subscribed to the Google Groups "Django users" group

Re: Render time

2012-06-25 Thread Larry Martell
On Mon, Jun 25, 2012 at 5:56 AM, bruno desthuilliers wrote: > On Monday, June 25, 2012 1:34:08 PM UTC+2, larry@gmail.com wrote: >> >>  Now they want me to add to that how long >> the browser takes to render the page > > > How would server code ever know this ? My assumption is that it would b

Re: Hey

2012-06-25 Thread bruno desthuilliers
On Monday, June 25, 2012 8:05:13 AM UTC+2, Pervez Mulla wrote: > > HI, > > How can I extract data from DB so that I can take that data n send it to > templates to display graphs according to DataBase values . > How can I write view function for that? > Everything you need to know is here : https

Using now in an if

2012-06-25 Thread Larry Martell
I'm trying to use now in an if like this: {% if value|date:"Ymd" == now "Ymd" %} This is failing with: 'Unused '"Ymd"' at end of if expression.' If I quote it: {% if value|date:"Ymd" == 'now "Ymd"' %} I don't get the syntax error, but the if does not evaluate to true when the dates match. I

Re: convert str to datetime

2012-06-25 Thread armagan
I don't know where does string come from. In shell date is a date object and combine time dt is a datetime objects. It's ok. But I run the code I have an errror. can't compare datetime.datetime to str. item = Project.objects.order_by('-create_date')[:20] delivery_date = models.DateField(_(u'T

Re: acces cleaned data from a dynamic form

2012-06-25 Thread het.oosten
The answer to question 1: *** 1. in the template i can only get a form with {{formset}} . {{formset.dish}} doesn't work *** Was as easy as {{formset.form.dish}} (...sighs...) >So hmm, you're re-presenting the form on the same url? I guess for >debugging that works, but generally you'd redirect he

Re: Using now in an if

2012-06-25 Thread Daniel Roseman
On Monday, 25 June 2012 13:05:24 UTC+1, larry@gmail.com wrote: > > I'm trying to use now in an if like this: > > {% if value|date:"Ymd" == now "Ymd" %} > > This is failing with: 'Unused '"Ymd"' at end of if expression.' > > If I quote it: > > {% if value|date:"Ymd" == 'now "Ymd"' %} > >

Re: convert str to datetime

2012-06-25 Thread Daniel Roseman
On Monday, 25 June 2012 13:07:19 UTC+1, armagan wrote: > > I don't know where does string come from. In shell date is a date object > and combine time dt is a datetime objects. It's ok. But I run the code I > have an errror. can't compare datetime.datetime to str. > > item = Project.objects.orde

Re: Render time

2012-06-25 Thread Deepak Kumar
I am no django expert ... but I guess you can do following ... Get the timestamp when request first reaches your server It does some processing returns output to browser use javascript to check if DOM loaded and get the timestamp calculate time diff and send to the server again to save it. Don't

Re: Render time

2012-06-25 Thread Melvyn Sopacua
On 25-6-2012 14:00, Larry Martell wrote: > On Mon, Jun 25, 2012 at 5:56 AM, bruno desthuilliers > wrote: >> On Monday, June 25, 2012 1:34:08 PM UTC+2, larry@gmail.com wrote: >>> >>> Now they want me to add to that how long >>> the browser takes to render the page >> >> >> How would server cod

Affordable Django hosting solution in India/around?

2012-06-25 Thread Kartik Singhal
Hi We are a small non-profit all-students organization conducting a TEDxevent in our college soon. We have built a basic django-based web app for speaker nomination, participant registration, blog, etc. and other mostly static content. Regarding this I am looking for a re

Re: Affordable Django hosting solution in India/around?

2012-06-25 Thread Phang Mulianto
Hi, some thing people search... reliable and cheap / affordable. Afforadble / cheap is relative variable there in my opinion. you mention 8$ / month stil expensive and unaffordable for you. in other country it is cheap (us). even the cheap one in amazon aws around 8 -10 $ / month with standart p

Re: 403 error when POSTing to a view with csrf protection

2012-06-25 Thread Melvyn Sopacua
On 25-6-2012 13:11, Mike wrote: > POST: [u'']}>, Wait a second... Where's your csrfmiddlewaretoken from the {% csrf_token %} field that you put in your form? This is the process: - the cookie token is basically a lock - the POST request resembles trying to open the door with that lock - the form

Re: WSGI help required. Getting a 'No module named myFirstProject.wsgi' error.

2012-06-25 Thread Harvey
Hi My code looks like this...see below. fails on last line. i.e. runfastcgi(method="threaded", daemonize="false") Python Code is run from this path /home1/harveywe/www/dj/testProject/mySite.fcgi environments PYTHONPATH=/home1/harveywe/.local/lib/python2.6/site-packages:/home1/harveywe/ PATH

Re: 403 error when POSTing to a view with csrf protection

2012-06-25 Thread Kurtis Mullins
> > > POST: > [u'']}>, > > Wait a second... > Where's your csrfmiddlewaretoken from the {% csrf_token %} field that > you put in your form? > > This is the process: > - the cookie token is basically a lock > - the POST request resembles trying to open the door with that lock > - the formfield token

Re: base_url() in django

2012-06-25 Thread Melvyn Sopacua
On 25-6-2012 3:10, Raitucarp wrote: > http://example.com > or > https://example.com You also do this in your view functions, using the Site framework: Then pass it on to template. -- Melvyn Sopacu

Re: 403 error when POSTing to a view with csrf protection

2012-06-25 Thread Mike
On Monday, June 25, 2012 3:06:28 PM UTC+2, Melvyn Sopacua wrote: > > On 25-6-2012 13:11, Mike wrote: > > > POST: > [u'']}>, > > Wait a second... > Where's your csrfmiddlewaretoken from the {% csrf_token %} field that > you put in your form? > > This is the process: > - the cookie token is b

Re: 403 error when POSTing to a view with csrf protection

2012-06-25 Thread Mike
On Monday, June 25, 2012 3:12:44 PM UTC+2, Kurtis wrote: > > > POST:> > [u'']}>, >> >> Wait a second... >> Where's your csrfmiddlewaretoken from the {% csrf_token %} field that >> you put in your form? >> >> This is the process: >> - the cookie token is basically a lock >> - the POST request rese

Re: [tutorial] why doesn't my admin template overrule?

2012-06-25 Thread Melvyn Sopacua
On 24-6-2012 22:26, bunski wrote: > But cant figure out why my admin header is not changing. Can you see > instantly with my attached screenshot? "Don't forget to use absolute paths" And absolute paths start with forward slashes. Yours doesn't in TEMPLATE_DIRS. -- Melvyn Sopacua -- You rece

Re: 403 error when POSTing to a view with csrf protection

2012-06-25 Thread Melvyn Sopacua
On 25-6-2012 15:20, Mike wrote: > > > On Monday, June 25, 2012 3:06:28 PM UTC+2, Melvyn Sopacua wrote: >> >> On 25-6-2012 13:11, Mike wrote: >> >>> POST:>> [u'']}>, >> >> Wait a second... >> Where's your csrfmiddlewaretoken from the {% csrf_token %} field that >> you put in your form? >> >>

Re: Using now in an if

2012-06-25 Thread Larry Martell
On Mon, Jun 25, 2012 at 6:26 AM, Daniel Roseman wrote: > > On Monday, 25 June 2012 13:05:24 UTC+1, larry@gmail.com wrote: >> >> I'm trying to use now in an if like this: >> >> {% if value|date:"Ymd" ==  now "Ymd" %} >> >> This is failing with: 'Unused '"Ymd"' at end of if expression.' >> >> If

Re: Creating permalink for blog tags that have the Post class as foreign key

2012-06-25 Thread Thomas Lockhart
On 12-06-24 7:18 PM, Matthew Meyer wrote: After making some changes debugging in the shell revealed, I have gotten it to work, thanks!!! So what was the solution??!!! - Tom -- You received this message because you are subscribed to the Google Groups "Django users" group. To po

Re: Custom SQL for creating django tables

2012-06-25 Thread Thomas Lockhart
On 12-06-25 1:35 AM, Mina Farid wrote: Hello guys, I am connection from django to Apache Derby. I am using IBM DB2 driver backend. Django tables are created in DB2 syntax, which is not very compatible with Derby. Is there any way that I can force django to customize the creation of SQL to a

Re: convert str to datetime

2012-06-25 Thread Jim Thaxton
The parseutil module is very handy when converting a formatted string into a datetime object. Here's the module: http://labix.org/python-dateutil And here is a stackoverflow post with a number of examples: http://stackoverflow.com/questions/127803/how-to-parse-iso-formatted-date-in-python On Mo

Re: base_url() in django

2012-06-25 Thread Raitucarp
@Melvyn That's not simple way. I have to write every views to pass it on to template? It's not elegant by the way. uhm Should I create custom template tags to do it in beautiful way? Because base_url() in codeigniter is a helper. And I don't need write it on to controllers(views in django), an

Re: [tutorial] why doesn't my admin template overrule?

2012-06-25 Thread bunski
Thanks! Op maandag 25 juni 2012 15:30:40 UTC+2 schreef Melvyn Sopacua het volgende: > > On 24-6-2012 22:26, bunski wrote: > > > But cant figure out why my admin header is not changing. Can you see > > instantly with my attached screenshot? > > "Don't forget to use absolute paths" > And absolut

ForeignKey problem

2012-06-25 Thread Soviet
Hey I'm new to this Django thing and I run into first problem :). Let's say I have two models and in each I have field with ForeignKey relating to field in other model (hope it's clear). Now that I want to run migrate with South, I'm getting "NameError: name 'ModelName' is not defined". This is cl

Re: ForeignKey problem

2012-06-25 Thread Adrian Bool
On 25 Jun 2012, at 17:41, Soviet wrote: > I'm new to this Django thing and I run into first problem :). > > Let's say I have two models and in each I have field with ForeignKey > relating to field in other model (hope it's clear). Now that I want to > run migrate with South, I'm getting "NameErr

Re: ForeignKey problem

2012-06-25 Thread Soviet
Thank you kind sir for your fast response, that worked brilliantly. Can I be cheeky and ask why does it work? :) On 25 Cze, 18:43, Adrian Bool wrote: > On 25 Jun 2012, at 17:41, Soviet wrote: > > > I'm new to this Django thing and I run into first problem :). > > > Let's say I have two models and

Re: ForeignKey problem

2012-06-25 Thread Kurtis Mullins
> > [...] > > Let's say I have two models and in each I have field with ForeignKey > > relating to field in other model (hope it's clear). [...] > Actually, I'm pretty confused about this part :) A ForeignKey is used to relate to another Model -- not just a Model Field -- in Django's ORM. So for

Re: ForeignKey problem

2012-06-25 Thread Adrian Bool
On 25 Jun 2012, at 17:53, Soviet wrote: > Thank you kind sir for your fast response, that worked brilliantly. > Can I be cheeky and ask why does it work? :) Magic! ;-) Although seriously, Django obviously has some code in there to handle just the situation you have come across. Sorry, I don't

Re: ForeignKey problem

2012-06-25 Thread Thomas Lockhart
On 12-06-25 10:02 AM, Adrian Bool wrote: On 25 Jun 2012, at 17:53, Soviet wrote: Thank you kind sir for your fast response, that worked brilliantly. Can I be cheeky and ask why does it work? :) Magic! ;-) The mechanism must involve deferred resolution of the second model by passing the model

Haystack with Whoosh Not Redirecting.

2012-06-25 Thread coded kid
I successfully installed whoosh and made it work with Haystack. Things are working fine but I'm facing one problem which is; after searching for a keyword and it print out the results, when I click on the result(title), It won't redirect me to the page of the keyword I clicked on, it's just static.

Re: Haystack with Whoosh Not Redirecting.

2012-06-25 Thread Nikolas Stevenson-Molnar
Take another look at your get_absolute_url method. As written, it specifies several keyword arguments to the view, but the "findme" view does not take any arguments. Also, what does your urls.py file look like? _Nik On 6/25/2012 10:14 AM, coded kid wrote: > I successfully installed whoosh and mad

Re: Haystack with Whoosh Not Redirecting.

2012-06-25 Thread coded kid
(r'^find/$', findme), So how will i input the arguments? any example? thanks. Nikolas Stevenson-Molnar wrote: > Take another look at your get_absolute_url method. As written, it > specifies several keyword arguments to the view, but the "findme" view > does not take any arguments. Also, what does

Re: Haystack with Whoosh Not Redirecting.

2012-06-25 Thread Nikolas Stevenson-Molnar
See the examples given for the permalink decorator: https://docs.djangoproject.com/en/1.4/ref/models/instances/#the-permalink-decorator Also, review URLs in Django: https://docs.djangoproject.com/en/1.4/topics/http/urls/ In your case, you don't specify any arguments in your URL (or your view func

Re: base_url() in django

2012-06-25 Thread Melvyn Sopacua
On 25-6-2012 17:02, Raitucarp wrote: > @Melvyn > > That's not simple way. I have to write every views to pass it on to > template? It's not elegant by the way. uhm Should I create custom template > tags to do it in beautiful way? Is this an actual issue? You realize that there's no difference b

Re: ForeignKey problem

2012-06-25 Thread Kurtis Mullins
> > >> The mechanism must involve deferred resolution of the second model by > passing the model class name in as a string. Without string syntax python > insists on knowing what that class is at the time it sees the reference. > Don't know more than that though ;) > > https://github.com/django/dj

Re: Haystack with Whoosh Not Redirecting.

2012-06-25 Thread coded kid
Yes the form is expecting data from users and it will filtered on the same page. will it still work? Nikolas Stevenson-Molnar wrote: > See the examples given for the permalink decorator: > https://docs.djangoproject.com/en/1.4/ref/models/instances/#the-permalink-decorator > > Also, review URLs in

Re: Haystack with Whoosh Not Redirecting.

2012-06-25 Thread Nikolas Stevenson-Molnar
If I am reading your view correctly, it creates a new "Meek" if the form has been submitted, and doesn't query any records from the database. Is this really what you want in response to a user clicking a search result? _Nik On 6/25/2012 11:46 AM, coded kid wrote: > Yes the form is expecting data

Re: acces cleaned data from a dynamic form

2012-06-25 Thread het.oosten
This is how the POST looks: nameu'Johnson' form-MAX_NUM_FORMS u' ' form-1-dish u'fried egg' dishu'steak' form-INITIAL_FORMS u'0' csrfmiddlewaretoken u'c12349d127dbbd44e829e756613719c' form-TOTAL_FORMSu'2' -- You received this message because you are subscribed t

Re: base_url() in django

2012-06-25 Thread Kurtis Mullins
> > Is this an actual issue? You realize that there's no difference between > /doc/ and http://example.com/doc/ if the current server is > http://example.com/? > +1 I'd like to see the use-case where having absolute URLs everywhere is actually necessary. It's not hard to do in certain places wher

Re: Affordable Django hosting solution in India/around?

2012-06-25 Thread Babatunde Akinyanmi
Alwaysdata(.com) offers free hosting but its shared hosting On 6/25/12, Phang Mulianto wrote: > Hi, > > some thing people search... reliable and cheap / affordable. > > Afforadble / cheap is relative variable there in my opinion. you mention 8$ > / month stil expensive and unaffordable for yo

Re: base_url() in django

2012-06-25 Thread Jani Tiainen
One actual use-case I have is when sending links in emails, for example confirmations, password resets links etc. And IIRC there is a way to do it in Django it's just not documented. Personally I resolved it by using configuration variable in settings.py since in my case actual Django installation

setting up django with virtualenv on windows7

2012-06-25 Thread mymlyn
i started a topic on stackoverflow, analysing responses on SO, on similar topics, im not really sure wether ill get any feedback there so im gonna try here :) described my problem here: http://stackoverflow.com/questions/11193905/setting-up-django-with-virtualenv-on-windows7/ could any1 explain t

Re: ForeignKey problem

2012-06-25 Thread Soviet
W dniu poniedziałek, 25 czerwca 2012 18:54:48 UTC+2 użytkownik Kurtis napisał: > > Actually, I'm pretty confused about this part :) A ForeignKey is used to > relate to another Model -- not just a Model Field -- in Django's ORM. > > So for example, if you have a Team Model and a Player Model, you'

Re: ForeignKey problem

2012-06-25 Thread Kurtis Mullins
> > > Let me follow up on this. Say I want to add list of all Teams my Players > played for. What you're saying is that I don't have to add ForeignKey to > Team and just use team_name field from Team model? Will it work? > > This relations stuff is confusing :P. > > Haha, no problem! It'll come nat

Re: Affordable Django hosting solution in India/around?

2012-06-25 Thread Kurtis Mullins
Just go with Amazon Web Services. You get a year for free on their lightest server. The only minor issue is you have to set it up yourself -- but that's really not difficult to do. By the way, $8/month is incredibly little to pay. I guess in India that might be more money than it is here -- but ju

Re: Userena configuration

2012-06-25 Thread Bastian
The part about the terms of service is easy, just override that view's form in the urls: from userena.forms import SignupFormTos urlpatterns = patterns('', url(r'^accounts/signup/$','userena.views.signup', {'signup_form': SignupFormTos}), url(r'^accounts/', include('userena.urls')), )

Re: setting up django with virtualenv on windows7

2012-06-25 Thread Dan Johnson
On 06/25/2012 03:12 PM, mymlyn wrote: i started a topic on stackoverflow, analysing responses on SO, on similar topics, im not really sure wether ill get any feedback there so im gonna try here :) described my problem here: http://stackoverflow.com/questions/11193905/setting-up-django-with-virtu

Re: Logout- Back Button

2012-06-25 Thread Sajja1260
hi all, i'm also facing the same problm... can any one help me thanks in advance On Friday, 28 November 2008 14:35:48 UTC+5:30, jai_python wrote: > > Any possible to clear browser cache alone using javascript? it ill > help to solve this back button problem. -- You received this mess

Does UserProfile any changed in new version ?

2012-06-25 Thread yillkid
Hi all ! When I use UserProfile/UserCreationForm in Django 1.1, everything is OK! But in Django 1.4, seems I can not hook my User Profile in Django User model, when my UserProfile register into admin.site, I need reload the browser 2nd times or error message will be show: http://paste.ideaslabs

Re: Render time

2012-06-25 Thread Andy McKay
> Now they want me to add to that how long > the browser takes to render the page after it gets the data. You can use the navigation timing API: https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/NavigationTiming/Overview.html We use this in conjuction with graphite and django-statsd to produce g

Re: setting up django with virtualenv on windows7

2012-06-25 Thread Jani Tiainen
26.6.2012 0:39, Dan Johnson kirjoitti: On 06/25/2012 03:12 PM, mymlyn wrote: i started a topic on stackoverflow, analysing responses on SO, on similar topics, im not really sure wether ill get any feedback there so im gonna try here :) described my problem here: http://stackoverflow.com/question

Re: Affordable Django hosting solution in India/around?

2012-06-25 Thread Kartik Singhal
Thanks for all your answers. My response inline: On Mon, Jun 25, 2012 at 6:35 PM, Phang Mulianto wrote: > Afforadble / cheap is relative variable there in my opinion. you mention > 8$ / month stil expensive and unaffordable for you. > in other country it is cheap (us). > I was actually referrin