Skip to content

Commit

Permalink
Added the addresser to the fieldlist of the TemplateSet
Browse files Browse the repository at this point in the history
  • Loading branch information
scaphilo committed Jan 2, 2012
1 parent 63e6f62 commit 5f15c66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions djangoUserExtension/admin.py
Expand Up @@ -58,14 +58,14 @@ class OptionTemplateSet(admin.ModelAdmin):
search_fields = ('id', 'title', 'organisationname', 'invoiceXSLFile', 'quoteXSLFile', 'purchaseconfirmationXSLFile',
'deilveryorderXSLFile', 'profitLossStatementXSLFile', 'balancesheetXSLFile',
'logo', 'footerTextsalesorders', 'headerTextsalesorders',
'headerTextpurchaseorders', 'footerTextpurchaseorders', 'pagefooterleft', 'pagefootermiddle', 'bankingaccountref'
'headerTextpurchaseorders', 'footerTextpurchaseorders', 'pagefooterleft', 'pagefootermiddle', 'bankingaccountref', 'addresser'
)
fieldsets = (
(_('Basics'), {
'fields': ('title', 'organisationname', 'invoiceXSLFile', 'quoteXSLFile', 'purchaseconfirmationXSLFile',
'deilveryorderXSLFile', 'profitLossStatementXSLFile', 'balancesheetXSLFile',
'logo', 'fopConfigurationFile', 'footerTextsalesorders', 'headerTextsalesorders',
'headerTextpurchaseorders', 'footerTextpurchaseorders', 'pagefooterleft', 'pagefootermiddle', 'bankingaccountref')
'headerTextpurchaseorders', 'footerTextpurchaseorders', 'pagefooterleft', 'pagefootermiddle', 'bankingaccountref', 'addresser')
}),
)

Expand Down

0 comments on commit 5f15c66

Please sign in to comment.