Tidies up some of the proposal fields

This commit is contained in:
Christopher Neugebauer 2016-06-19 13:30:10 +10:00
parent aa56ac00c3
commit 782e5c9ea2

View file

@ -88,12 +88,8 @@ class ProposalBase(models.Model):
title = models.CharField(max_length=100, verbose_name=_("Title")) title = models.CharField(max_length=100, verbose_name=_("Title"))
abstract = models.TextField( abstract = models.TextField(
_("Abstract"), _("Abstract"),
help_text=_("This will appear in the conference programme. You will " help_text=_("This will appear in the conference programme. Up to about "
"have an opportunity to update it once the proposal is " "500 words. Edit using <a "
"accepted, but it should reasonably reflect what you will "
"be presenting, and in any case it will appear as-is on "
"the website in the draft programme. Up to about 500 "
"words. Edit using <a "
"href='http://daringfireball.net/projects/markdown/basics' " "target='_blank'>Markdown</a>.") "href='http://daringfireball.net/projects/markdown/basics' " "target='_blank'>Markdown</a>.")
) )
abstract_html = models.TextField(blank=True) abstract_html = models.TextField(blank=True)
@ -121,7 +117,7 @@ class ProposalBase(models.Model):
) )
technical_requirements_html = models.TextField(blank=True) technical_requirements_html = models.TextField(blank=True)
project = models.TextField( project = models.CharField(
max_length=100, max_length=100,
blank=True, blank=True,
help_text=_("The name of the project you will be talking about."), help_text=_("The name of the project you will be talking about."),