Re: Suggestion for prefetch_related() documentation

2022-06-25 Thread Laurent Lyaudet
Hello, Thanks for the link :) I think the documentation would be better structured, then, if https://docs.djangoproject.com/fr/4.0/ref/models/querysets/ would reference your link. I have not read all of Django documentation. I do not know if it is expected that most developers would read everythi

Re: Suggestion for prefetch_related() documentation

2022-06-23 Thread Jason
This is explicitly called out in the documentation at https://docs.djangoproject.com/en/4.0/topics/db/optimization/#understand-queryset-evaluation On Thursday, June 23, 2022 at 1:17:50 PM UTC-4 laurent...@gmail.com wrote: > Hello, > > I made a simple test to check the number of queries done : >

Suggestion for prefetch_related() documentation

2022-06-23 Thread Laurent Lyaudet
Hello, I made a simple test to check the number of queries done : # First part order = Order.objects.get(id=2) # one query items = list(order.items.all()) # one query items = list(order.items.all()) # one query items = list(order.items.all()) # one query # Second part order = Order.objec

Please provide me tips or suggestion for below scenario:

2021-01-21 Thread Ravi G
Please provide me tips or suggestion for below scenario: In system 2 folders ( Visiting cards[ Images], Resumes [PDF, DOCX] ) Using Django, On the webpage, we have 2 buttons ( Visiting cards, Resumes). 1) Click on the Visiting cards button, show the table view or excel download. The view

Suggestion Needed:-Defect tracking

2021-01-02 Thread mailt...@gmail.com
Hello reader, I hope you are doing great. >From last few years I was thinking to start a project http://defectzilla.com/ Django base defect tracking. But unable to conclude that should I Start developing it and people will be interested to use it? If you think its great idea, Would you please

Re: need suggestion + recomendation

2020-12-27 Thread Orlin Kerin
Hi What i suggest is *not *free but i am taking it now and I find it very good. If you know python, html, css and java script then you sould look for something more Django specific... And it is not too expensive. https://www.udemy.com/course/python-and-django-full-stack-web-developer-bootcamp/ On

need suggestion + recomendation

2020-12-26 Thread aizaz ali shah
suggest me the best free course channel website to learn Django app development?? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googl

Re: MarketPlace Suggestion Using Django

2020-12-17 Thread Kris A. Stern
Thought this might be very useful background reading for your project in more broader strokes: https://www.digitalocean.com/community/tutorials/build-a-to-do-application-using-django-and-react Good for the essential concepts I reckon. Hope it helps! Cheers, Kris On Thu, 17 Dec 2020 at 15:04,

Re: MarketPlace Suggestion Using Django

2020-12-16 Thread codesign web za
https://bravelab.io/blog/how-to-manage-tenants-in-the-multitenant-app-based-on-django-tenants-and-saleor-io-platform/ just found this from august...! On 2020/12/17 03:32, IZMA Digital, Technology Agency wrote: Hi All, I am planning to create my first MarketPlace project in Django, Can I use d

Re: MarketPlace Suggestion Using Django

2020-12-16 Thread codesign web za
When i looked into this, my big idea was to set up Saleor (django+react), with django-tenant-schemas... but i didnt get that right just yet... Same Saleor, working with different databases based on the url address... Has anyone managed to set up Saleor this way? that would be EPIC!! On 2020

MarketPlace Suggestion Using Django

2020-12-16 Thread IZMA Digital, Technology Agency
Hi All, I am planning to create my first MarketPlace project in Django, Can I use django Oscar package to create and customize multivendor marketplace as per our custom needs? Did this package allow us to customize themes? DB schema or user authentication with phone number only etc.. Or I have

Re: Regarding to suggestion for registration page

2019-08-21 Thread Sipum
Can u plz tell what you have done so we can learn also. On Thu, 22 Aug, 2019, 11:16 AM RONAK JAIN, wrote: > Thank you so much all of you for your kind of help. > > > I have done this Task. > > > Thanks > > > > > > On Thu, Aug 22, 2019 at 10:21 AM Sipum wrote: > >> Hey Ronak, >> >> At first u di

Re: Regarding to suggestion for registration page

2019-08-21 Thread RONAK JAIN
Thank you so much all of you for your kind of help. I have done this Task. Thanks On Thu, Aug 22, 2019 at 10:21 AM Sipum wrote: > Hey Ronak, > > At first u did wrong in import. > > Do as below and compare what u have done. > > From django.contrib.auth.models import User > From django.con

Re: Regarding to suggestion for registration page

2019-08-21 Thread Sipum
Hey Ronak, At first u did wrong in import. Do as below and compare what u have done. >From django.contrib.auth.models import User >From django.contrib import auth Then when u are creating user do as- user = User.objects.create_user(uanme,pwd,email) THEN for login after sign up use as below -

Re: Regarding to suggestion for registration page

2019-08-21 Thread 'Gaurav Ravindra Bole' via Django users
in register method add user.set_password = request.POST.get('password') before user.save() On Wed, Aug 21, 2019 at 10:56 PM 'Amitesh Sahay' via Django users < django-users@googlegroups.com> wrote: > I guess you have forgotten to mention the APP name under which the pages > are created. Please cro

Re: Regarding to suggestion for registration page

2019-08-21 Thread 'Amitesh Sahay' via Django users
I guess you have forgotten to mention the APP name under which the pages are created. Please cross-verify on my observation . Regards, Amitesh Sahay91-750 797 8619 On Wednesday, 21 August, 2019, 12:35:28 pm IST, RONAK JAIN wrote: Hey I tried but still getting like that... Attached s

Re: Regarding to suggestion for registration page

2019-08-20 Thread Tosin Ayoola
Using httpRedirect to d view 4 the URL u want user to b redirected to On Aug 21, 2019 06:21, "RONAK JAIN" wrote: > I am trying to redirect my registration page but, I am not getting *please > check my attached screenshot* and please let me know where I am doing > wrong... > > > > On Tue, Aug 20,

Re: Regarding to suggestion for registration page

2019-08-19 Thread Sipum
Hey Ronit, It is very simple. Just do return redirect ('/name used in url') If ur url for home page be like, path('home', views.index, name='home') Then u hv to write as redirect('/home'). On Tue, 20 Aug, 2019, 9:43 AM Ronit Mishra, wrote: > Hi, > > If I've understood your issue correctly,

Re: Regarding to suggestion for registration page

2019-08-19 Thread Ronit Mishra
Hi, If I've understood your issue correctly, you probably just need to add this lil' snippet in your settings.py LOGIN_REDIRECT_URL = '/' (or wherever you wanna redirect after login) Let me know if it works out for you! Regards, Ronnie On Tue, Aug 20, 2019 at 2:40 AM Smovie Makers Club wrote:

Re: Regarding to suggestion for registration page

2019-08-19 Thread Smovie Makers Club
return redirect('{{ request.scheme }}://{{ request.get_host }}') This will redirect to home page On Mon, 19 Aug 2019, 3:52 pm RONAK JAIN, wrote: > Hello Django developers, > > I am trying to redirect my registration page on the home page but, I am > not getting when I am trying with a registrati

Re: Regarding to suggestion for registration page

2019-08-19 Thread N'BE SORO
Ok, I will check. Le lun. 19 août 2019 à 10:21, RONAK JAIN a écrit : > Hello Django developers, > > I am trying to redirect my registration page on the home page but, I am > not getting when I am trying with a registration page it will work for > registration but when I am doing with the home pa

Re: Feature Suggestion: New Setting called LOGOUT_REDIRECT_URL

2015-08-20 Thread Tim Graham
In fact, there is an accepted ticket which suggests the same: https://code.djangoproject.com/ticket/12405 Feel free to try your hand at a patch if you like! On Thursday, August 20, 2015 at 4:41:05 PM UTC-4, Robert Roskam wrote: > > Basically, the same feature set as here: > https://docs.djangop

Feature Suggestion: New Setting called LOGOUT_REDIRECT_URL

2015-08-20 Thread Robert Roskam
Basically, the same feature set as here: https://docs.djangoproject.com/en/1.8/ref/settings/#login-redirect-url Modified it below: Default: '/accounts/logout' The URL where requests are redirected after login when the contrib.auth.logout view gets no next parameter. This setting also accepts

Suggestion needed: user registration without a username but with email + Facebook authentication + Linking profiles together + REST API

2015-07-13 Thread Andrey Shipilov
Hey guys, I have tried several approaches and kinda stuck now. I have tried using django-allauth, django-rest-auth, djangorestframework, python-social-auth and such. Basically I have these requirements for a project I am building. - It's an iOS/Android app, so it needs to have RESTful API.

Re: want some suggestion to learn elastic search

