Example #1
0
def retrieve_download(req,
                      domain,
                      download_id,
                      template="hqwebapp/includes/file_download.html"):
    next_url = req.GET.get('next', reverse('my_project_settings',
                                           args=[domain]))
    return soil_views.retrieve_download(req,
                                        download_id,
                                        template,
                                        extra_context={
                                            'domain': domain,
                                            'next_url': next_url
                                        })
Example #2
0
def retrieve_download(req, domain, download_id, template="hqwebapp/file_download.html"):
    return soil_views.retrieve_download(req, download_id, template)
Example #3
0
def retrieve_download(req, domain, download_id, template="style/includes/file_download.html"):
    return soil_views.retrieve_download(req, download_id, template, extra_context={'domain': domain})
Example #4
0
def retrieve_download(req,
                      domain,
                      download_id,
                      template="hqwebapp/file_download.html"):
    return soil_views.retrieve_download(req, download_id, template)
Example #5
0
def retrieve_download(req, domain, download_id, template="hqwebapp/includes/file_download.html"):
    next_url = req.GET.get('next', reverse('my_project_settings', args=[domain]))
    return soil_views.retrieve_download(req, download_id, template,
                                        extra_context={'domain': domain, 'next_url': next_url})
Example #6
0
def retrieve_download(req, domain, download_id, template="style/includes/file_download.html"):
    return soil_views.retrieve_download(req, download_id, template)
Example #7
0
def retrieve_download(req,
                      domain,
                      download_id,
                      template="style/includes/file_download.html"):
    return soil_views.retrieve_download(req, download_id, template)