Re: How to know our Django version

2016-02-04 Thread James Bennett
Django does not have a "featured news" section. Django is not a content-management system; it's a framework for developing many types of Web applications, including content-management systems. It's likely that you were looking at a tutorial for something else that was built using Django. On Thu,

Re: How to know our Django version

2016-02-04 Thread Sergiy Khohlov
python import django print (django.version) Many thanks, Serge +380 636150445 skype: skhohlov On Thu, Feb 4, 2016 at 6:15 PM, wrote: > Hello >> > > because i want to know if its possible to have "featured news" in our news > section. > > as i looked on a

Re: How to know our Django version

2016-02-04 Thread communication
> > Hello > because i want to know if its possible to have "featured news" in our news section. as i looked on a tutorial, its included in Django version xxx, but not in our, so i wanted to know what is our version to know what would include to make an update of our django version.

Re: How to know our Django version

2016-02-03 Thread Tomas Tombakas
If you don't have access to the shell, why are you concerned with the django version? On 3 February 2016 at 13:05, wrote: > Hello, > > and if not ? > > i have actually only acces to the web part. > > Le mardi 2 février 2016 18:43:56 UTC+1, James Bennett a

Re:Re: How to know our Django version

2016-02-03 Thread 林攀
django --version -- 林攀 在 2016-02-03 19:05:01,communicat...@domainedemanville.fr 写道: Hello, and if not ? i have actually only acces to the web part. Le mardi 2 février 2016 18:43:56 UTC+1, James Bennett a écrit : As long as you have access to a shell, you can do python manage.py

Re: How to know our Django version

2016-02-03 Thread communication
Hello, and if not ? i have actually only acces to the web part. Le mardi 2 février 2016 18:43:56 UTC+1, James Bennett a écrit : > > As long as you have access to a shell, you can do > > python manage.py shell > > Then in the interpreter, do > > import django > print(django.get_version()) > >

Re: How to know our Django version

2016-02-02 Thread James Bennett
As long as you have access to a shell, you can do python manage.py shell Then in the interpreter, do import django print(django.get_version()) On Tue, Feb 2, 2016 at 6:59 AM, wrote: > Hello all, > > thanks in advance for your help. > > i'm just integrating

How to know our Django version

2016-02-02 Thread communication
Hello all, thanks in advance for your help. i'm just integrating new office and they actually have a website based on Django. but we have no more contact with the web agency who developp this site. So i wanted to know what is the version of Django used by our site ? Could you please