﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
3817	"submit_row shows ""Save and add another"" button when user has not permission to add"	reza@…	nobody	"submit_row decide to show the ""Save and add another"" button when:
{{{
 'show_save_and_add_another': not is_popup and (not opts.admin.save_as or context['add'])
}}}
and show ""Save and continue editing"" when:
{{{
 'show_save_and_continue': not is_popup and context['has_change_permission']
}}}

It's better to change first condition to this:
{{{
 'show_save_and_add_another': not is_popup and (not opts.admin.save_as or context['add']) and context['has_add_permission']
}}}"		closed	contrib.admin	newforms-admin		worksforme		reza@… django@…	Accepted	1	0	0	0	0	0
