Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3315190
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:19:16+00:00 2026-05-17T22:19:16+00:00

Inside my view.py, I have two functions, one that processes input from a form

  • 0

Inside my view.py, I have two functions, one that processes input from a form and outputs a filtered list, and another that is supposed to export this list to CSV.

Here is the return of my first function:

return render_to_response('templateX.html',
{
 'queryset': queryset,
 'filter_form': filter_form,
 'validated': validated,
},
 context_instance = RequestContext(request)
 )

Here is the exporting function:

def export_to_csv(request):
    # get the response object, this can be used as a stream.
    response = HttpResponse(mimetype='text/csv')
    # force download.
    response['Content-Disposition'] = 'attachment;filename=export.csv'
    # the csv writer
    writer = csv.writer(response)
    qs = request.session['queryset']
    for cdr in qs:
        writer.writerow([cdr['calldate'], cdr['src'], cdr['dst'], ])
    return response   

I’m not sure how to get the queryset from my first function, which contains a list of the items I want in my CSV and use it in my export_to_csv function.
Or would the best way be combining these two functions and have the user click on a checkbox whether he/she wants to download a CSV file.
Any help would be appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T22:19:17+00:00Added an answer on May 17, 2026 at 10:19 pm

    I’d recommend combining these into one view function which takes an extra parameter:

    def my_view(request, exportCSV):
        # ... Figure out `queryset` here ...
    
        if exportCSV:
            response = HttpResponse(mimetype='text/csv')
            response['Content-Disposition'] = 'attachment;filename=export.csv'
            writer = csv.writer(response)
            for cdr in queryset:
                writer.writerow([cdr['calldate'], cdr['src'], cdr['dst'], ])
            return response
        else:
            return render_to_response('templateX.html', {'queryset': queryset,
                'filter_form': filter_form, 'validated': validated},
                context_instance = RequestContext(request))
    

    Then, in your urls.py, put something like this in your urlpatterns:

    url(r'^form', 'my_view', {"exportCSV": False}, name="form"),
    url(r'^csv', 'my_view', {"exportCSV": True}, name="export"),
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two UIImageView objects inside my view (both 320x480 one above the other).
I have two scripts in a View, one script is inside a Component. In
I have two subviews that load. One is a tabbar thats inside a viewcontroller
I have two helper methods inside a custom View which are called by their
I have controller PlayerController and actions inside: View , Info , List . So
I have a few methods inside my view controller that load up for future
Scenario: I have a View and inside that view I also a partial view.
I have two ArrayList's that I am using, one for the enemy sprites and
Currently I have two activitys inside one tab. In second activity I have custom
I have an action (Index) that return a View with a concrete model. Inside

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.