Alex's answer is a good way, but here's an alternative. Django and slugs are going well. And unobtrusive javascript with jquery is the hip at the moment.
POSTing URL-. , SEO, , POST, - "".
, Alex my, , javascript . , - (, ).
(, )
<script type="text/javascript">
$(function() {
$('#nav_combo').bind('change', function() { goToPage(); } );
});
function goToPage() {
var baseUrl = '/your/base/url/';
window.location.href = baseUrl + $('nav_combo').val()
}
</script>
...
<form>
<select id="nav_combo">
<option value="page-1-slug">Page 1</option>
<option value="page-2-slug">Page 2</option>
</select>
</form>
. , , django object_detail generic view.