{% extends 'calaccess_campaign_browser/base.html' %}
{% load humanize %}
{% block title %}Contribution - {{ block.super }}{% endblock %}
{% block content %}
Basics
Bookkeeping
Filing |
{{ object.filing }} |
Transaction ID |
${{ object.transaction_id }} |
Transaction type |
{{ object.transaction_type }} |
Amendment |
{{ object.amend_id }} |
Backreference transaction ID |
{{ object.backreference_transaction_id }} |
Crossreference |
{{ object.is_crossreference }} |
Crossreference schedule |
{{ object.crossreference_schedule }} |
Description |
{{ object.contribution_description }}
|
Duplicate |
{{ object.is_duplicate }} |
Raw record |
{{ object.raw.id }} |
Contributor
{% for field, value in object.contributor_dict.items %}
{{ field|capfirst }} |
{{ value }} |
{% endfor %}
Intermediary
{% for field, value in object.intermediary_dict.items %}
{{ field|capfirst }} |
{{ value }} |
{% endfor %}
{% endblock %}