File: page.html

package info (click to toggle)
python-wikkid 0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 728 kB
  • sloc: python: 3,051; makefile: 12
file content (14 lines) | stat: -rw-r--r-- 566 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}
{% block title %}{{ view.title }}{% endblock %}
{% block content %}{{ view.content }}
{% endblock %}
{% block commands %}
{% if view.user %}
<a class="command" href="{{ canonical_url(context, 'edit') }}">Edit</a>
{% endif %}
<a class="command" href="{{ canonical_url(context.parent, 'listing') }}">Browse</a>
{% endblock %}
{% block footer %}
<p class="last-edit">Last edited by <strong title="{{view.last_modified_by.committer_id}}">{{ view.last_modified_by.display_name }}</strong>
    on {{ view.last_modified_date }}</p>
{% endblock %}