{% 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.name }}
{% endif %}|
{{ _("Expected Revenue")}} |
{{ opportunity.expected_revenue }} |
|
{{ _("Closing Date")}} |
{% if opportunity.expected_close_date %}
{{ opportunity.expected_close_date|naturalday|capfirst }} {% endif %} |
{{ _("Probability") }}: {{ opportunity.probability }}%