Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. {% if person.share > 0 %}
  2. <ol>
  3. <li>
  4. {% if will_merge(will, testator, 'personIsOrganization', person.id) %} {% else %}{{ will_merge(will, testator, 'personRelationship', person.id) }}{% endif %}{{ will_merge(will, testator, 'personName', person.id) }}{% if will_merge(will, testator, 'personIsOrganization', person.id) %} {% else %}{% endif %} {% if loop.last %}{% endif %}
  5. , as to a {{ person.share }}% interest {% if not loop.last %}, and{% endif %}
  6. </li>
  7. </ol>
  8. {% if loop.last and not group.stirpes %}
  9. , but if {% if group.people|length > 2 %} any {% else %} either {% endif %} of
  10. {% for person in group.people %}
  11. {% if will_merge(will, testator, 'personIsOrganization', person.id) %}
  12. {% else %}
  13. {{ will_merge(will, testator, 'personRelationship', person.id) }}
  14. {% endif %}
  15. {{ will_merge(will, testator, 'personName', person.id) }}
  16. {% if will_merge(will, testator, 'personIsOrganization', person.id) %}
  17. {% else %},
  18. {% endif %}
  19. {% if not loop.last %}
  20. and
  21. {% endif %}
  22. {% endfor %}
  23. {% if group.stirpes %}
  24. die before me leaving no descendants,
  25. {% else %}
  26. die before me,
  27. {% endif %}
  28. {% if group.people|length < 3 %}
  29. give that person's share to the survivor of them
  30. {% if group.stirpes %}
  31. , but if one of them dies before me leaving descendants, divide that person's share between their descendants in the same manner as described above
  32. {% endif %}
  33. {% else %}
  34. {% for person in group.people %}
  35. {% if loop.last %}
  36. {% if person.share > 0 %}
  37. divide that deceased's person's share between the survivors of them, each to receive an amount according to their share of the whole {% if group.stirpes %}, but if one of them dies before me leaving descendants, divide that person's share between their descendants in the same manner as described above {% endif %}
  38. {% else %}
  39. that deceased person's share of this gift equally between the survivors of them
  40. {% endif %}
  41. {% endif %}
  42. {% endfor %}
  43. {% endif %}
  44. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement