All modules are now plugins. The config.py calls load_plugin for each plugin it needs (some plugins may load others automatically). Also each plugin keeps its own template folder which gets added to the template search path, so i.e. if the photo plugin is unloaded completely, the URL endpoints won't work either (with the old system, since the HTML templates still existed in the default root the endpoints would still serve pages, just without any Python logic behind them).
14 lines
357 B
HTML
14 lines
357 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}Comment Subscriptions{% endblock %}
|
|
{% block content %}
|
|
|
|
<h1>You have been unsubscribed</h1>
|
|
|
|
The e-mail address <strong>{{ email }}</strong> has been unsubscribed
|
|
{% if thread == "*" %}
|
|
from all comment threads on this site.
|
|
{% else %}
|
|
from the comment thread "{{ thread }}".
|
|
{% endif %}
|
|
|
|
{% endblock %} |