Save data from list display page django admin

2013-12-11 Thread Nikhil Verma
Hi All Need help in solving this question ! http://stackoverflow.com/questions/20513675/how-to-save-data-from-list-display-page-in-django-admin Thanks in Advance. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

access request variable from middlewares into my main project urls

2013-05-21 Thread Nikhil Verma
ule_name[5:] url_path = r"^manage/%s/?$" % (model.lower()) view_name = "admin_manage_%s" % (model.lower()) urlpatterns += patterns('project_name.%s.views' % app_name, url(url_path, view_name, name=view_name),

Re: On the fly image resize

2013-02-02 Thread Nikhil Verma
t; group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To post to this group, send email to django-users@googlegroups.com. > Visit this group at http://groups.google.com/group/django-users?hl=en.

Re: initial argument in forms not working for me

2013-01-27 Thread Nikhil Verma
rField(max_length=10, widget=RadioSelect > > (choices=PROFILE_TYPE), >initial='Public', >required=False > ) > Thanks On Mon, Jan 28, 2013 at 11:05 AM, Nikhi

initial argument in forms not working for me

2013-01-27 Thread Nikhil Verma
(choices=PROFILE_TYPE), initial='Public', required=False ) I want that when i open this form the radio button with choice public should be pre selected. Can anybody explain what mistake you are

Re: PHP vs Django

2013-01-27 Thread Nikhil Verma
is ? Thanks On Mon, Jan 28, 2013 at 9:24 AM, Vijaya Reddy P R wrote: > Is it possible to get job in companies like Google,Amazon,Cisco,. > > > On Sun, Jan 27, 2013 at 7:50 PM, Nikhil Verma wrote: > >> Well i would say its all about money and passion for programming.

Re: PHP vs Django

2013-01-27 Thread Nikhil Verma
it https://groups.google.com/groups/opt_out. > > > -- Regards Nikhil Verma +91-958-273-3156 -- 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+u

Django Nested template block

2013-01-14 Thread Nikhil Verma
} Thanks -- Regards Nikhil Verma +91-958-273-3156 -- 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 from this group, send email to d

Re: alternate way for nested inline in django admin

2012-12-29 Thread Nikhil Verma
Hi All Can somebody explain me the workaround for this ticket 9025. I want to nested inlines in my django admin explained below. Thanks in advance On Fri, Dec 28, 2012 at 10:54 PM, Nikhil Verma wrote: > Hi Guys > > Here are my models :- > > class Blog(models.Model): > &q

alternate way for nested inline in django admin

2012-12-28 Thread Nikhil Verma
, 'title','meta_description', 'description', 'category', 'image','video', 'save_as_draft', 'featured', 'tags']})] #readonly_fields = ['seo_tag

Re: Set Permissions in User model from views

