Autolegal/templates/doc.md.j2
2026-01-06 16:41:06 +00:00

27 lines
512 B
Django/Jinja

# agreement summary
client: **{{ client_name }}**
provider: **{{ provider_name }}**
## payment
{% if payment_type == "hourly" %}
rate: **£{{ hourly_rate_gbp }}/hour**
{% elif payment_type == "fixed" %}
fixed fee: **£{{ fixed_fee_gbp }}**
{% else %}
payment: tbd
{% endif %}
## confidentiality
{% if include_confidentiality %}
included.
{% else %}
not included.
{% endif %}
## governing law
{% if governing_law == "England and Wales" %}
laws of england and wales.
{% else %}
{{ governing_law }}.
{% endif %}