2015-07-01 Thread Edgar Gabaldi
Use the django-haystack[0]. He's a wrapper for some search engines (including elastic search). it's very simple to use. The getting start tutorial[1] is very simple too. [0] http://haystacksearch.org/ [1]http://django-haystack.readthedocs.org/en/v2.4.0/tutorial.html On Wed, Jul 1, 2015 at 8:37 A

want some suggestion to learn elastic search

2015-07-01 Thread Code Dish
Hello all, Can you guys , suggest me what the basic things reguired to learn elastic search for django project for learning purpose. please reply... -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and sto

Re: Suggestion

2015-03-19 Thread Johan Hendriks
Op 18-03-15 om 07:38 schreef Jay Prasad: Hi All, I'm started Pyhthon and django ,give me some suggestions and which sites was good .help me.thank you all -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsub

Suggestion

2015-03-18 Thread Jay Prasad
Hi All, I'm started Pyhthon and django ,give me some suggestions and which sites was good .help me.thank you all -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Re: Can anyone give me a suggestion or a recommendation as to how I can access the current user's username in the models.py?

2014-12-15 Thread Collin Anderson
Hi Fred, I don't see how it could possibly be thread-safe without using a thread-local. But, if you don't deploy using threads then you should be fine. I agree with Russ that explicit is better than implicit. I think there is some benefit to simply being able to ask for the the current reques

Re: Can anyone give me a suggestion or a recommendation as to how I can access the current user's username in the models.py?

2014-12-14 Thread Russell Keith-Magee
On Mon, Dec 15, 2014 at 9:14 AM, Fred Stluka wrote: > Collin and Russell (and anyone else), > > Do you have any opinion on this? > - https://bitbucket.org/aptivate/django-current-user > > It was offered in an earlier post: > - https://groups.google.com/d/msg/django-users/y7aIbN2_CsA/GtmrSjG1nq8J

Re: Can anyone give me a suggestion or a recommendation as to how I can access the current user's username in the models.py?

2014-12-14 Thread Fred Stluka
Collin and Russell (and anyone else), Do you have any opinion on this? - https://bitbucket.org/aptivate/django-current-user It was offered in an earlier post: - https://groups.google.com/d/msg/django-users/y7aIbN2_CsA/GtmrSjG1nq8J as a solution to exactly this problem. Makes the current user a

Re: Can anyone give me a suggestion or a recommendation as to how I can access the current user's username in the models.py?

2014-12-14 Thread Collin Anderson
Hi, The "admin save handlers" refers to save_model() and there's actually a nice example of accessing the user. https://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.save_model If you're using the admin, that's a good place to record this sort of thing. Using

Re: Can anyone give me a suggestion or a recommendation as to how I can access the current user's username in the models.py?

2014-12-12 Thread malte . dik
Thanks Mike and Russell, this is very helpful for starters. Do you have some more verbose code examples I can use as crutches while I hobble along the path of understanding Django? Especially an expansion on something like "All the admin save handlers" would be much appreciated. For me every ch

Re: New feature suggestion, but probably late to the party.

2014-04-22 Thread Russell Keith-Magee
On Wed, Apr 23, 2014 at 6:52 AM, JJ Zolper wrote: > Hello everyone, > > I apologize if this suggestion has already been brought up, shot down etc, > but I would like to highlight a feature I think would be really cool to > have in Django. For this feature, I think an all in one s

New feature suggestion, but probably late to the party.

2014-04-22 Thread JJ Zolper
Hello everyone, I apologize if this suggestion has already been brought up, shot down etc, but I would like to highlight a feature I think would be really cool to have in Django. For this feature, I think an all in one standard that is appropriate for all users of django websites that can

Re: Django 1.5 Feature Suggestion

2013-08-16 Thread JJ Zolper
I didn't want to clutter up the ticket that much so I thought we could discuss through here. Do you think the following package: https://github.com/Liberationtech/django-libtech-emailuser Could be used to merge in a solution to the django core for this? It sounds like when this package was crea

Re: Django 1.5 Feature Suggestion

2013-07-29 Thread JJ Zolper
My apologies for not making this quickly accessible. I meant to stick the link in there but it didn't make it into my previous post. It's been a long day. Here it is: https://github.com/Liberationtech/django-libtech-emailuser JJ On Monday, July 29, 2013 9:07:43 PM UTC-4, Russell Keith-Magee wr

Re: Django 1.5 Feature Suggestion

