%inherit file="../main.html" /> <%! from django.utils.translation import ugettext as _ from django.core.urlresolvers import reverse from django.conf import settings %> <%block name="pagetitle">${_("Download CSV Reports")}%block> ${_("Download CSV Data")} % if date_fmt_error: ${_("There was an error in your date input. It should be formatted as YYYY-MM-DD")} % endif %if ("itemized_purchase_report" or "refund_report") in settings.FEATURES['ENABLED_PAYMENT_REPORTS']: ${_("These reports are delimited by start and end dates.")} ${_("Start Date: ")} ${_("End Date: ")} %if "itemized_purchase_report" in settings.FEATURES['ENABLED_PAYMENT_REPORTS']: Itemized Purchase Report %endif %if "refund_report" in settings.FEATURES['ENABLED_PAYMENT_REPORTS']: Refund Report %endif %endif %if ("certificate_status" or "university_revenue_share") in settings.FEATURES['ENABLED_PAYMENT_REPORTS']: ${_("These reports are delimited alphabetically by university name. i.e., generating a report with 'Start Letter' A and 'End Letter' C will generate reports for all universities starting with A, B, and C.")} ${_("Start Letter: ")} ${_("End Letter: ")} %if "university_revenue_share" in settings.FEATURES['ENABLED_PAYMENT_REPORTS']: University Revenue Share %endif %if "certificate_status" in settings.FEATURES['ENABLED_PAYMENT_REPORTS']: Certiciate Status %endif %endif
${_("These reports are delimited by start and end dates.")}
${_("These reports are delimited alphabetically by university name. i.e., generating a report with 'Start Letter' A and 'End Letter' C will generate reports for all universities starting with A, B, and C.")}