{% load i18n static humanize %} {% load custom_filters %} {% block customCSS %} {% endblock customCSS %} {% for opportunity in opportunities %}
{{ opportunity.created|naturalday|capfirst }}
{{ _("Assigned To") }} {% if request.user.email == opportunity.staff.email %} {{ _("You") }} {% else %} {{ opportunity.staff.fullname }}
{% endif %}|
{{ _("Expected Revenue") }} |
{{ opportunity.expected_revenue }} |
|
{% trans "Marked Price" %} |
{{ opportunity.car.marked_price }} |
|
{{ _("Closing Date") }} |
{% if opportunity.expected_close_date %}
{{ opportunity.expected_close_date|naturalday|capfirst }} {% endif %} |
{{ _("Probability") }}: {{ opportunity.probability }}%