2013-07-29 Thread JJ Zolper
Russell Keith-Magee, This came to mind, before in my post I described a package I had come across that someone had made as their fix. In quoting his github: "There's a number apps out there for doing authentication with emailaddresses prior to Django 1.5. With the advent of Django 1.5 the Dja

Re: Django 1.5 Feature Suggestion

2013-07-29 Thread JJ Zolper
Oh that's right it was Kenneth, not sure why I thought it was you. That's a good point about 1.5. That's sort of where I was going. I agree that everything is headed in the right direction. And I'm sure they are busy. I can only imagine. No problem on opening the ticket and getting it started a

Re: Django 1.5 Feature Suggestion

2013-07-29 Thread Russell Keith-Magee
On Tue, Jul 30, 2013 at 8:37 AM, JJ Zolper wrote: > Russell Keith-Magee, > > Are you the one who is doing "Getting Started With Django" ? Sorry for > getting off topic but just was curious. If so I donated money to that > project and I am glad you are doing it. > Sorry, that's not me. You're thi

Re: Django 1.5 Feature Suggestion

2013-07-29 Thread JJ Zolper
Russell Keith-Magee, Are you the one who is doing "Getting Started With Django" ? Sorry for getting off topic but just was curious. If so I donated money to that project and I am glad you are doing it. Yes, that's what it seems to be called by other Django devs, "Email address as username." I

Re: Django 1.5 Feature Suggestion

2013-07-26 Thread Russell Keith-Magee
On Fri, Jul 26, 2013 at 10:43 PM, JJ Zolper wrote: > Hello everyone, > > So I want to say thanks to the Django guys for providing more support for > those of us that want to use a user's email as the UID and login handler > versus the previous method of handling based on the username. I and > pro

Re: need suggestion for wysiwyg with youtube embed support

2013-04-13 Thread frocco
Nevermind, the css default was hiding the iFrame button On Saturday, April 13, 2013 8:06:13 AM UTC-4, frocco wrote: > > I have ckeditor installed, but do not see any youtube support. > Are there any other django editors? > > Thanks > -- You received this message because you are subscribed to the

need suggestion for wysiwyg with youtube embed support

2013-04-13 Thread frocco
I have ckeditor installed, but do not see any youtube support. Are there any other django editors? Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django

Re: Can anyone give me a suggestion or a recommendation as to how I can access the current user's username in the models.py?

2013-03-15 Thread Mike Dewhirst
On 15/03/2013 4:56pm, Russell Keith-Magee wrote: On Fri, Mar 15, 2013 at 11:58 AM, Mike Dewhirst mailto:mi...@dewhirst.com.au>> wrote: What is the right way to design a system whereby on every save for every model the updated_by column is changed to the user.id of the lo

Re: Can anyone give me a suggestion or a recommendation as to how I can access the current user's username in the models.py?

2013-03-14 Thread Russell Keith-Magee
On Fri, Mar 15, 2013 at 11:58 AM, Mike Dewhirst wrote: > On 15/03/2013 10:31am, Russell Keith-Magee wrote: > >> >> >> On Fri, Mar 15, 2013 at 5:24 AM, Shawn Milochik > > wrote: >> >> I've repeatedly asked about this over the past couple of years and >> there seem

Re: Can anyone give me a suggestion or a recommendation as to how I can access the current user's username in the models.py?

2013-03-14 Thread Mike Dewhirst
On 15/03/2013 10:31am, Russell Keith-Magee wrote: On Fri, Mar 15, 2013 at 5:24 AM, Shawn Milochik mailto:sh...@milochik.com>> wrote: I've repeatedly asked about this over the past couple of years and there seems to be no "right" answer." This, to me, is the biggest flaw in Django.

Re: Can anyone give me a suggestion or a recommendation as to how I can access the current user's username in the models.py?

2013-03-14 Thread Russell Keith-Magee
On Fri, Mar 15, 2013 at 5:24 AM, Shawn Milochik wrote: > I've repeatedly asked about this over the past couple of years and > there seems to be no "right" answer." This, to me, is the biggest flaw > in Django. > There's definitely a right answer. > The official (and useless) answer is that you

Re: Can anyone give me a suggestion or a recommendation as to how I can access the current user's username in the models.py?

