Commit 0a4686efcf2cf0e92bf604d6b40f3c37b7dc514f
1 parent
671e2d43
Add 'channel' field to document details form
Showing
1 changed file
with
2 additions
and
1 deletions
collector/storage/forms.py
... | ... | @@ -282,12 +282,13 @@ class DocDetailsForm(ModelForm): |
282 | 282 | |
283 | 283 | class Meta: |
284 | 284 | model = Document |
285 | - fields = ['title', 'publication_date', 'publication_place', 'number', 'original_lang'] | |
285 | + fields = ['title', 'publication_date', 'publication_place', 'number', 'channel', 'original_lang'] | |
286 | 286 | labels = { |
287 | 287 | 'title': 'Tytuł', |
288 | 288 | 'publication_date': 'Data publikacji', |
289 | 289 | 'publication_place': 'Miejsce publikacji', |
290 | 290 | 'number': 'Numer', |
291 | + 'channel': 'Kanał', | |
291 | 292 | 'original_lang': 'Język oryginału' |
292 | 293 | } |
293 | 294 | |
... | ... |