{% extends "layout.html" %} {% block content %}
{% if user == current_user %}

Welcome back, {{ current_user.username }}! This is the {{cfg("sr.ht", "site-name")}} paste hosting service. Documentation for its use is available here.

New paste {{icon('caret-right')}} {% else %}

~{{ user.username }}

{% if user.location %}

{{user.location}}

{% endif %} {% if user.url %}

{{user.url}}

{% endif %} {% if user.bio %} {{user.bio | md}} {% endif %} {% endif %}
{% if search_error %}
{{ search_error }}
{% endif %}
{% for paste in pastes %}

{% if len(paste.files) == 1 %} {{paste.files[0].filename or paste.sha[:7]}} {% else -%} {{paste.sha[:7]}} {%- endif %}
{% if paste.visibility.value != 'public' %} {{ paste.visibility.value }} {% endif %} {{paste.created | date}}

{% for file in paste.files %}
{{file.filename or ""}}
{{stat.filemode(33188)}}
{{humanize.naturalsize(len(file.blob.contents), binary=True).replace("Byte", "byte")}}
{% endfor %}
{% endfor %} {{pagination()}}
{% endblock %}