{% extends "base.html" %} {% block title %}My Projects{% endblock %} {% block content %}
Client Portal

My Projects

Track briefs you've submitted to the Tecvico team.

New project brief
{% if briefs %}
{% for brief in briefs %} {% endfor %}
Title Category Status Budget Submitted
{{ brief.title }} {% if brief.category %}{{ brief.get_category_display }}{% else %}—{% endif %} {{ brief.get_status_display }} {% if brief.budget_range %}{{ brief.get_budget_range_display }}{% else %}—{% endif %} {{ brief.submitted_at|date:"M j, Y" }} View
{% if page_obj.has_other_pages %}
{% if page_obj.has_previous %} Previous {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Next {% endif %}
{% endif %} {% else %}

No project briefs yet

Describe what you need and our team will review your request.

Submit your first brief
{% endif %}
{% endblock %}