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
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
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
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.
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
> 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
> 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
7 matches
Mail list logo