Re: drop-in replacement for admin module foreign key relation UI

2015-02-16 Thread Jani Tiainen
On Mon, 16 Feb 2015 15:03:05 -0800 (PST) Jani Kajala wrote: > Hi all, > > I have tons of objects referenced by ForeignKey in Django Admin module UI, > and I would like to replace it with something more optimal, e.g. auto-fill > input box or something. > > My model looks

ImportError

2015-02-16 Thread Petar Pilipovic
Hello all, I am trying to build and e_commerc django app, but I have encounter an confusing error. Mine Error is: Environment: Request Method: GET Request URL: http://127.0.0.1:8000/ Django Version: 1.7.4 Python Version: 2.7.6 Installed Applications: ('django.contrib.admin',

Django Inline formset with jquery

2015-02-16 Thread Ajay Kumar
Hello all, I'm trying to build this following link feature in django, http://demo.smarttutorials.net/jquery-autocomplete/ Here by choosing serial_no and the rest of the fields name and author should be auto populate. Auto populate works for first inline formset and able to save it but when

drop-in replacement for admin module foreign key relation UI

2015-02-16 Thread Jani Kajala
Hi all, I have tons of objects referenced by ForeignKey in Django Admin module UI, and I would like to replace it with something more optimal, e.g. auto-fill input box or something. My model looks something like this: class SoapCall(models.Model): customer = models.ForeignKey(Customer,

Re: Implementing a grammar checker on the web

2015-02-16 Thread Ricardo Daniel Quiroga
security disable CORS, and add CSRF tokken verification.. if only going to implement the grammar interpreter is way too django uses something simpler like bottle or flask 2015-02-16 16:02 GMT-03:00 Ricardo Daniel Quiroga : > Hi > > html + textarea + javascript + AJAX? >

Re: Implementing a grammar checker on the web

2015-02-16 Thread Ricardo Daniel Quiroga
Hi html + textarea + javascript + AJAX? 2015-02-16 9:58 GMT-03:00 Kelvin Nyota : > I have built a grammar checker in Python. It works well in the terminal, > but i don't know how to implement it on the web. How can I implement a > grammar checker on the web, like

Re: my mysite/templates/admin/base_site.html is ignored (tutorial unclear?)

2015-02-16 Thread Djarum Tujuhenam
I am using Debian 7 and Python 2.7, Django version 1.7 Reading the Tutorial on the exactly same page : https://docs.djangoproject.com/en/1.7/intro/tutorial02/ The result is our admin template completely ignored. -- You received this message because you are subscribed to the Google Groups

Re: how to get a link to an absolute hyperlink

2015-02-16 Thread dk
doing the http at the front did work! thanks. On Friday, February 13, 2015 at 5:09:15 PM UTC-6, Vijay Khemlani wrote: > > Try adding "http://; at the start > > Also, consider that the format is 111.111.111.111: (the port is after > a colon, not a dot) > > On Fri, Feb 13, 2015 at 8:03 PM, dk

Re: Chess App

2015-02-16 Thread dravid rahul
Thank you Cal, Right now i am working on that .Anywhere if i get stuck please help me with this On Monday, February 16, 2015 at 7:03:24 PM UTC+5:30, Cal Leeming wrote: > > Hello, > > This should help; > https://www.facebook.com/help/110919988996182 > > As for chess, you can look at; >

Re: Chess App

2015-02-16 Thread Cal Leeming
Hello, This should help; https://www.facebook.com/help/110919988996182 As for chess, you can look at; https://pypi.python.org/pypi/python-chess Also, try and use Google in future to answer questions like these, I was able to find this first time by searching for "how to make a facebook app"

Implementing a grammar checker on the web

2015-02-16 Thread Kelvin Nyota
I have built a grammar checker in Python. It works well in the terminal, but i don't know how to implement it on the web. How can I implement a grammar checker on the web, like Grammarly or spellcheckerplus? I could not find any article that talked about that at all.Most of it was

Re: File upload error

2015-02-16 Thread Amirouche Boubekki
Héllo Sola, Can you post the full stacktrace not only the error? Regards On Mon Feb 16 2015 at 11:20:42 AM Sola Chong wrote: > I having a error "*expected string or buffer*" when submit to upload > avatar when edit profile. Can't figure out what is the problem.. > >

File upload error

2015-02-16 Thread Sola Chong
I having a error "*expected string or buffer*" when submit to upload avatar when edit profile. Can't figure out what is the problem.. *Model:* class MyProfile(models.Model): user = models.ForeignKey(User) dob = models.DateField(null=True, blank=True) address =