add profile settings link to dropdown

pull/1/head
Andromeda Yelton 2012-10-19 12:31:23 -04:00
parent 09d5b00e50
commit 836a957d97
2 changed files with 5 additions and 1 deletions

View File

@ -98,6 +98,7 @@
{% endif %}
</a>
</li>
<li><a href="{% url supporter supporter_username=user.username %}#edit" id="profile_edit"><span>Profile Settings</span></a></li>
<li><a href="{% url manage_account %}"><span>Account Settings</span></a></li>
<li><a href="{% url auth_logout %}"><span>Sign Out</span></a></li>
</ul>

View File

@ -29,7 +29,10 @@
);
}
$j('#edit_profile').click(function() {
$j("#user-block-hide").slideToggle(300);
$j("#user-block-hide").slideToggle(300);
});
$j('#profile_edit').click(function() {
$j("#user-block-hide").slideToggle(300);
});
});
</script>