{% extends 'base.html' %} {% block title %}Location Check Details - Bizness Navigator{% endblock %} {% block content %}
ID: #{{ check.id }} {{ check.created_at|date:"M d, Y H:i" }}

Location Check Details

{{ check.address }}

{{ check.business_type }}

{{ check.suitability_score|floatformat:0 }}
/100
Suitability Score

Status Overview

{% if check.status == 'approved' %} {% elif check.status == 'conditional' %} {% else %} {% endif %}
{{ check.get_status_display }}
Decision
{% if check.is_viable %}Viable{% else %}Not Recommended{% endif %}
Viability
{% if check.has_critical_restrictions %}Found{% else %}None{% endif %}
Critical Issues
Coordinates: {{ check.latitude|floatformat:6 }}, {{ check.longitude|floatformat:6 }}

Location Map

{% if check.restrictions_found|length == 0 %}

Great News!

No critical restrictions found for this location. You can proceed with documentation.

{% endif %} {% if check.restrictions_found %}

Found Restrictions

{% for restriction in check.restrictions_found %}

{{ restriction.name }}

{{ restriction.description }}

{% if restriction.severity %} {% if restriction.severity == 'high' %}High {% elif restriction.severity == 'medium' %}Medium {% else %}Low{% endif %} {% endif %}
{% if restriction.object %}
Object:
{{ restriction.object }}
Distance:
{{ restriction.distance }}m
Required:
{{ restriction.required_distance }}m
{% endif %} {% if restriction.legal_reference %}
Legal Reference: {{ restriction.legal_reference }}
{% endif %}
{% endfor %}
{% endif %} {% if check.requirements %}

Required Documentation

{% for req in check.requirements %}

{{ req.name }}

{{ req.description }}

{{ req.estimated_cost|floatformat:0|default:"—" }} UZS {{ req.time_days|default:"—" }} days
{% endfor %}
{% endif %}

Total Legalization Costs

Total Cost

{{ check.estimated_cost|floatformat:0 }}

UZS

Processing Time

{{ check.estimated_time_days }}

days

{% if check.nearby_objects %}

Nearby Objects

{% for obj in check.nearby_objects %}
{{ obj.distance }}m

{{ obj.name }}

{% endfor %}
{% endif %}

AI Analysis

{{ check.ai_analysis }}

Back to History New Check
{% endblock %}