+ {% block review_navigation %}
+
+ {% endblock %}
+
+ {% block review_summary %}
+
+
{{ title }}
+
Review Session: {{ review_session_repr }}
+ {% block additional_summary %}{% endblock %}
+
+ {% endblock %}
+
+ {% block review_content %}
+
+
+ {% block main_content %}{% endblock %}
+
+
+
+
+ {% endblock %}
+
+ {% block review_actions %}
+ {% if can_review_items %}
+
+ {% endif %}
+ {% endblock %}
+
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/backend/reviews/templates/reviews/components/score_selector.html b/backend/reviews/templates/reviews/components/score_selector.html
new file mode 100644
index 0000000000..e80879f0e0
--- /dev/null
+++ b/backend/reviews/templates/reviews/components/score_selector.html
@@ -0,0 +1,20 @@
+{% comment %}
+Score selector component for reviews
+Usage: {% include 'reviews/components/score_selector.html' with available_scores=available_scores current_score=user_review.score %}
+{% endcomment %}
+
+
+
Grant Application: {{ grant.user.display_name }}
+
+ {% if grant.reason %}
+
+
Reason for Grant
+
{{ grant.reason|linebreaks }}
+
+ {% endif %}
+
+ {% if grant.travel_from %}
+
+
Travel Information
+
+ - Travelling from: {{ grant.travel_from }}
+ {% if grant.accommodation_required %}
+ - Accommodation required: {{ grant.accommodation_required|yesno:"Yes,No" }}
+ {% endif %}
+
+
+ {% endif %}
+
+ {% if grant.financial_need_details %}
+
+
Financial Need Details
+
{{ grant.financial_need_details|linebreaks }}
+
+ {% endif %}
+
+
+
Grant Details
+
+ - Amount Requested: €{{ grant.amount_requested }}
+ - Current Status: {{ grant.get_status_display }}
+ {% if grant.approved_amount %}
+ - Approved Amount: €{{ grant.approved_amount }}
+ {% endif %}
+ {% if grant.approved_type %}
+ - Approved Type: {{ grant.get_approved_type_display }}
+ {% endif %}
+
+
+
+ {% if has_sent_proposal %}
+
+
Proposal Status
+
✓ This applicant has submitted a proposal for this conference
+
+ {% else %}
+
+
Proposal Status
+
✗ This applicant has not submitted a proposal for this conference
+
+ {% endif %}
+
+{% endblock %}
+
+{% block sidebar_content %}
+
+
Applicant Information
+
Name: {{ grant.user.display_name }}
+
Email: {{ grant.user.email }}
+
+ {% if participant %}
+
+
Participant Status
+
Registered: {{ participant.created|date:"M d, Y" }}
+
+ {% endif %}
+
+
+{% if previous_grants %}
+
+
Previous Grants
+ {% for prev_grant in previous_grants %}
+
+
{{ prev_grant.conference.name }}
+
Amount: €{{ prev_grant.amount_requested }}
+
Status: {{ prev_grant.get_status_display }}
+ {% if prev_grant.approved_amount %}
+
Approved: €{{ prev_grant.approved_amount }}
+ {% endif %}
+
+ {% endfor %}
+
+{% endif %}
+
+
+
Review Summary
+
Application Date: {{ grant.created|date:"M d, Y" }}
+
Last Updated: {{ grant.modified|date:"M d, Y" }}
+
+{% endblock %}
+
+{% block review_form %}
+{% include 'reviews/components/score_selector.html' with available_scores=available_scores current_score=user_review.score %}
+
+
+
{{ proposal.title.localize:'en' }}
+
+ {% if proposal.elevator_pitch %}
+
+
Elevator Pitch
+
{{ proposal.elevator_pitch.localize:'en'|linebreaks }}
+
+ {% endif %}
+
+ {% if proposal.abstract %}
+
+
Abstract
+
{{ proposal.abstract.localize:'en'|linebreaks }}
+
+ {% endif %}
+
+ {% if proposal.notes %}
+
+
Notes
+
{{ proposal.notes.localize:'en'|linebreaks }}
+
+ {% endif %}
+
+ {% if proposal.tags.all %}
+
+
Tags
+
+ {% for tag in proposal.tags.all %}
+ {{ tag.name }}
+ {% endfor %}
+
+
+ {% endif %}
+
+
+
Details
+
+ - Type: {{ proposal.type.name }}
+ - Duration: {{ proposal.duration.name }}
+ - Audience Level: {{ proposal.audience_level.name }}
+
+
+
+{% endblock %}
+
+{% block sidebar_content %}
+
+
Speaker Information
+
Name: {{ speaker.display_name }}
+
Email: {{ speaker.email }}
+
+ {% if speaker.bio %}
+
+
Bio
+
{{ speaker.bio.localize:'en'|linebreaks }}
+
+ {% endif %}
+
+ {% if participant %}
+
+
Participant Status
+
Registered: {{ participant.created|date:"M d, Y" }}
+
+ {% endif %}
+
+ {% if grant %}
+
+ {% endif %}
+
+
+
+
Filter Options
+ {% if tags_to_filter %}
+
+
+ {% for tag in tags_to_filter %}
+
+ {% endfor %}
+
+ {% endif %}
+
+{% endblock %}
+
+{% block review_form %}
+{% include 'reviews/components/score_selector.html' with available_scores=available_scores current_score=user_review.score %}
+
+