Changes between Version 2 and Version 3 of FormField


Ignore:
Timestamp:
Feb 17, 2012, 4:11:59 AM (12 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FormField

    v2 v3  
    120120   * field_name, schema_path, rows=10, cols=40, is_required=False, validator_list=[], maxlength=None
    121121   * <textarea>
     122== Model fields Common option ==
     123 * null = False
     124 * blank = False
     125 * choices = list_of_tuples
     126 * db_column = "column_name"
     127 * db_index = False
     128 * db_tablespace = "tablespace_name"
     129 * default = value_or_func
     130 * editable = True
     131 * help_text = "text"
     132 * primary_key = False
     133 * unique = False
     134 * unique_for_date = "date_field"
     135 * unique_for_month = "date_field"
     136 * unique_for_year = "date_field"
Back to Top