diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-01-11 00:43:22 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-01-11 00:43:22 +0100 |
commit | b8c56588be3ed9397722b46baece4a3b2326514b (patch) | |
tree | 2c6ac95f62c72efd28c3d2143227faaed838a0fb | |
parent | c0d4c78acebb8a5fe0d81a6870ce660adaa8b616 (diff) | |
download | Ishtar-b8c56588be3ed9397722b46baece4a3b2326514b.tar.bz2 Ishtar-b8c56588be3ed9397722b46baece4a3b2326514b.zip |
Correct preventive form condition for archeological file modification (closes #71)
-rw-r--r-- | ishtar/furnitures/forms.py | 2 | ||||
-rw-r--r-- | static/media/style.css | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ishtar/furnitures/forms.py b/ishtar/furnitures/forms.py index 367001bef..5f1b0beb8 100644 --- a/ishtar/furnitures/forms.py +++ b/ishtar/furnitures/forms.py @@ -613,6 +613,6 @@ file_modification_wizard = FileWizard([ ('preventive-file_modification', FileFormPreventive), ('final-file_modification', FinalForm)], condition_list={ - 'preventive-file_modification':is_preventive('general-file_modif') + 'preventive-file_modification':is_preventive('general-file_modification') }, url_name='file_modification',) diff --git a/static/media/style.css b/static/media/style.css index f0eaada20..221fddebb 100644 --- a/static/media/style.css +++ b/static/media/style.css @@ -143,6 +143,7 @@ ul#form_path li{ text-align: center; padding-left: 10px ; margin: 0; + white-space:nowrap; } ul#form_path li.current a{ |