{% extends "base.html" %} {% load i18n %} {% block pagetitle %}{{ hacker.hackerprofile.get_display_name|default:'Anonymous' }}{% endblock %} {% block pageheader %}{{ hacker.hackerprofile.get_display_name|default:'Anonymous' }}{% 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 %}