2013-03-14 Thread Shawn Milochik
e Group (https://groups.google.com/forum/?hl=en&fromgroups=#!searchin/django-users/audit$20user$20shawn$20milochik) you'll get all the conversations I was involved in, which is, as far as I know, all of them over the past four years. The suggestion by Waldek Herka in one of those threads

Re: Can anyone give me a suggestion or a recommendation as to how I can access the current user's username in the models.py?

2013-03-14 Thread Hendrik Speidel
quot;Simon Chan" To: Subject: Can anyone give me a suggestion or a recommendation as to how I can access the current user's username in the models.py? Date: Thu, Mar 14, 2013 19:59 Essentially, I'm just trying to make a simple email alert system. If anyone creates, modifies o

Re: Can anyone give me a suggestion or a recommendation as to how I can access the current user's username in the models.py?

2013-03-14 Thread Jonathan D. Baker
Perhaps a combination of signals and receivers would fit the bill? Models.py shouldn't be concerned with request objects. Sent from my iPhone On Mar 14, 2013, at 12:59 PM, Simon Chan wrote: > Essentially, I'm just trying to make a simple email alert system. If anyone > creates, modifies or de

Can anyone give me a suggestion or a recommendation as to how I can access the current user's username in the models.py?

2013-03-14 Thread Simon Chan
Essentially, I'm just trying to make a simple email alert system. If anyone creates, modifies or deletes an entry in the admin back end, I'll receive an email as to which user did what to which model. I already figured out how to detect the 3 user actions mentioned above in the models.py as well

Re: Suggestion for using distinct on django 1.4+ in your unit tests?

2013-03-06 Thread Brad Pitcher
I believe sqlite supports "distinct" just not "distinct on". I have always managed to find workarounds using "distinct" anywhere I formerly used "distinct on". On Mar 6, 2013 7:01 AM, "Toran Billups" wrote: > I recently upgraded to django 1.4 and found that my "distinct" queries > don't work anym

Suggestion for using distinct on django 1.4+ in your unit tests?

2013-03-06 Thread Toran Billups
I recently upgraded to django 1.4 and found that my "distinct" queries don't work anymore in my test code because sqlite doesn't support it -how is everyone using this for integration testing? Thank you in advance -- You received this message because you are subscribed to the Google Groups "

Re: google app engine suggestion

2012-11-12 Thread Stefano Tranquillini
Jumping in the thread. is GAE supporting django? i knew that something is supported but not completely (like db is non rel in GAE). is there a tutorial on how to set it up? what did you follow? my 2 cents on the server, right now i'm using AWS free tier, it's for 12months and it's good. after

Re: google app engine suggestion

2012-11-10 Thread Ashwin Kumar
wow thank you, can any one of you write a blog post about how to setup this environment or share a post which you have written earlier. With Best -Ashwin. +91-9959166266 On Sat, Nov 10, 2012 at 10:19 PM, Javier Guerra Giraldez wrote: > On Sat, Nov 10, 2012 at 3:51 AM, Kurtis Mullins > wrote

Re: google app engine suggestion

2012-11-10 Thread Javier Guerra Giraldez
On Sat, Nov 10, 2012 at 3:51 AM, Kurtis Mullins wrote: > I, personally, prefer Nginx and uWSGI but something else may be better for > your particular use case. same here. it's a little different from other solutions, but rock solid, and includes its own process management, so it's really close t

Re: google app engine suggestion

2012-11-10 Thread Kurtis Mullins
Well for development purposes, I just recommend using Django's built-in "runserver" command. It will launch a relatively full-featured HTTP Server for testing on your own computer. The command is "python manage.py runserver" and you should be able to access it using localhost:8000 Otherwise, I thi

Re: google app engine suggestion

2012-11-09 Thread Ashwin Kumar
thank you javier, i am a .net and php developer, i can setup .net and php servers on windows, ubuntu. i am new to django/python. i love python so giving it a try. can you give any idea of setting up my own django server, i found hard time in setting up one. not able to choose between apache and

Re: google app engine suggestion

2012-11-09 Thread Javier Guerra Giraldez
On Fri, Nov 9, 2012 at 11:53 AM, Aswani Kumar wrote: > my question is google app engine supports python 2.7 but django moving > towards python 3.x now with django 1.5 the minimum required version of > python is 2.6. and django 1.6 will be on python 2.7. what will be my future > if i choose google

google app engine suggestion

2012-11-09 Thread Aswani Kumar
hi, i am planning to develop an education related information portal in django and google app engine. my question is google app engine supports python 2.7 but django moving towards python 3.x now with django 1.5 the minimum required version of python is 2.6. and django 1.6 will be on python 2.7

Re: [need advice and suggestion] questions about generating static web page.

2012-09-25 Thread Ezequiel
On Tuesday, September 25, 2012 3:11:45 PM UTC-3, bruce wrote: > > Dear All, > I am a novice. > Currently, > I am thinking to build a simple static personal web page generator for the > people in my group. So, they can login my django powered site and input > their info, such as name, title, pho

[need advice and suggestion] questions about generating static web page.

2012-09-25 Thread bruce
I am stuck with a new problem. The static web page doesn't have HTML tables. For example, person A need a table(5 rows x 3 columns), person B needs a table(2 rows x 2 columns). do you have any suggestion? What kind of topic should I go to google? or, do you have any recommendation?

Re: Looking for common practice suggestion.

2012-07-03 Thread Brian Schott
An intermediate approach would be to generate an initial_data.json/yaml file and place it in your project's fixtures directory. This at least should be database independent. https://docs.djangoproject.com/en/dev/howto/initial-data/ Brian Schott bfsch...@gmail.com On Jul 3, 2012, at 1:33 PM,

Re: Looking for common practice suggestion.

2012-07-03 Thread Robert Steckroth
Well, I guess the user will have to specify the domain and name in the config file. I was hoping the information could be provided in the settings file. Only other way is the admin system which isn't necessary for an otherwise completely automated process. On Tue, Jul 3, 2012 at 1:33 PM, Robert St

Re: am new bird to django,need some suggestion...please please do reply friend..

2012-07-03 Thread manish girdhar
hmmm sorry guysreally appreciated your point..i will surely do that..even i have started with that.. On Tue, Jul 3, 2012 at 12:00 AM, Daniel Roseman wrote: > On Monday, 2 July 2012 18:38:12 UTC+1, rick wrote: >> >> h i will try my best.actually i have already read that >> document

Looking for common practice suggestion.

2012-07-03 Thread Robert Steckroth
Hey Gang, I am writing a framework to install django projects to the cloud. Currently I have the user specifying the site domain and site name in a config file for the django.sites framework and providing the site_id in settings.py. Personally, I change the django.sites entries by issuing mysql com

Re: am new bird to django,need some suggestion...please please do reply friend..

2012-07-02 Thread Daniel Roseman
On Monday, 2 July 2012 18:38:12 UTC+1, rick wrote: > > h i will try my best.actually i have already read that > documentation but when i went to make application,then i got problem in > using filter functions..and this kind of functions are not mentioned in the > documentation.thats

Re: am new bird to django,need some suggestion...please please do reply friend..

2012-07-02 Thread Thomas Lockhart
On 7/2/12 10:38 AM, manish girdhar wrote: h i will try my best.actually i have already read that documentation but when i went to make application,then i got problem in using filter functions..and this kind of functions are not mentioned in the documentation.thats why i was facing

Re: am new bird to django,need some suggestion...please please do reply friend..

2012-07-02 Thread manish girdhar
h i will try my best.actually i have already read that documentation but when i went to make application,then i got problem in using filter functions..and this kind of functions are not mentioned in the documentation.thats why i was facing problem.anyhow i will again read this...but

Re: am new bird to django,need some suggestion...please please do reply friend..

2012-07-02 Thread Timothy Makobu
Once you're over the learning curve, you wont believe how easy Django makes web development. These devs thought, and keep thinking of everything. Just hang in there. On Mon, Jul 2, 2012 at 10:58 AM, manish girdhar wrote: > okay friend.thanks alot. > > > On Mon, Jul 2, 2012 at 11:58 AM, Timot

Re: am new bird to django,need some suggestion...please please do reply friend..

2012-07-02 Thread manish girdhar
okay friend.thanks alot. On Mon, Jul 2, 2012 at 11:58 AM, Timothy Makobu wrote: > First read *ALL* of this http://docs.python.org/tutorial/ if > you haven't already, then redo this tutorial > https://docs.djangoproject.com/en/1.4/intro/tutorial01/ as many times as > you need to to understan

Re: am new bird to django,need some suggestion...please please do reply friend..

2012-07-01 Thread Timothy Makobu
First read *ALL* of this http://docs.python.org/tutorial/ if you haven't already, then redo this tutorial https://docs.djangoproject.com/en/1.4/intro/tutorial01/ as many times as you need to to understand everything in it. On Mon, Jul 2, 2012 at 8:15 AM, manish girdhar wrote: > hmm hmmm no i ha

Re: am new bird to django,need some suggestion...please please do reply friend..

2012-07-01 Thread manish girdhar
hmm hmmm no i have not read that page...can you please send me the link of that page...i didnot find that...i checked http://www.djangobook.com/en/1.0/and http://www.djangobook.com/en/2.0/ and please suggest me some application or link ,which is basic and open source.. so that i can get through of

Re: am new bird to django,need some suggestion...please please do reply friend..

2012-07-01 Thread Daniel Roseman
On Sunday, 1 July 2012 16:07:28 UTC+1, rick wrote: > > hello django lovers, am new bird to this language and i have read django > documentation and did not able to learnt it properly . am making a small > application of *students management system *,in which i have to do*insertion > of new reco

am new bird to django,need some suggestion...please please do reply friend..

2012-07-01 Thread rick
hello django lovers, am new bird to this language and i have read django documentation and did not able to learnt it properly . am making a small application of *students management system *,in which i have to do*insertion of new record ,deletion and search of record. *..and am facing problem a

Re: Django Docs Suggestion - Color Code

2011-10-19 Thread Venkatraman S
A ribbon at the top would be helpful too. I am used to checking the URL generally to avoid cross-version-surprises. -V http://about.me/venkasub -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@go

Re: Django Docs Suggestion - Color Code

2011-10-19 Thread Cal Leeming [Simplicity Media Ltd]
; > > Cheers, > AT > > > On Wed, Oct 19, 2011 at 5:33 AM, Kurtis wrote: > >> Hey Guys, >> >> I know I saw in one of the threads where someone had asked how another >> person had missed the doc's version number. >> >> Just a suggestion on makin

Re: Django Docs Suggestion - Color Code

2011-10-19 Thread Andre Terra
now I saw in one of the threads where someone had asked how another > person had missed the doc's version number. > > Just a suggestion on making these things a bit more obvious, you could > color code them. It doesn't have to be on a per-version basis but > maybe do somet

Django Docs Suggestion - Color Code

2011-10-19 Thread Kurtis
Hey Guys, I know I saw in one of the threads where someone had asked how another person had missed the doc's version number. Just a suggestion on making these things a bit more obvious, you could color code them. It doesn't have to be on a per-version basis but maybe do something along

Re: suggestion for dependency injection in view tests

2011-10-04 Thread Stuart
r) # heavy call > > > during testing I want to use something simple: > > > def suggest(request, usrid = None): > >     current_user = request.facebook.user > >     facebook_friends = [(2, 'John Doe'), (4, 'Jane Doe'), (5, 'The > > Frog&

