From cc4922f209ac8fdb5930bdcef91b11e606a75af2 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Fri, 22 Nov 2013 17:46:50 +0530 Subject: changes to redirect reviewer to resp. interface & notify user about chages required --- tbc/templates/base.html | 45 ++++++++++++++++++++++------------- tbc/templates/tbc/notify-changes.html | 16 +++++++++++++ 2 files changed, 45 insertions(+), 16 deletions(-) create mode 100644 tbc/templates/tbc/notify-changes.html (limited to 'tbc/templates') diff --git a/tbc/templates/base.html b/tbc/templates/base.html index 9a47446..73ccc32 100755 --- a/tbc/templates/base.html +++ b/tbc/templates/base.html @@ -51,22 +51,35 @@ - {% if not user %} - - {% else %} -
- - - -
+ {% if user %} +
+ + + +
+ {% endif %} + {% if reviewer %} +
+ + + +
+ {% endif %} + {% if anonymous %} + {% endif %} diff --git a/tbc/templates/tbc/notify-changes.html b/tbc/templates/tbc/notify-changes.html new file mode 100644 index 0000000..ffb2199 --- /dev/null +++ b/tbc/templates/tbc/notify-changes.html @@ -0,0 +1,16 @@ +{% extends 'base.html' %} +{% load static %} +{% block content %} +

Notify Changes

+

Notifing Chages for book {{ book.title }} to {{ book.contributor.user.first_name }} {{ book.contributor.user.last_name }} +

+{% csrf_token %} + + + + + + +
To
Changes Required
+
+{% endblock %} -- cgit