Edit Case ${case.case_name|h}
- Edit Case Details
- Link With Other Cases
- Edit Case Managers % if len(case.tasks) != 0:
- Edit & Reassign Tasks % endif
Case History
Date | User | Changes |
---|---|---|
${history['date']|h} | ${history['user'].fullname|h} |
% if not isinstance(history['change_log'], basestring):
% for entry, change in history['change_log'].iteritems():
The ${entry|h} changed from ${change[0]|h} to ${change[1]|h} % endfor % else: ${history['change_log']|h} % endif |
Edit Case Details
Linked Cases
Case Name | Date | Reason | Link Addition / Removal |
${link.case_linkees.case_name|h} | ${link.date|h} | ${link.reason|h} | % if link.removed: Link removal. % else: Link addition. % endif |
No Links |
Cases that have added a link to ${case.case_name|h}
Case Name | Date | Reason | Link Addition / Removal | Bidirectional |
${link.case_linkers.case_name|h} | ${link.date|h} | ${link.reason|h} | % if link.removed: Link removal. % else: Link addition. % endif | % if link.bidirectional(case, direction="linkee") is False: No % elif link.bidirectional(case, direction="linkee") is True: Yes % endif |
No Links |
Add New Link
Remove Link
% if case_manager_history:
% endif
% if len(case.tasks) != 0:
Case Manager History
Date | User | Changes |
---|---|---|
${history['date']|h} | ${history['user'].fullname|h} |
% for entry, change in history['change_log'].iteritems():
% if change[0] == "ADD":
The ${entry|h} was assigned to ${change[1]|h} % elif change[0] == "DEL": ${change[1]|h} was removed from ${entry|h} % else: The ${entry|h} changed from ${change[0]|h} to ${change[1]|h} % endif % endfor |
Edit Case Managers
Current Tasks
Click on the task name to edit the task.
${format.task_table(case, edit=True)}