Changeset - 52376dff592a
[Not reviewed]
0 1 0
Christopher Neugebauer - 7 years ago 2016-12-07 06:39:13
chrisjrn@gmail.com
Adds nag mails to the UI.

Fixes #50
1 file changed with 10 insertions and 0 deletions:
0 comments (0 inline, 0 general)
registrasion/reporting/views.py
Show inline comments
...
 
@@ -591,6 +591,16 @@ def attendee_data(request, form, user_id=None):
 
        "cart", "cart__user", "product", "product__category",
 
    ).order_by("cart__status")
 

	
 
    # Add invoice nag link
 
    links = []
 
    links.append((
 
        reverse(views.nag_unpaid, args=[]) + "?" + request.META["QUERY_STRING"],
 
        "Send invoice reminders",
 
    ))
 

	
 
    if items.count() > 0:
 
        output.append(Links("Actions", links))
 

	
 
    # Make sure we select all of the related fields
 
    related_fields = set(
 
        field for field in fields
0 comments (0 inline, 0 general)