ethertoff
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

all.html
text/html

Download raw (477 bytes)

{% extends "base.html" %}
{% load wikify %}

{% block title %}
<h1>Overview of the pads</h1>
{% endblock %}

{% block content %}
    <ul id="pads_list">
        {% for pad in pads %}
            <li><a data-uid="{{ pad.display_slug }}" href="{% if mode == 'write' %}{% url 'pad-write' slug=pad.display_slug %}{% else %}{% url 'pad-read' 'r' pad.display_slug %}{% endif %}" class="pad-link">{{ pad.display_slug|dewikify }}</a></li>
        {% endfor %}
    </ul>
{% endblock %}