app/projrev/views/helpers/templatetags/review_helpers.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Mon, 10 Aug 2009 03:54:33 +0530
changeset 31 ef9fdc847543
parent 27 37612f295cd4
child 41 64249ebaf65a
permissions -rw-r--r--
Added list of My reviews.

"""A Django template tag library containing forms helpers.
"""

__authors__ = [
  '"Madhusudan.C.S" <madhusudancs@gmail.com>',
]


from django import template

register = template.Library()


@register.inclusion_tag('projrev/templatetags/_as_review.html')
def as_review(review):
  """Returns the comment contexts for the template tag.
  """

  total_score = (review.attribute1 + review.attribute2 + review.attribute3 + 
                 review.attribute4 + review.attribute5 + review.attribute6 +
                 review.attribute7 + review.attribute8 + review.attribute9)

  return {'review': review, 'total_score': total_score}

@register.inclusion_tag('projrev/templatetags/_as_my_review.html')
def as_my_review(review):
  """Returns the comment contexts for the template tag.
  """

  total_score = (review.attribute1 + review.attribute2 + review.attribute3 + 
                 review.attribute4 + review.attribute5 + review.attribute6 +
                 review.attribute7 + review.attribute8 + review.attribute9)

  project = review.project
  proposal = project.proposal_set.all().order_by('-submitted_on')[0]

  review_context = {
      'review': review,
      'total_score': total_score,
      }

  if proposal:
    proposal_path = str(proposal.document)
    proposal_name = proposal_path.split('/')[-1]
    review_context['proposal_path'] = proposal_path
    review_context['proposal_name'] = proposal_name
    review_context['institution'] = project.institution
    review_context['state'] = project.state
    review_context['district'] = project.district
    review_context['line_item'] = project.line_item

  return review_context