Major Changes: - Migrated from prototype to production architecture - Implemented modular Flask app with models/services/web layers - Added Docker containerization with docker-compose - Switched to Pipenv for dependency management - Built advanced parser extracting 63 real activities from INDEX_MASTER - Implemented SQLite FTS5 full-text search - Created minimalist, responsive web interface - Added comprehensive documentation and deployment guides Technical Improvements: - Clean separation of concerns (models, services, web) - Enhanced database schema with FTS5 indexing - Dynamic filters populated from real data - Production-ready configuration management - Security best practices implementation - Health monitoring and API endpoints Removed Legacy Files: - Old src/ directory structure - Static requirements.txt (replaced by Pipfile) - Test and debug files - Temporary cache files Current Status: - 63 activities indexed across 8 categories - Full-text search operational - Docker deployment ready - Production documentation complete 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
800 B
HTML
24 lines
800 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Eroare server - INDEX Sistem Jocuri{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="error-page">
|
|
<div class="error-content">
|
|
<h1 class="error-title">500</h1>
|
|
<h2 class="error-subtitle">Eroare internă server</h2>
|
|
<p class="error-message">
|
|
A apărut o eroare neașteptată. Echipa noastră a fost notificată și lucrează pentru a rezolva problema.
|
|
</p>
|
|
|
|
<div class="error-actions">
|
|
<a href="{{ url_for('main.index') }}" class="btn btn-primary">
|
|
Întoarce-te la căutare
|
|
</a>
|
|
<a href="javascript:location.reload()" class="btn btn-secondary">
|
|
Reîncarcă pagina
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |