예제 #1
0
 def get_case_forms(case_id):
     """
     Get all forms that have submitted against a case (including archived and deleted forms)
     wrapped by the appropriate form type.
     """
     form_ids = get_case_xform_ids(case_id)
     return [fetch_and_wrap_form(id) for id in form_ids]
예제 #2
0
 def get_case_forms(case_id):
     """
     Get all forms that have submitted against a case (including archived and deleted forms)
     wrapped by the appropriate form type.
     """
     form_ids = get_case_xform_ids(case_id)
     return [fetch_and_wrap_form(id) for id in form_ids]