{% extends "base.html" %} {% block title %}Paste {{ paste.id }}{% endblock %} {% block content %}

Paste {{ paste.id }}

{% if paste.owner_id == current_user.id %} {% endif %} {% if current_user.is_authenticated %} {% endif %} {% if can_edit %} Edit Paste {% endif %}
{% if paste.owner_id == current_user.id %} {% endif %}
{% if not is_markdown %} {% endif %} 📥 Download
{% if is_markdown %}
{{ md_html_code|safe }}
{% else %}
{{ html_code|safe }}
{% endif %}

View the raw version here.

{% if current_user.is_authenticated %}
Shared With:
      {% for user, can_edit in shared_with %}
    • {{ user }} {% if can_edit %} Can Edit {% else %} Read Only {% endif %}
    • {% endfor %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}