Django: Unterschied zwischen den Versionen

Aus Open Source Ecology - Germany
Zur Navigation springen Zur Suche springen
Zeile 37: Zeile 37:
  
 
If you have problems with translating strings:
 
If you have problems with translating strings:
* read How Django discovers translationhttps://docs.djangoproject.com/en/1.5/topics/i18n/translation/#how-django-discovers-translations
+
* read How Django discovers translation https://docs.djangoproject.com/en/1.5/topics/i18n/translation/#how-django-discovers-translations
 
* Define in your settings.py to make sure that strings are first read from the directory defined by you:
 
* Define in your settings.py to make sure that strings are first read from the directory defined by you:
 
** BASEPATH = realpath(join(dirname(_file), '..'))
 
** BASEPATH = realpath(join(dirname(_file), '..'))

Version vom 8. Juli 2013, 11:03 Uhr

Django - a high-level Python Web framework that encourages rapid development and clean, pragmatic design.

Aptana Configuration

  • Win-Preferences->PyDev->Editor->Code Completeion: Apply completion on '.' and '('

Tutorials

Style Guides

Configure with PyCharm

Databases

  • Install Databases
~/.environments/<PROJEKT>env/bin/pip install -r requirements.txt

Migrations

Internationalization


If you have problems with translating strings:

Hosting