~anna-granudd/mailmanweb/systers_ui

« back to all changes in this revision

Viewing changes to systers_django/models.py

  • Committer: Anna Granudd
  • Date: 2010-08-02 13:06:26 UTC
  • Revision ID: anna@athena-20100802130626-wfn5gbvdo5aacy72
Changed folder logic; main folder now mailman_ui instead of systers_ui.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- coding: utf-8 -*-
2
2
from django.db import models
3
 
from systers_ui.mailman_django.mailman_rest_client import MailmanRESTClient
4
 
from systers_ui.mailman_django.mailman_rest_client import MailmanRESTClientError
 
3
from mailman_ui.mailman_django.mailman_rest_client import MailmanRESTClient
 
4
from mailman_ui.mailman_django.mailman_rest_client import MailmanRESTClientError
5
5
from django.conf import settings
6
6
from django.core.urlresolvers import reverse
7
7
 
9
9
    """The models for a Systers mailing list, first setting the values for 
10
10
    Systers than creating the appropriate Mailman list."""
11
11
    _mm_listname = models.EmailField('List name:', max_length=200)
12
 
    
13
12
    _mm_created = models.BooleanField(default=False)
14
 
 
15
13
    #website = models.URLField()
16
14
    questions_essay = models.TextField("Questions for the essay:", 
17
15
                                       blank=True, max_length=200)