Ejemplo n.º 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
                                        })
Ejemplo n.º 2
0
def retrieve_download(req, domain, download_id, template="hqwebapp/file_download.html"):
    return soil_views.retrieve_download(req, download_id, template)
Ejemplo n.º 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})
Ejemplo n.º 4
0
def retrieve_download(req,
                      domain,
                      download_id,
                      template="hqwebapp/file_download.html"):
    return soil_views.retrieve_download(req, download_id, template)
Ejemplo n.º 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})
Ejemplo n.º 6
0
def retrieve_download(req, domain, download_id, template="style/includes/file_download.html"):
    return soil_views.retrieve_download(req, download_id, template)
Ejemplo n.º 7
0
def retrieve_download(req,
                      domain,
                      download_id,
                      template="style/includes/file_download.html"):
    return soil_views.retrieve_download(req, download_id, template)