objtypes = {
'news': {
- 'title': 'News articles',
+ 'title': 'News article',
'objects': lambda u: NewsArticle.objects.filter(org__managers=u),
},
'events': {
- 'title': 'Events',
+ 'title': 'Event',
'objects': lambda u: Event.objects.filter(org__managers=u),
},
'products': {
- 'title': 'Products',
+ 'title': 'Product',
'objects': lambda u: Product.objects.filter(publisher__managers=u),
},
'organisations': {
- 'title': 'Organisations',
+ 'title': 'Organisation',
'objects': lambda u: Organisation.objects.filter(managers=u),
},
}
{%extends "base/page.html"%}
{%block title%}Your account{%endblock%}
{%block contents%}
-<h1>{{title}}</h1>
+<h1>{{title}}s</h1>
<p>
Objects in red are awaiting moderator approval. Note that modifying a previously
approved object <i>may</i> result in it being un-approved if the changes are
{%endfor%}
</ul>
+<p>
+<a href="/account/{{suburl}}/new/">Submit {{title}}</a>.
+</p>
+
{%endblock%}