Re: Admin Page Customization Questions

2014-07-15 Thread Michiel Overtoom
On Jul 15, 2014, at 17:59, G Z wrote: > > I have a few questions, is it possible to template the admin page? Yes, you can copy the default admin templates and change them. It is described here: https://docs.djangoproject.com/en/dev/intro/tutorial02/#customize-the-admin-look-and-feel Gree

Re: Django Admin DB Error only when trying to delete an inserted record delete.

2014-07-17 Thread Michiel Overtoom
On Jul 16, 2014, at 23:14, G Z wrote: > So I'm still running in to issues using a prexisting database, ive worked out > almost all of the issues I'm following your posts with interest, since I will be writing a Django app soon which also has to use a pre-existing database. Greetings, -- "Yo

Re: cx_Oracle - Django ORM - Reference Count Increase

2014-12-27 Thread Michiel Overtoom
On Dec 27, 2014, at 22:23, Anurag Chourasia wrote: > I have a Long Running Python Process that uses Django ORM against Oracle > database. > The size of the process keeps on increasing steadily. Are you running in Debug mode? http://stackoverflow.com/questions/1339293/python-memory-leak-debugg

Re: Need some advice on how to go about building a real time web app.

2015-01-02 Thread Michiel Overtoom
Hi, A little side-note... > That then led me to learn how much I can shift items like validation to the > client side and leave Django to > do the rest. Even if you do client side validation, you still have to do it on the server side too, to protect your application from malicious attacks.

Re: Django deployment

2015-09-15 Thread Michiel Overtoom
Hi Hugo, > I keep hearing that Django deployment is unnecessarily difficult. Who says this? And what are the reasons they give for it? > For a website with very little traffic, and for somebody who's new to it all, > what is the best way to deploy? And how should I go about deploying! I can t

Re: New on Django and applications

2015-12-16 Thread Michiel Overtoom
> On 2015-12-16, at 11:49, Baptiste Guillaud > wrote: > > I must learn this framework in a first time Try https://docs.djangoproject.com/en/1.9/intro/tutorial01/ Greetings, -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe fr

Re: a design about cache(using redis) , and some problem about it

2016-04-11 Thread Michiel Overtoom
> On 2016-04-10, at 14:04, Xin Liu wrote: > > show top 100 of student's achievement MySQL query to get the 100 students with best achievements: select student_id, student_name, student_score from Students order by student_score desc limit 100 Greetings, -- You received this message