Re: suggestion for dependency injection in view tests

2011-10-04 Thread Stuart
t; during testing I want to use something simple: > > def suggest(request, usrid = None): >     current_user = request.facebook.user >     facebook_friends = [(2, 'John Doe'), (4, 'Jane Doe'), (5, 'The > Frog')] > > Any suggestion how to do mocking/

suggestion for dependency injection in view tests

2011-10-04 Thread Reikje
, (4, 'Jane Doe'), (5, 'The Frog')] Any suggestion how to do mocking/DI from a view? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe

Re: Question/Suggestion on using mod_wsgi with Django

2010-09-05 Thread DaveP
nd Django, I am liking it, but it needs some work > > on the "getting it out of development and into production front" > > > Thanks Again. > > > On Sep 5, 7:05 pm, Graham Dumpleton > > wrote: > > > > On Sep 6, 5:01 am, DaveP wrote: > > > >

Re: Question/Suggestion on using mod_wsgi with Django

2010-09-05 Thread Graham Dumpleton
ep 5, 7:05 pm, Graham Dumpleton > wrote: > > > > > On Sep 6, 5:01 am, DaveP wrote: > > > > Let me first state, I'm fairly new to Python and even newer to Django, > > > so if what I'm mentioning is already an ongoing effort, I apologize. > >

