Fixes on tests0

This commit is contained in:
Marc 2014-10-24 12:26:24 +00:00
parent 555e17d814
commit d5ddead598
1 changed files with 3 additions and 0 deletions

View File

@ -41,6 +41,9 @@ class WebAppAdmin(AccountAdminMixin, ExtendedModelAdmin):
url = change_url(website)
name = "%s on %s" % (website.name, content.path)
websites.append('<a href="%s">%s</a>' % (url, name))
add_url = reverse('admin:webapps_website_add')
add_url += '?account=%s' % webapp.account_id
websites.append('<a href="%s">%s</a>' % (add_url, _("Add website")))
return '<br>'.join(websites)
display_websites.short_description = _("web sites")
display_websites.allow_tags = True