31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="container mt-5">
|
|
<div class="row">
|
|
<div class="col-md-8 offset-md-2">
|
|
<div class="card shadow">
|
|
<div class="card-header bg-primary text-white">
|
|
<h4 class="mb-0">{{ product.title }}</h4>
|
|
</div>
|
|
<div class="card-body">
|
|
{% if product.thumbnail %}
|
|
<img src="{{ product.thumbnail }}" class="img-fluid rounded mb-3" alt="{{ product.title }}">
|
|
{% endif %}
|
|
|
|
<p class="card-text">{{ product.description }}</p>
|
|
|
|
<div class="alert alert-warning">
|
|
<p>No decision tree is available for this product yet.</p>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer">
|
|
<a href="{{ url_for('user.home') }}" class="btn btn-secondary">
|
|
<i class="fas fa-arrow-left"></i> Back to Products
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |