{% extends "layout.html" %} {% block content %}

Hi, I am {{ portfolio.name }}.

Contact Me
{{ portfolio.contact }}

Technical skills

{{ portfolio.tech_skills }}

Work Produced to Date

{{ portfolio.work_produced }}

Experience

{{ portfolio.experience }}

Last Edited: {{ portfolio.date_edited.strftime('%Y-%m-%d %H:%M') }}

{% if comments %} {% for comment in comments %}
{{ comment.username }}
{{ comment.content }}
Commented on {{ comment.comment_time.strftime('%Y-%m-%d') }}
{% endfor %} {% endif %}
{{ form.hidden_tag() }}
{{ form.content.label(class="form-control-label") }} {% if form.content.errors %} {{ form.content(class="form-control form-control-lg is-invalid") }}
{% for error in form.content.errors %} {{ error }} {% endfor %}
{% else %} {{ form.content(class="form-control form-control-lg") }} {% endif %}
{{ form.submit(class="btn btn-outline-info btn-sm") }}
{% if portfolio.author == current_user %}

These buttons can be seen only by the author.

Edit the Portfolio