buildersai / app /templates /property-evaluation.html
Kushal
Fix: Finalize stabilized report templates and remove redundant admin logic on startup
26cce99
Raw
History Blame Contribute Delete
4.94 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Property Evaluation Report</title>
<style>
@page {
size: A4;
margin: 2cm;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #ffffff;
color: #25334d;
font-size: 11pt;
line-height: 1.5;
}
.report-wrapper {
width: 100%;
background: #ffffff;
}
.header {
border-bottom: 2px solid #2C4694;
padding-bottom: 15px;
margin-bottom: 25px;
text-align: center;
}
.logo-title {
font-size: 24pt;
color: #2C4694;
font-weight: bold;
}
.subtitle {
color: #7087B1;
font-size: 12pt;
}
.report-date {
color: #434343;
font-size: 10pt;
font-style: italic;
}
h2 {
color: #2C4694;
font-size: 14pt;
margin-top: 25px;
border-bottom: 1px solid #DCE3F2;
padding-bottom: 5px;
}
.fact-table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
.fact-table th {
text-align: left;
background-color: #fafbff;
padding: 8px;
border: 1px solid #f2f3f7;
width: 35%;
}
.fact-table td {
padding: 8px;
border: 1px solid #f2f3f7;
}
.content-box {
padding: 15px;
margin-top: 10px;
border: 1px solid #e1e9f7;
background-color: #f7fafd;
}
.signoff {
margin-top: 40px;
text-align: right;
color: #7087B1;
font-size: 10pt;
}
</style>
</head>
<body>
<div class="report-wrapper">
<div class="header">
<div class="logo-title">Property Evaluation Report</div>
<div class="subtitle">Generated by Builders.ai</div>
<div class="report-date">{{DATE}}</div>
</div>
<h2>Basic Property Information</h2>
<table class="fact-table">
<tr><th>Property Name</th><td><span class="editable" contenteditable="true" data-field="property_name">{{PROPERTY_NAME}}</span></td></tr>
<tr><th>Location</th><td><span class="editable" contenteditable="true" data-field="location">{{LOCATION}}</span></td></tr>
<tr><th>Area (sqft)</th><td><span class="editable" contenteditable="true" data-field="area_sqft">{{AREA_SQFT}}</span></td></tr>
<tr><th>Floors</th><td><span class="editable" contenteditable="true" data-field="floors">{{FLOORS}}</span></td></tr>
<tr><th>Estimated Cost</th><td><span class="editable" contenteditable="true" data-field="estimated_cost">{{ESTIMATED_COST}}</span></td></tr>
<tr><th>Construction Type</th><td><span class="editable" contenteditable="true" data-field="construction_type">{{CONSTRUCTION_TYPE}}</span></td></tr>
<tr><th>Expected Completion</th><td><span class="editable" contenteditable="true" data-field="expected_completion">{{EXPECTED_COMPLETION}}</span></td></tr>
<tr><th>Developer</th><td><span class="editable" contenteditable="true" data-field="developer_name">{{DEVELOPER_NAME}}</span></td></tr>
<tr><th>Legal Clearance Status</th><td><span class="editable" contenteditable="true" data-field="legal_clearance">{{LEGAL_CLEARANCE}}</span></td></tr>
<tr><th>Target Buyer Segment</th><td><span class="editable" contenteditable="true" data-field="target_buyer_segment">{{TARGET_BUYER_SEGMENT}}</span></td></tr>
<tr><th>Nearby Facilities</th><td><span class="editable" contenteditable="true" data-field="nearby_facilities">{{NEARBY_FACILITIES}}</span></td></tr>
</table>
<h2>Project Summary</h2>
<div class="content-box">
<div class="editable-content" contenteditable="true" data-field="summary">{{SUMMARY}}</div>
</div>
<h2>AI Recommendations</h2>
<div class="content-box">
<div class="editable-content" contenteditable="true" data-field="recommendations">{{RECOMMENDATIONS}}</div>
</div>
<h2>Legal / Policy Notes</h2>
<div class="content-box">
<div class="editable-content" contenteditable="true" data-field="legal_notes">{{LEGAL_NOTES}}</div>
</div>
<h2>Final Observations</h2>
<div class="content-box">
<div class="editable-content" contenteditable="true" data-field="additional_notes">{{ADDITIONAL_NOTES}}</div>
</div>
<div class="signoff">
<br/><br/>
<div>— End of Report —</div>
</div>
</div>
</body>
</html>