Re: Question/Suggestion on using mod_wsgi with Django

2010-09-05 Thread DaveP
p 6, 5:01 am, DaveP wrote: > > > Let me first state, I'm fairly new to Python and even newer to Django, > > so if what I'm mentioning is already an ongoing effort, I apologize. > > > I was reviewing the following > > documentation:http://docs.djangop

Re: Question/Suggestion on using mod_wsgi with Django

2010-09-05 Thread Graham Dumpleton
/howto/deployment/modwsgi/. > > I has a question/possible suggestion. The documentation suggests that > you should place your wsgi file in your project, which I think is a > very valid location for it. No it isn't and the documentation of the mod_wsgi site warns against doing that. Inste

Question/Suggestion on using mod_wsgi with Django

2010-09-05 Thread DaveP
Let me first state, I'm fairly new to Python and even newer to Django, so if what I'm mentioning is already an ongoing effort, I apologize. I was reviewing the following documentation: http://docs.djangoproject.com/en/dev/howto/deployment/modwsgi/. I has a question/possible sugge

Staticstic app, any suggestion?

2010-08-30 Thread romi.lucian
I want to make a statistic app. There is a float field in my model(table). I want to use a chart to show what's the percentage in each range. Any suggestion to make such and app that can fit into django model. Thanks. -- You received this message because you are subscribed to the Google G

