Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find the version number of Django-CMS

Tags:

django-cms

I'm adding a new site to a server which already has Django & Django-CMS installed. How can I detect the version number of the installed Django-CMS?

Thanks!

like image 598
mkoistinen Avatar asked Oct 06 '12 22:10

mkoistinen


People also ask

Is django a framework or CMS?

Django is a web framework which can sometimes be used to make a CMS, but it is not, by itself, a full CMS.

What is django CMS plugins?

djangocms-file django CMS File is a set of plugins for django CMS that allow you to add files to your site You can either choose a single file or an entire folder.


1 Answers

from cms import __version__
print __version__
like image 82
iurii Avatar answered Oct 19 '22 18:10

iurii