{% extends "base.html" %} {% import "macros.html" as m %} {% block title %}Welcome to What 2 Watch, Buddy{% endblock %} {% block content %}

Whatcha Watchin?

{% match user %} {% when Some with (usr) %}

Hello, {{ usr.username }}! It's nice to see you.


Here are your things to watch:

{% for watch in watches %} {% include "watchlist-item.html" %} {% endfor %}
Title Link Type Year Status
{% else %}

Heya, why don't you log in or sign up?

{% endmatch %} {% endblock %}