Re: [Solved] Re: How can I refresh admin_urls

2019-02-25 Thread Dylan Reinhold
Thanks for sharing Mike. Dylan On Mon, Feb 25, 2019 at 9:35 PM Mike Dewhirst wrote: > Thank you all for your attention. Kept me going. (another resend this time > hopefully it will be laid out better) > > The fix is to initialise the self.change_form_template to None *every* > time

[Solved] Re: How can I refresh admin_urls

2019-02-25 Thread Mike Dewhirst
Thank you all for your attention. Kept me going. (another resend this time hopefully it will be laid out better) The fix is to initialise the self.change_form_template to None *every* time ModelAdmin.change_form() is called. If it is None the

[Solved] Re: How can I refresh admin_urls

2019-02-25 Thread Mike Dewhirst
Thank you all for your attention. Kept me going. The fix is to initialise the self.change_form_template to None *every* time ModelAdmin.change_form() is called. If it is None the ModelAdmin.render_change_form() method will dynamically create the model instance change form. Otherwise it uses

test message

2019-02-25 Thread Mike Dewhirst
No need to answer this. I'm just seeing if googlegroups sends it me. Haven't much from the list since gmail got itself listed in SORBS the other day - and in particular I didn't get a message I posted in the browser. -- You received this message because you are subscribed to the Google Groups

Do we have solutions for this?

2019-02-25 Thread Roshan Shah
Dear All, In Django based Job Portal (Open Source Initiative), I have few questions: We need to find out if there are packages that can help in 1) blocking domains (such as Yandex.ru) or specific IP address that spam the site 2) Any packages that will verify if PDF/Doc file is actually a resume

Re: Invalid pk \"1\" - object does not exist.

2019-02-25 Thread opt visitor
Can you please explain how to define I'd in model.Cascade On Feb 26, 2019 4:14 AM, "Phako Perez" <13.phak...@gmail.com> wrote: I guess you need to define first the id in models.CASCADE, When you try to insert as per your table definition it looks for the key on that table manager =

Re: How can I refresh admin_urls

2019-02-25 Thread Mike Dewhirst
On Sunday, February 24, 2019 at 11:25:13 AM UTC+11, Scot Hacker wrote: > > Django Admin is customizable to an extent, but at a certain point those > customizations can cost you more time than they save, and it makes more > sense to build your business logic in a standard app/view. Without

Re: Tag block and endblock

2019-02-25 Thread Motaz Hejaze
If you have multiple pages in a website , say , home page , about page and contact page , now all common content that is not changing from page to like navbar , header and footer you place them in a template page you can call it layout.html , and in this template page layout .html you define a

Re: Tag block and endblock

2019-02-25 Thread Phako Perez
If you see at the beginning of your template it loads/import another file which actually contains the part of code which goes in there, this block has same name like myBlock. Hope this is helpful Happy coding! Sent from my iPhone > On Feb 25, 2019, at 4:06 PM, Nexx wrote: > > Wht is the

Re: Invalid pk \"1\" - object does not exist.

2019-02-25 Thread Phako Perez
I guess you need to define first the id in models.CASCADE, When you try to insert as per your table definition it looks for the key on that table > manager = models.ForeignKey('self', null=True, > related_name='employee',on_delete=models.CASCADE) Hope this can be helpful Happy coding!!!

Tag block and endblock

2019-02-25 Thread Nexx
Wht is the purpose of the tag {% block myBlock %} I red the document but i don't underatand. -- 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

Re: MySQL CRUD

2019-02-25 Thread Motaz Hejaze
Do you mean while code is running ? You want to automate the creation of tables ? On Mon, 25 Feb 2019, 21:53 Thomas Lockhart, wrote: > A good way to get started is to follow the Django tutorial on the polling > app. The mailing list will be happy to answer specific questions you might > have.

Re: MySQL CRUD

