Django-Klasse: `django.utils.feedgenerator.Rss201rev2Feed` ### Channel-Attribute | Tag | Beschreibung | Django-Attribut | |--------------------------------------|-----------------------------------------|----------------------| | `\` | Feed-URL | `feed_url` | | `\` | Kanalname | `title` | | `\<language>` | Sprache | `language` | | `\<lastBuildDate>` | Datum der letzten Veränderung des Feeds | `latest_post_date()` | | `\<description>` | Kanalbeschreibung | `description` | | `\<link>` | Link zum Kanal | `link` | | `\<copyright>` | Autor | `feed_copyright` | | `\<image><url><title><link></image>` | Cover-URL / Kanalname / Link | - | | `\<itunes:image href="">` | Cover-URL | - | | `\<itunes:author>` | Autor | - | | `\<itunes:summary>` | Kanalbeschreibung | - | ### Item-Attribute | Tag | Beschreibung | Django-Attribut | |--------------------------------------------------|------------------------|-----------------| | `\<title>` | Titel | `title` | | `\<itunes:title>` | Titel | - | | `\<description>` | Beschreibung | `description` | | `\<pubDate>` | Veröffentlichungsdatum | `pubdate` | | `\<link>` | Link | `link` | | `\<guid>` | Eindeutige ID/ | `unique_id` | | `\<itunes:summary>` | Bechreibung | - | | `\<itunes:author>` | Autor | - | | `\<enclosure url="" type="audio/mpeg" length=1>` | Audiodatei | `enclosures ` | | `\<itunes:duration>00:40:35</itunes:duration>` | Dauer | - | | `\<itunes:image href="">` | Cover-URL | - |