I have just moved my django site on my staging server, and the admin side of the site has no styling with it, when previously in local development it was fine, I read somewh
I think you've created the symlink the wrong way round - your command has created a htdocs symlink in ..../contrib/admin/
What you need is something like
sudo ln -s /usr/lib/python2.5/site-packages/django/contrib/admin/ /var/www/sico/htdocs/X
Where X is whatever you need to get to your ADMIN_MEDIA_PREFIX. I think the default would be admin/media
Hope that helps