Add make_choices function.
[matthijs/projects/xerxes.git] / tools / misc.py
index 1259ab7d706284e6abc2164e79d6d90cdbe50143..2c785482e5a9e1da735a4d05c3b75ec41b78493b 100644 (file)
@@ -22,9 +22,21 @@ prints it to stdout and raises it again.
 def log_error(func):
     def show(*args, **kwargs):
         try:
-            func(*args, **kwargs)
+            return func(*args, **kwargs)
         except Exception, e:
             import traceback
             traceback.print_exc()
             raise e
     return show
+
+def make_choices(objects):
+    """
+    Transforms a list (or iteratable) of model objects to a list
+    suitable to be used as a list of choices in form widgets like
+    Select.
+
+    This fullfills a similar (but simpler) function as
+    django.forms.models.ModelChoiceIterator, but that one requires a
+    FormField and is not public.
+    """
+    return [(o.pk, o) for o in objects]