2019-02-25 Thread Thomas Lockhart
A good way to get started is to follow the Django tutorial on the polling app. The mailing list will be happy to answer specific questions you might have. Good luck! - Tom > On Feb 25, 2019, at 10:12 AM, Darshan Gohel > wrote: > > How to Create tables using Django ? > And how to insert

MySQL CRUD

2019-02-25 Thread Darshan Gohel
How to Create tables using Django ? And how to insert values into it using django itself ? Thank you ! -- 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

Re: looking for team members as my technical Advisory

2019-02-25 Thread Harryxon Ndegwa
Hello am interested and would like to participate in this,from nairobi kenya On Mon, 25 Feb 2019 8:50 pm khaled hadjali Hello I’m interested , contact me if you would > > On Fri, Feb 22, 2019 at 11:02 AM Nura Bash wrote: > >> Good day, all am Nura bashir CEO of Teamlead enterprise Nigeria, am

Re: looking for team members as my technical Advisory

2019-02-25 Thread khaled hadjali
Hello I’m interested , contact me if you would On Fri, Feb 22, 2019 at 11:02 AM Nura Bash wrote: > Good day, all am Nura bashir CEO of Teamlead enterprise Nigeria, am > looking for Technical advisory members for my project which am about to > start here in West Africa, is a plot project from 10

Re: the name of Django package

2019-02-25 Thread Ing.Daniel Bojorge
I think it is not advisable to allow this type of action, better to work as a CMS as the one recommended in the other answer. Dios L@s Bendiga Saludos, [image: --] daniel.bojorge [image: http://]about.me/daniel.bojorge *Curso Desarrollo Web

Re: the name of Django package

2019-02-25 Thread Shashank Singh
Wagtail On Mon, 25 Feb, 2019, 8:44 PM Suresh Kannan, wrote: > Hello everyone, > > I am relatively new to Django. I am looking for a package where a client > can edit the front end of the Django app. > Say for example the client wants to change the typo/contact details in the > web app in the

Re: the name of Django package

2019-02-25 Thread Suresh Kannan
Hello everyone, I am relatively new to Django. I am looking for a package where a client can edit the front end of the Django app. Say for example the client wants to change the typo/contact details in the web app in the GUI version (preferably they can edit the webpage and preview directly).

Invalid pk \"1\" - object does not exist.

2019-02-25 Thread optvisitor
getting error {"manager":["Invalid pk \"1\" - object does not exist."]} here is my model class class Employee(models.Model): MANAGER = 'MGR' STANDARD = 'STD' EMPLOYEE_TYPES = ( (MANAGER, 'manager'), (STANDARD, 'employee') ) role =

Re: MySQL

2019-02-25 Thread The Shivprasad
Yes, you have to download mysql in your local machine On Mon, 25 Feb 2019, 5:47 p.m. ons dridi, wrote: > hey ! > i want to know if the framework django needs to download MySQL ? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To

MySQL

2019-02-25 Thread ons dridi
hey ! i want to know if the framework django needs to download MySQL ? -- 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 how to print pstree in a webpage?

2019-02-25 Thread Eswar Dileep
I have created a django project and now when I click on a button I have to show the output of pstree in the webpage. How do I do that? Your help is appreciated. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Re: how to recognize the voice using speech recognition in django

2019-02-25 Thread Veer Manhas
You could look into AWS https://aws.amazon.com/transcribe/ Plug the APIs and AWS does all the work for you. On 24-Feb-2019 at 09:34, > wrote: Hi all, Currently, I am doing my research work on speech recognition using Django. I have only one month to submit my research work. Recognize the word

Re: how to recognize the voice using speech recognition in django

2019-02-25 Thread senthu nithy
Thank you Tin Le for your interesting. Thank you Jason for your valuable advice. K.Senthuja Undergraduate Student (UOJ), https://www.linkedin.com/in/senthuja/ https://medium.com/@senthujakarunanithy On Sun, Feb 24, 2019 at 7:41 PM Jason wrote: > I'm really unsure django is the right thing for