'organisations': {
'title': 'Organisation',
'objects': lambda u: Organisation.objects.filter(managers=u),
+ 'submit_header': 'Before submitting a new Organisation, please verify on the list of <a href="/account/orglist">current organisations</a> if the organisation already exists. If it does, please contact the manager of the organisation to gain permissions.',
},
}
return render_to_response('account/objectlist.html', {
'objects': o['objects'](request.user),
'title': o['title'],
+ 'submit_header': o.has_key('submit_header') and o['submit_header'] or None,
'suburl': objtype,
}, NavContext(request, 'account'))
{%endfor%}
</ul>
+{%if submit_header%}
+<p>{{submit_header|safe}}</p>
+{%endif%}
<p>
<a href="/account/{{suburl}}/new/">Submit {{title}}</a>
</p>
{%block contents%}
<h1>Organisations</h1>
<p>
-The following organisations are registered in our database:
+The following organisations are registered in our database. Note that any
+organisations listed as <i>Migrated Connections</i> are organisations that
+have been migrated from our old website and not been given a proper
+manager in the new system. If you are the manager of one of these
+organisations, please send an email to
+<a href="mailto:webmaster@postgresql.org">webmaster@postgresql.org</a>
+letting us know this, and including the name of your community account.
+We will then link your account to this organisation.
</p>
<table>
<tr>