From 951b0699cba430fd9dc3d8fc845e177d6b86433b Mon Sep 17 00:00:00 2001 From: Dirk Eschler Date: Sun, 29 Aug 2010 21:29:32 +0000 Subject: [PATCH] Corrected tabs css path. --- docs/modeltranslation/modeltranslation.txt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/modeltranslation/modeltranslation.txt b/docs/modeltranslation/modeltranslation.txt index 37848ef..2bc890e 100644 --- a/docs/modeltranslation/modeltranslation.txt +++ b/docs/modeltranslation/modeltranslation.txt @@ -1,8 +1,8 @@ .. _ref-topics-modeltranslation: -=================== - Model translation -=================== +================== + Modeltranslation +================== .. admonition:: About this document @@ -311,7 +311,8 @@ Supported fields In most cases subclasses of these fields will work fine, too. Other fields aren't supported and will throw an ``ImproperlyConfigured`` exception. -The list of supported fields can be extended. Just define a tuple of field names in your settings.py like this:: +The list of supported fields can be extended. Just define a tuple of field +names in your settings.py like this:: MODELTRANSLATION_CUSTOM_FIELDS = ('MyField', 'MyOtherField',) @@ -477,7 +478,7 @@ class NewsAdmin(TranslationAdmin): '/static/modeltranslation/js/tabbed_translation_fields.js', ) css = { - 'screen': ('/static/modeltranslation/js/tabbed_translation_fields.css',), + 'screen': ('/static/modeltranslation/css/tabbed_translation_fields.css',), } }}}