project management app suggestion

2010-08-17 Thread Bobby Roberts
hi all... there have been posts in the past about project management apps but all of the threads seem dated by quite a bit. I am wondering if there is any project management (ie like basecamp) app out there that can be easily installed in the django /admin. Please let me know if you know of anyth

Re: any suggestion about how to build Continuous testing for django project?

2010-02-02 Thread Simon Brunning
On 1 February 2010 17:25, pyleaf wrote: > I am new for django. > any suggestion about how to build Continuous testing for django project? If you build your Django app with buildout (<http://bit.ly/cmdMQy>) you could try Hudson (<http://bit.ly/aSPpog>). I'm going to be giv

Re: any suggestion about how to build Continuous testing for django project?

2010-02-02 Thread timc3
Or you could try BuildBot. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more opt

Re: any suggestion about how to build Continuous testing for django project?

2010-02-02 Thread Phlip
pyleaf wrote: > what about bitten? I can't find a screenshot. Can it compete with this? http://c0485891.cdn.cloudfiles.rackspacecloud.com/620ad37c-398d-4509-ae45-b88399c1c4a6_2_full.jpeg Also note that _none_ of those should be red. I'm sure the crew only broke them just to illustrate the alarm

Re: any suggestion about how to build Continuous testing for django project?

2010-02-01 Thread pyleaf
what about bitten? On Tue, Feb 2, 2010 at 4:12 AM, Phlip wrote: > pyleaf wrote: > > > I am new for django. > > any suggestion about how to build Continuous testing for django project? > > install fabric - and don't worry about its remote options yet. Then > cr

Re: any suggestion about how to build Continuous testing for django project?

2010-02-01 Thread Phlip
pyleaf wrote: > I am new for django. > any suggestion about how to build Continuous testing for django project? install fabric - and don't worry about its remote options yet. Then create a fabfile.py at the root of your app. Create 3 targets; pull, test, and int. They pull from Git

any suggestion about how to build Continuous testing for django project?

2010-02-01 Thread pyleaf
I am new for django. any suggestion about how to build Continuous testing for django project? -- Believing is Everything. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegrou

Re: Humble-structure sites on Django // Suggestion needed

2009-12-20 Thread Brian McKeever
If the about page is static, you probably don't need any models for it. A simple template should do, or you could use flat pages if you want your client to be able to edit it easily on their own. http://docs.djangoproject.com/en/dev/ref/contrib/flatpages/ The contacts page probably just needs a Co

Re: Humble-structure sites on Django // Suggestion needed

2009-12-20 Thread tezro
Thanks for reply. The main trouble for me is nearly how to do that "right" with the MVT layer. I'm not really sure how to write models for such a small yet compound structure. How do I make, say, the first and second pages (about and contacs) with some different fields? I will reproduce the metho

Re: Humble-structure sites on Django // Suggestion needed

2009-12-19 Thread Brian McKeever
I'm not sure I'm entirely understanding your question, but yes, that does look easy to implement with django. What part is troubling you? You seem to have a good idea of what you want. On Dec 17, 6:42 am, tezro wrote: > Hello everyone. Making well-structured websites on Django is a very > compre

Humble-structure sites on Django // Suggestion needed

2009-12-17 Thread tezro
Hello everyone. Making well-structured websites on Django is a very comprehensive process. All these blogs, news, user-related stuff - easy. But what about, say, corporate website? I mean I got a project to do, thought it would be great to base it on Django as usual, but... Look at the structure,

  1   2   >