{% extends "base.html" %} {% block title %}Secret Archive Profile{% endblock %} {% block content %}

Hi {{ name }} :)

Welcome to your profile page!

This is your secret data:

{% if file_count == 0 %} You have 0 secret files.
{% elif file_count == 1 %} You have 1 secret file: {% else %} You have {{ file_count }} secret files: {% endif %} {{ file_info }}

Your personal info:
   {{ info }}

{% endblock %}