{% include 'admin/includes/part.header.html' %}
Vehicle Reviews
Add a Review
{{form.csrf_token}}
{{form.customer_name(class_="form-control", id="customer_name", placeholder="Customer Name", aria_label="customer_name", aria_describedby="customer_name-addon")}} {% for error in form.customer_name.errors %} {{ error }} {% endfor %}
{{form.rating(class_="form-control visually-hidden rate-icons", value=1, max=5,min=1, id="rating", placeholder="Review Rating", aria_label="rating", aria_describedby="rating-addon")}} {% for error in form.rating.errors %} {{ error }} {% endfor %}
{{form.comment(class_="form-control", id="comment", placeholder="comment", cols='10')}} {% for error in form.comment.errors %} {{ error }} {% endfor %}
{% for Review in reviews %} {% endfor %}
Make Review Description Publish Action

{{Review.customer_name}}

{{Review.rating }} Stars

{{Review.comment | truncate(50)}}

{{Review.date.strftime('%c')}}

{% include 'admin/includes/part.footer.html' %}