{% extends 'base.html' %} {% load static %} {% block body %} {% include 'navbar.html' %}

All Works

Total Works : {{works|length}}

{% for work in works %} {% endfor %}
# Work Details Material Budget User Created Action
{{forloop.counter}}
{{work.name}}
Work ID : #{{work.id}}
{{work.material}} ₹ {{work.budget}}
{{work.user.name|slice:":1"}}
{{work.user.name}}
{{work.created_at|date:"d M Y"}}
{{work.created_at|time:"h:i A"}}
View Details
{% for message in messages %} {% endfor %} {% endblock %}