{% extends 'base.html' %} {% block title %}Marketing Report Details - {{ report.marketing_staff.get_full_name }} - Optinet Global Links{% endblock %} {% block extra_css %} {% include 'customers/marketing_nav.html' %} {% endblock %} {% block content %}

Marketing Weekly Report

{{ report.marketing_staff.get_full_name }}

Week of {{ report.week_starting|date:"M d" }} - {{ report.week_ending|date:"M d, Y" }}

Created {{ report.created_at|date:"M d, Y \a\t g:i A" }} {% if report.updated_at != report.created_at %} • Updated {{ report.updated_at|date:"M d, Y \a\t g:i A" }} {% endif %}

{{ report.get_status_display }}
Back to Reports Dashboard {% if can_edit %} Edit Report Submit for Review {% endif %} {% if can_review %} Review Report {% endif %} New Report
{{ report.new_leads_generated }}
New Leads
{{ report.leads_converted }}
Converted
{{ report.conversion_rate }}%
Conversion Rate
{{ report.site_visits_conducted }}
Site Visits
Field Activity Metrics

{{ report.customers_contacted }}

Customers Contacted

{{ report.demos_conducted }}

Demos Conducted

{{ report.qualified_leads }}

Qualified Leads
{% if report.customer_feedback_summary %}
Customer Feedback Summary

{{ report.customer_feedback_summary|linebreaks }}

{% endif %} {% if report.competitor_activities or report.market_trends_observed %}
Market Intelligence
{% if report.competitor_activities %}
Competitor Activities

{{ report.competitor_activities|linebreaks }}

{% endif %} {% if report.market_trends_observed %}
Market Trends Observed

{{ report.market_trends_observed|linebreaks }}

{% endif %}
{% endif %} {% if report.service_improvement_recommendations or report.pricing_recommendations or report.marketing_strategy_recommendations %}
Recommendations
{% if report.service_improvement_recommendations %}
Service Improvements

{{ report.service_improvement_recommendations|linebreaks }}

{% endif %} {% if report.pricing_recommendations %}
Pricing Strategy

{{ report.pricing_recommendations|linebreaks }}

{% endif %} {% if report.marketing_strategy_recommendations %}
Marketing Strategy

{{ report.marketing_strategy_recommendations|linebreaks }}

{% endif %}
{% endif %} {% if report.challenges_faced or report.solutions_implemented %}
Challenges & Solutions
{% if report.challenges_faced %}
Challenges Faced

{{ report.challenges_faced|linebreaks }}

{% endif %} {% if report.solutions_implemented %}
Solutions Implemented

{{ report.solutions_implemented|linebreaks }}

{% endif %}
{% endif %} {% if report.next_week_targets or report.support_needed %}
Planning & Support
{% if report.next_week_targets %}
Next Week Targets

{{ report.next_week_targets|linebreaks }}

{% endif %} {% if report.support_needed %}
Support Needed

{{ report.support_needed|linebreaks }}

{% endif %}
{% endif %}
{% if interactions %}
Lead Interactions ({{ interactions.count }})
{% for interaction in interactions %}
{{ interaction.lead_name }} {{ interaction.interaction_date|date:"M d" }}
{{ interaction.get_interaction_type_display }} {{ interaction.get_outcome_display }}

{{ interaction.notes|truncatewords:20 }}

{% if interaction.service_interested %} Interested in: {{ interaction.service_interested.name }} {% endif %}
{% endfor %}
{% endif %} {% if report.status != 'draft' %}
Review Status

Status: {{ report.get_status_display }}

{% if report.reviewed_by %}

Reviewed by: {{ report.reviewed_by.get_full_name }}

Reviewed on: {{ report.reviewed_at|date:"M d, Y \a\t g:i A" }}

{% endif %} {% if report.review_comments %}
Review Comments:

{{ report.review_comments|linebreaks }}

{% endif %}
{% endif %}
Performance Rates
Qualification Rate: {{ report.qualification_rate }}%
Conversion Rate: {{ report.conversion_rate }}%
{% endblock %} {% block extra_js %} {% endblock %}