[Answer]-Couldn't load admin interface due the error below

1👍

Your regular expression in line

url(r'^(?P<ref_id>.*)$', 'joins.views.share', name='share'),

matches admin/ as well you should use something less “greedy”.

Leave a comment