diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-07-21 22:43:29 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-07-21 22:43:29 -0700 |
commit | c5827a3bb1a6b2eb6cfbc7d9104bd73514311246 (patch) | |
tree | 14d8cc53f18ebfb8739a46d99817730da0bc7416 /youtube/templates/status.html | |
parent | 86382706fe87afc63b2757a1a133497c75ce3cd2 (diff) | |
download | yt-local-c5827a3bb1a6b2eb6cfbc7d9104bd73514311246.tar.lz yt-local-c5827a3bb1a6b2eb6cfbc7d9104bd73514311246.tar.xz yt-local-c5827a3bb1a6b2eb6cfbc7d9104bd73514311246.zip |
Add status template, use for comment deletion status
Diffstat (limited to 'youtube/templates/status.html')
-rw-r--r-- | youtube/templates/status.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/youtube/templates/status.html b/youtube/templates/status.html new file mode 100644 index 0000000..1e18b5c --- /dev/null +++ b/youtube/templates/status.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} + +{% block page_title %}{{ title if (title is defined) else 'Status'}}{% endblock %} + +{% block main %} + {{ message }} +{% endblock %} + |