From e6d89dbf9b75a3e0f3edda8896e8ce586773a2b7 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Tue, 15 Jul 2014 19:12:34 +0530 Subject: changes on reviewer interface to approve a proposal --- tbc/templates/base.html | 1 + tbc/templates/tbc/review-proposal.html | 36 ++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 tbc/templates/tbc/review-proposal.html (limited to 'tbc/templates') diff --git a/tbc/templates/base.html b/tbc/templates/base.html index 09c1c4c..9663c70 100755 --- a/tbc/templates/base.html +++ b/tbc/templates/base.html @@ -108,6 +108,7 @@ {{ reviewer.first_name }} {{ reviewer.last_name }} diff --git a/tbc/templates/tbc/review-proposal.html b/tbc/templates/tbc/review-proposal.html new file mode 100644 index 0000000..2a83e37 --- /dev/null +++ b/tbc/templates/tbc/review-proposal.html @@ -0,0 +1,36 @@ +{% extends 'base.html' %} +{% load static %} +{% block content %} +

Proposals to be reviewed

+
    + {% for proposal in proposals %} +
  1. Propsal from {{ proposal.user.user.first_name }} {{ proposal.user.user.last_name }}
  2. +
    + {% for textbook in proposal.textbooks.all %} +
    + +
    +
    + Author: {{ textbook.author}}
    + Edition: {{ textbook.edition }}
    + Publisher: {{ textbook.publisher_place }}
    + ISBN: {{ textbook.isbn }}
    + Year of Pub.: {{ textbook.year_of_pub }}
    + Category: {{ textbook.category }}
    + Approve & Alot Book +
    +
    +
    + {% endfor %} +
    Status: {{ proposal.status }}
    + +
    + {% endfor %} +
+{% endblock %} + + -- cgit