[Answered ]-Model inheritance and RSS Feed framework

2👍

You have two options:

  1. use the title_template and description_template attributes on the Feed class to point to templates that can handle a very generic input variable.

  2. Recreate your template logic in the feed class’ methods so that your template variable gets a normalized piece of data.

Either one will get you to the same end point.

Leave a comment