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 9220681
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T03:24:24+00:00 2026-06-18T03:24:24+00:00

I have a custom made content type in FeinCMS. class DownloadsContent(models.Model): title = models.CharField(max_length=200,

  • 0

I have a custom made content type in FeinCMS.

class DownloadsContent(models.Model):
    title = models.CharField(max_length=200, verbose_name=_('title'))
    files = FileManyToMany(verbose_name=_('files'))

The ‘files’ field is an manytomany which only shows .doc and .pdf files:

class FileManyToMany(models.ManyToManyField):
    def __init__(self, to=MediaFile, **kwargs):
        limit = {'type__in': ['doc', 'pdf']}
        limit.update(kwargs.get('limit_choices_to', {}))
        kwargs['limit_choices_to'] = limit
        super(FileManyToMany, self).__init__(to, **kwargs)

Untill now everything works fine. When adding this content type it shows all files.

But how can I make use of the FilteredSelectMultiple widget in my content type? Like:

enter image description here

  • 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-06-18T03:24:26+00:00Added an answer on June 18, 2026 at 3:24 am

    In my own model field class, FileManyToMany, Add “def formfield(self, …)”
    which adds the widget

    from django.db import models
    from feincms.module.medialibrary.models import MediaFile
    
    class FileManyToMany(models.ManyToManyField):
        def __init__(self, to=MediaFile, **kwargs):
            limit = {'type__in': ['doc', 'pdf', 'xls']}
            limit.update(kwargs.get('limit_choices_to', {}))
            kwargs['limit_choices_to'] = limit
            super(FileManyToMany, self).__init__(to, **kwargs)
    
        def formfield(self, **kwargs):
            from django.contrib import admin
            defaults = {'widget': admin.widgets.FilteredSelectMultiple('vebose_name', False)}
            defaults.update(kwargs)
            return super(FileManyToMany, self).formfield(**defaults)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here's what I have: Custom-made C# CMS where the content is stored in a
I have a custom-made view that extends the View class. I would like 2
I have a custom Checkbox its made in a Div <div class=zs name=toggle state=on
I have a custom content type in SharePoint which has an approval workflow associated
I have multiple master pages in my application. I made a custom type and
I have a made a custom post type called Member Resources the posts under
I have a custom made UINavigationBar (different size, background etc) that has inside a
So I have custom UITableViewCells (made with storyboard), and when I do not literally
How can I have a custom home made short URL that performs a 301
I have cells in UITableView , I have made custom frame for the label

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.