2012-12-06 Thread Nikhil Verma
going to the admin. Thanks On Thu, Dec 6, 2012 at 5:20 PM, Tom Evans wrote: > On Thu, Dec 6, 2012 at 8:10 AM, Nikhil Verma > wrote: > > Hi All > > > > I am developing a simple app in which i have to play with user > permissions.I > > register a user(during a s

Re: How to introduce a text area as a field of a database entry

2012-12-06 Thread Nikhil Verma
is group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > -- Regards Nikhil Verma +91-958-273-3156 -- You received this message because you are subscribed to the Google Groups &

Add chosen user Permission in User table from Avaliable user Permissions by writing code

2012-12-06 Thread Nikhil Verma
it from code example everytime the user gets selected i want some permissions(which is already persent in Available permission box) get saved to choosen permission box from code.How can i do this ? -- Regards Nikhil Verma +91-958-273-3156 -- You received this message because you are subscribed

Set Permissions in User model from views

2012-12-06 Thread Nikhil Verma
'] new_user.email = data['email'] new_user.is_locked = True new_user.save() new_user.user_permissions('Can add department') profile = new_user.profile key = uuid.uuid4().__str__() profile.key = key profile.save() if new_user and profile: return new_user els

Re: Template syntax error: Could not parse the remainder: '-login' from 'accounts-login'

2012-12-03 Thread Nikhil Verma
sit > https://groups.google.com/d/msg/django-users/-/g19mRQ4vHd4J. > To post to this group, send email to django-users@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://gr

Re: Stop executing template tag

2012-10-23 Thread Nikhil Verma
Thanks to all . But Tome and Russel answers were absolutely correct.Worked like a charm. {% templatetag openvariable %} hello {% templatetag closevariable On Fri, Oct 19, 2012 at 4:16 PM, Russell Keith-Magee < russ...@keith-magee.com> wrote: > On Fri, Oct 19, 2012 at 6:21 PM, Nik

Stop executing template tag

2012-10-19 Thread Nikhil Verma
can i achieve this ? -- Regards Nikhil Verma +91-958-273-3156 -- 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 from this group, send email to dj

Re: custom500 page does not show up ?

2012-07-04 Thread Nikhil Verma
500 page. I am amazed then why 404 is working. On Wed, Jul 4, 2012 at 11:28 PM, Melvyn Sopacua wrote: > On 4-7-2012 19:08, Nikhil Verma wrote: > > Hi Melvyn > > > > > > > > [ ] Make sure your custom page is not sent with tools like netcat, > > telnet or cu

Re: custom500 page does not show up ?

2012-07-04 Thread Nikhil Verma
. On Wed, Jul 4, 2012 at 9:28 PM, Melvyn Sopacua wrote: > On 4-7-2012 5:21, Nikhil Verma wrote: > > HI All > > > > I have made a custom and a very simple 500.html page. However when i make > > debug=False and some error come in website > > still it show basic s

custom500 page does not show up ?

2012-07-03 Thread Nikhil Verma
custom 500 page. I tried by making a custom function and then setting the handler500="path" but still with no luck. Anyone can help in this as to how can i resolve this problem? Thanks -- Regards Nikhil Verma +91-958-273-3156 -- You received this message because you are subscribed

Re: Upload a valid image. The file you uploaded was either not an image or a corrupted image.

2012-07-01 Thread Nikhil Verma
could not be > found? > > Maybe you don't have the correct roots included? > > I'm not sure Django (that's what you're using, using right?) would use > pillow, especially when PIL is available too. > Le 1 juil. 2012 19:34, "Nikhil Verma" a écrit

Re: Upload a valid image. The file you uploaded was either not an image or a corrupted image.

2012-07-01 Thread Nikhil Verma
nikhil/Citysom/bin/pildriver.py to 775 changing mode of /home/nikhil/Citysom/bin/pilconvert.py to 775 Successfully installed pillow Cleaning up... (Citysom)nikhil@nikhil-desktop:~/Citysom/citysom$ python manage.py runserver 8080 On Sun, Jul 1, 2012 at 10:37 PM, Nikhil Verma wrote: > Hi Thom

Re: Upload a valid image. The file you uploaded was either not an image or a corrupted image.

2012-07-01 Thread Nikhil Verma
irectory and the egg and remove them > from your system. Then, I reinstall using apt, easy install or pip. Don't > forget to sudo. > Le 1 juil. 2012 18:38, "Nikhil Verma" a écrit : > > HI Thomos >> >> I tried this >> >> nikhil@nikhil-deskt

Re: Upload a valid image. The file you uploaded was either not an image or a corrupted image.

2012-07-01 Thread Nikhil Verma
bjpeg62-dev_6b1-1ubuntu2_amd64.deb) ... Setting up libjpeg62-dev (6b1-1ubuntu2) ... nikhil@nikhil-desktop:~$ Still the same error. On Sun, Jul 1, 2012 at 10:02 PM, Thomas Orozco wrote: > Installing the packages through apt-get gave you the error? > > Could you please post the full output of

Re: Upload a valid image. The file you uploaded was either not an image or a corrupted image.

2012-07-01 Thread Nikhil Verma
/home/nikhil/Citysom/local/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg/setuptools/package_index.py", line 475, in fetch_distribution AttributeError: 'NoneType' object has no attribute 'clone' Thanks for help On Sun, Jul 1, 2012 at 9:53 PM, Thomas Orozco wrote: > Do you h

Upload a valid image. The file you uploaded was either not an image or a corrupted image.

2012-07-01 Thread Nikhil Verma
? Thanks in advance -- Regards Nikhil Verma +91-958-273-3156 -- 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 from this group, send email to dj

Re: Handling millions of rows + large bulk processing (now 700+ mil rows)

2012-07-01 Thread Nikhil Verma
que los datos personales que facilite/ha facilitado pasarán a > formar parte de un fichero responsabilidad de bebabum, S.L. y que tiene > por finalidad gestionar las relaciones con usted. > Tiene derecho al acceso, rectificación cancelación y oposición en nuestra > oficina ubicada en c/ Còrse

Re: invalid keyword argument for this function

2012-06-30 Thread Nikhil Verma
hing in the > Event model's save method) > > You would need to debug it further, and pinpoint the location of this > error. > > > On Saturday, June 30, 2012 8:37:34 PM UTC+5:30, Nikhil Verma wrote: > >> Yes its with the braces ")" also. >> >>

Re: invalid keyword argument for this function

2012-06-30 Thread Nikhil Verma
Yes its with the braces ")" also. On Sat, Jun 30, 2012 at 8:36 PM, Nikhil Verma wrote: > Hi Sunny > > I am trying with this > > *event_genre = event_form.cleaned_data['event_genre'] > event_public = event_form.cleaned_data['

Re: invalid keyword argument for this function

2012-06-30 Thread Nikhil Verma
o see the problem. > > Thanks, > Sandeep > > > On Saturday, June 30, 2012 8:14:28 PM UTC+5:30, Nikhil Verma wrote: > >> Hi Sunny >> >> I realized that earlier sunny, and cleared that defect but i get stuck >> into this error >> >> Traceback: >

Re: invalid keyword argument for this function

2012-06-30 Thread Nikhil Verma
e reason behind this is that M2M Fields are represented > by intermediate tables with references to the two linked objects. If you > need to add a row in it, both referenced objects should already be saved in > the db with valid primary keys. > > H2H > -Sandeep > >

Re: how to manage range of hours in models and forms in django1.4

2012-06-29 Thread Nikhil Verma
>> > > While creating the forms, take input from the user for the WorkingHours > model. This way, the days of work will not be hardcoded, and user can > select mutiple choices. > > Regards, > Sandeep > > > > On Friday, June 29, 2012 10:16:47 AM UTC+5:30, Nikh

Re: how to manage range of hours in models and forms in django1.4

2012-06-29 Thread Nikhil Verma
alid(). > > Apologies if I've misunderstood :) > > -- > Jon Black > www.jonblack.org > > > On Fri, Jun 29, 2012, at 10:16, Nikhil Verma wrote: > > > Hi > > I am developing an event app which has users who publish events , other > users al

how to manage range of hours in models and forms in django1.4

2012-06-28 Thread Nikhil Verma
d the user can fill the time and when he hits submit it will get saved. Thanks in advance. -- Regards Nikhil Verma +91-958-273-3156 -- 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@g

Re: Update database with model changes

2012-06-07 Thread Nikhil Verma
bscribed to the Google Groups > "Django users" group. > To post to this group, send email to django-users@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.googl

Re: global name 'content' is not defined

2012-05-27 Thread Nikhil Verma
esponse("view.html", {"page_name":page_name, > "content":content},context_instance=RequestContext(request)) > > Exception Type: NameError at /wikicamp/start/ > Exception Value: global name 'content' is not defined > > > PLs help..:( > &

Re: Store base64 data in database with imagefield ?

2012-05-15 Thread Nikhil Verma
PUBLIC KEY BLOCK- > > -- > 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 from this group, send email to > django-users+unsubs

Modify __unicode__

2012-05-02 Thread Nikhil Verma
to achieve this ? If there is other ways to achieve this that involves changing the table structure i won't mind. Thanks -- Regards Nikhil Verma +91-958-273-3156 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to

Re: Display Video inside a Text field -Django Templates

2012-04-28 Thread Nikhil Verma
layer and use youtube api's if needed to render and load. > > > Pratik Mandrekar > > On Apr 28, 7:56 am, Nikhil Verma wrote: > > Hi All > > > > I have a TextField to which after applying css it looks like a markup > > editor where i write some text, paste fi

Display Video inside a Text field -Django Templates

2012-04-27 Thread Nikhil Verma
(post.get_absolute_url()) return {'form': form, 'post': post, } Template {% if post.user.forum_profile.signature %} {{ post.user.forum_profile.signature|safe }} # This is the textfield. {% endif %} -- Regards Nikhil Verma +91-958-273-31

Increased number of columns in admin/change_list page leads to cross page boundary

2012-04-18 Thread Nikhil Verma
right direction to see what those columns contain. Is there any django way to solve this problem. Like we have class Media to alter the individual widget in admin ? If not what the best way ? Thanks in advance ! -- Regards Nikhil Verma +91-958-273-3156 -- You received this message because you

Re: Python Developer

2012-04-02 Thread Nikhil Verma
losure or any action in reliance on the contents is > strictly prohibited. > > > > > > > > -- > 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@googlegr

sorting a list of objects when objects is returning two fields

2012-04-01 Thread Nikhil Verma
ered_total_visit_ids = sorted(total_visit_ids, key=lambda x: x.patient, reverse=False) Thanks for help in advance. -- Regards Nikhil Verma +91-958-273-3156 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send emai

Re: django-admin change form page validation

2012-03-31 Thread Nikhil Verma
0 AM, dummyman dummyman wrote: > ok. in admin,.py file > > > override the response_change method > > def response_change(self,request,obj) > > obj is the handler > > so u can check using obj.field_name and take approp action > > > On Sat, Mar 31, 2012 at

Re: django-admin change form page validation

2012-03-30 Thread Nikhil Verma
2012 at 10:28 AM, dummyman dummyman wrote: > Hi > > unless u dont specify blank=True or null = True in modes for d > corresponding fields, django will throw an errror if u don fill up the field > > On Sat, Mar 31, 2012 at 9:25 AM, Nikhil Verma wrote: > >> Hi All >>

Re: comparing custom template tag within if tag

2012-03-29 Thread Nikhil Verma
ail to django-users@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- Regards Nikhil Verma +91-958-273-3156 -- You r

comparing custom template tag within if tag

2012-03-28 Thread Nikhil Verma
vice.price == price_for_pax service pax ' ' %} do something {% endif %} When i look for the result it does not show anything Can i compare like this ? If not what can be the solution ? Thanks in advance -- Regards Nikhil Verma +91-958-273-31

playing with random number

2012-03-25 Thread Nikhil Verma
me random number. How can i achieve this ? Thanks in advance. -- Regards Nikhil Verma +91-958-273-3156 -- 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 unsubs

Re: sql for Many To Many Field in existing django model

2012-03-24 Thread Nikhil Verma
www_researchprotocol"."id" = "visit_vis... ^ Any help will be appreciated. Thanks in advance. On Thu, Mar 22, 2012 at 6:26 PM, Joel Goldstick wrote: > On Thu, Mar 22, 2012 at 6:55 AM, Nikhil Verma > wrote

Re: Autofill dropdown with django

2012-03-22 Thread Nikhil Verma
googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > -- Regards Nikhil Verma +91-958-273-3156 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send

sql for Many To Many Field in existing django model

2012-03-22 Thread Nikhil Verma
rch_protocol_visit_id_research_protocols_i_key" for table "visit_visit_research_protocols" psql:db/2012-03-22_research_id.sql:8: ERROR: there is no unique constraint matching given keys for referenced table "www_researchprotocol" What mistake i am doing ? Thanks in ad

Re: Basic Random Number Generation

2012-03-21 Thread Nikhil Verma
the 101 comes again in that function it will generate the same random number. I read about random.seed but how can i relate that in my case. Thanks for help. On Wed, Mar 21, 2012 at 1:01 PM, Jani Tiainen wrote: > 21.3.2012 9:19, Nikhil Verma kirjoitti: > > Hi All >> >>

Basic Random Number Generation

2012-03-21 Thread Nikhil Verma
y request >>>987657 >>>random_number(100) >>>987647 >>>random_number(6) # if the same input comes again it would generate a same random number >>>987657 If the same input cannot be generated any other way to do this part Any help would be appreciated.

Re: Why '&' is breaking Django CharField(python strings) into parts?

2012-03-12 Thread Nikhil Verma
> django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > -- Regards Nikhil Verma +91-958-273-3156 -- You received this message because you are subscribed to the Google Groups "Django use

Re: Why '&' is breaking Django CharField(python strings) into parts?

2012-03-12 Thread Nikhil Verma
you need an > ampersand (&) in your HTML. That should fix this. There are other ways, > like percentage encoding ( > http://www.blooberry.com/indexdot/html/topics/urlencoding.htm) you can > use when you need to generate URLs that contain a literal ampersand. > > On Mon, Mar 12, 201

Why '&' is breaking Django CharField(python strings) into parts?

2012-03-12 Thread Nikhil Verma
now then how to solve the problem. I try having a look to url -encode but no luck . I want whatever the drop value contains (&,@ etc) it should not break ? How to solve the problem ? Thanks in advance -- Regards Nikhil Verma +91-958-273-3156 -- You received this message because you are su

pysvn logging problem

2012-03-09 Thread Nikhil Verma
is giving ValueError: I/O operation on closed file Also i view.py i have def login(*args): return True, 'nikhilverma', 'nikhil', True -- Regards Nikhil Verma +91-958-273-3156 -- You received this message because you are subscribed to the Google Groups "Django

Re: How to use post_save signal ?

2012-03-04 Thread Nikhil Verma
Hi akaariai I solved my problem by using snippet 1633 FileField/ImageField. Thanks for making my concept in signals. On Sun, Mar 4, 2012 at 7:23 PM, akaariai wrote: > On Sunday, March 4, 2012 3:12:20 PM UTC+2, Nikhil Verma wrote: >> >> Hi akaariai >> >> As you said

Re: How to use post_save signal ?

2012-03-04 Thread Nikhil Verma
t ? Thanks for help in advance . On Sun, Mar 4, 2012 at 6:22 PM, akaariai wrote: > > On Sunday, March 4, 2012 12:31:50 PM UTC+2, Nikhil Verma wrote: >> >> Hi all >> >> I am using Django-1.2.5 and i want to use post_save signal in the >> follow

How to use post_save signal ?

2012-03-04 Thread Nikhil Verma
nce.pk) old_record.delete() except sender.DoesNotExist: pass signals.post_save.connect(delete_old_image, sender=Trip) How can i achieve this task by using signals or without signals. Any help will be appreciated. -- Regards Nikhil Verma +91-958-273-3156 -- You receive

Re: Could someone please give some suggestions about how to set up email sending settings on production.

2012-01-19 Thread Nikhil Verma
gt; Thanks very much > Best regards > > > -- > ⚡ Chen Xu ⚡ > > -- > 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 from t

Replicate admin format in django template

2012-01-12 Thread Nikhil Verma
field in whatever manner whether he gave whitespaces,breaks,press return it should appear exactly the same in html. How can i achieve this ? Regards Nikhil Verma -- Regards Nikhil Verma +91-958-273-3156 -- You received this message because you are subscribed to the Google Groups "Django

How to encrypt DateTimeField in models.py ?

2012-01-09 Thread Nikhil Verma
execute(query, args) Exception Type: DatabaseError at /visit/setup/ Exception Value: invalid input syntax for type date: "$AES$55403376ed906e119b0f7779554fbb51" LINE 1: ...L, NULL, '$AES$0452edae035cc33c4084e7b0fb39edd7', '$AES$5540...

Re: Happy new year

2011-12-31 Thread Nikhil Verma
d to the Google Groups > "Django users" group. > To post to this group, send email to django-users@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.g

Re: Django app for IP address lookup

2011-12-31 Thread Nikhil Verma
ions, visit this group at > http://groups.google.com/group/django-users?hl=en. > -- Regards Nikhil Verma +91-958-273-3156 -- 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@goo

Re: {% elif %} error

2011-12-27 Thread Nikhil Verma
; -- > 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 from this group, send email to > django-users+unsubscr...@googlegroups.com. > For

Re: {% elif %} error

2011-12-27 Thread Nikhil Verma
oup. > To post to this group, send email to django-users@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- Regard

admin media files are not showing up in deployment

2011-12-02 Thread Nikhil Verma
The problem is my admin files is are not coming up.Every media files in project is coming except the admin media.all its css ,js,img are not coming. Thanks in advance -- Regards Nikhil Verma +91-958-273-3156 -- You received this message because you are subscribed to the Google Groups "D

rename a model field

2011-12-02 Thread Nikhil Verma
d to 'full_name' db.rename_column('app_foo', 'name', 'full_name') Its giving me an error Caught TypeError while rendering: coercing to Unicode: need string or buffer, tuple found I will appreciate if anyone can tell me a easy way.Thanks in advance --

add project directory path to python path permanently

2011-12-01 Thread Nikhil Verma
r i do sys.path it should show me Project Directory path in PYTHONPATH -- Regards Nikhil Verma +91-958-273-3156 -- 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 unsubsc

Re: cannot connect to postgresql database

2011-11-24 Thread Nikhil Verma
/group/django-users?hl=en. > > > > > > -- > CHEERS, TANYA > > -- > 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 unsub

Re: cannot connect to postgresql database

2011-11-24 Thread Nikhil Verma
sers@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- Regards Nikhil Verma +91-958-273-3156 -- You received this message be

Re: how to uninstall the django version

2011-11-22 Thread Nikhil Verma
need to program files then python2.x then agin in site-packages delete the django folder and you are good to install the required version you want.(What i remember ?) Please specify your environment conditions also. Hope this may help you !!! -- Regards Nikhil Verma +91-958-273-3156 On Tue

Re: The name of my User

2011-11-13 Thread Nikhil Verma
oglegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- Regards Nikhil Verma +91-958-273-3156 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send e

Re: django-shortcuts

2011-11-10 Thread Nikhil Verma
g today? If not, I wasted it. > > -- > 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 from this group, send email to > django-user

Re: 2 settings files importing one to the other - problem

2011-11-09 Thread Nikhil Verma
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 from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this

Re: Best UI for Django

2011-11-09 Thread Nikhil Verma
om this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- Regards Nikhil Verma +91-958-273-3156 -- You received this message because you are subscribed to the Google Groups &quo

override ModelChoiceField attribute queryset ( Tablename.objects.none() )

2011-11-09 Thread Nikhil Verma
Hi , I am a newbie in django and come across this problem Description :- I have a ModelForm which contain a field class VisitSetupForm(Form): list_visit_ids = ModelChoiceField(queryset=Visit.objects.none(), empty_label='Select Revisit ID',required=False) Now in the server i want not to load all t