return True
return False
+def format_session_increment_field(id, field):
+ return field + '-' + str(id)
+
+THANKS_FIELD = 'thanks'
+FLAG_FIELD = 'flags'
class NoteDetailView(DetailView):
""" Class-based view for the note html page """
if self.object.mimetype == 'application/pdf':
kwargs['pdf_controls'] = True
+ if self.request.session.get(format_session_increment_field(self.object.id, THANKS_FIELD), False):
+ kwargs['already_thanked'] = True
+
+ if self.request.session.get(format_session_increment_field(self.object.id, FLAG_FIELD), False):
+ kwargs['already_flagged'] = True
+
return super(NoteDetailView, self).get_context_data(**kwargs)
mimetype="application/json")
try:
+ # Increment counter
note = Note.objects.get(pk=pk)
note.__dict__[field] += 1
note.save()
+
+ # Record that user has performed this, to prevent
+ # them from doing it again
+ request.session[format_session_increment_field(pk, field)] = True
except ObjectDoesNotExist:
return HttpResponseNotFound(json.dumps({'status': 'fail', 'message': 'note id does not match a note'}),
mimetype="application/json")
def thank_note(request, pk):
"""Record that somebody has thanked a note."""
- return ajaxIncrementBase(request, pk, 'thanks')
+ return ajaxIncrementBase(request, pk, THANKS_FIELD)
def flag_note(request, pk):
"""Record that somebody has flagged a note."""
- return ajaxIncrementBase(request, pk, 'flags')
+ return ajaxIncrementBase(request, pk, FLAG_FIELD)
<div id="note_actions" class="large-3 medium-6 small-12 columns small-centered">
<div class="row">
<div class="small-4 column">
- <a href="#" id="flag-button"><img src="{{ STATIC_URL }}img/note_flag.png" alt="note_flag" width="25" height="35"/></a>
- <a href="#" id="flag-button-disabled" class="hide"><img src="{{ STATIC_URL }}img/note_flag_disabled.png" alt="note_flag" width="25" height="35"/></a>
+ <a href="#" id="flag-button" {% if already_flagged %} class="hide" {% endif %}><img src="{{ STATIC_URL }}img/note_flag.png" alt="note_flag" width="25" height="35"/></a>
+ <a href="#" id="flag-button-disabled" {% if not already_flagged %} class="hide" {% endif %}><img src="{{ STATIC_URL }}img/note_flag_disabled.png" alt="note_flag" width="25" height="35"/></a>
</div>
<div class="small-4 column">
- <a href="#" id="thank-button"><img src="{{ STATIC_URL }}img/note_thank.png" alt="note_thank" width="34" height="34"/></a>
- <a href="#" id="thank-button-disabled" class="hide"><img src="{{ STATIC_URL }}img/note_thank_disabled.png" alt="note_thank" width="34" height="34"/></a>
+ <a href="#" id="thank-button" {% if already_thanked %} class="hide" {% endif %}><img src="{{ STATIC_URL }}img/note_thank.png" alt="note_thank" width="34" height="34"/></a>
+ <a href="#" id="thank-button-disabled" {% if not already_thanked %} class="hide" {% endif %}><img src="{{ STATIC_URL }}img/note_thank_disabled.png" alt="note_thank" width="34" height="34"/></a>
</div>
<div class="small-4 column">
<a href="{{ note.fp_file }}">