Add fragment type in views. Minor wording changes
[flowspy] / accounts / models.py
1 #
2 # -*- coding: utf-8 -*- vim:fileencoding=utf-8:
3 #Copyright © 2011-2013 Greek Research and Technology Network (GRNET S.A.)
4
5 #Developed by Leonidas Poulopoulos (leopoul-at-noc-dot-grnet-dot-gr),
6 #GRNET NOC
7 #
8 #Permission to use, copy, modify, and/or distribute this software for any
9 #purpose with or without fee is hereby granted, provided that the above
10 #copyright notice and this permission notice appear in all copies.
11 #
12 #THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD
13 #TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
14 #FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
15 #CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
16 #DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
17 #ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
18 #SOFTWARE.
19 #
20 from django.db import models
21 from django.contrib.auth.models import User
22 from flowspy.peers.models import *
23
24
25 class UserProfile(models.Model):
26     user = models.OneToOneField(User)
27     peer = models.ForeignKey(Peer)
28     
29     class Meta:
30         permissions = (
31                 ("overview", "Can see registered users and rules"),
32             )
33
34     
35     def __unicode__(self):
36         return "%s:%s" %(self.user.username, self.peer.peer_name)
37
38     def get_address_space(self):
39         networks = self.domain.networks.all()
40         if not networks:
41             return False
42         return networks