#python

files_dir = consts.FILES_DIR

try:
	f = open(files_dir + os.sep + "not.chosen")
	lines = f.readlines()
	f.close()
except:
	lines = ["No submissions in list."]

write("""
The following submissions have not been selected for publication.
<br>They are listed by submission time and title, beginning with the
most recent.
<hr>
<pre>
""")

for line in lines:
	write(line.strip())

