{% extends "base.html" %} {% load i18n %} {% block pagetitle %}{{ hacker.username }}{% endblock %} {% block pageheader %}{{ hacker.hackerprofile.display_name|default:hacker.username }}{% if user == hacker %}{% endif %}{% endblock %} {% block content %} {% if hacker.hackerprofile.twitter_name or hacker.hackerprofile.blog_url or hacker.hackerprofile.homepage_url %}
Twitter name {{ hacker.hackerprofile.twitter_name }}
Blog URL {{ hacker.hackerprofile.blog_url|default:'(not set)'|urlize }}
Homepage URL {{ hacker.hackerprofile.homepage_url|default:'(not set)'|urlize }}
{% endif %}

Questions asked (waiting for an answer)

{% with questions_pending as questions %} {% include 'main/elements/questions.html' %} {% endwith %} {% if user == hacker %}

Post a question

{% endif %}

Questions asked (answered)

{% with questions_answered as questions %} {% include 'main/elements/questions.html' %} {% endwith %}

One-Liners posted

{% include 'main/elements/oneliners.html' %} {% if user == hacker %}

Post a One-Liner

{% endif %}

Favourite One-Liners

Not implemented yet.

One-Liners voted on

Not implemented yet.

{% endblock %}