Skip to content
Snippets Groups Projects
Select Git revision
  • 80402734674bf71b0bafc5adb61f6e10192ad30d
  • develop default protected
  • master protected
  • feature/POL1-813-error-report-sensu-check
  • 0.22
  • 0.21
  • 0.20
  • 0.19
  • 0.18
  • 0.17
  • 0.16
  • 0.15
  • 0.14
  • 0.13
  • 0.12
  • 0.11
  • 0.10
  • 0.9
  • 0.8
  • 0.7
  • 0.6
  • 0.5
  • 0.4
  • 0.3
24 results

setup.py

Blame
  • admin.py 303 B
    from django.contrib import admin
    from flowspy.accounts.models import *
    from django.contrib.auth.models import User
    from flowspy.peers.models import *
    from django.conf import settings
    
    class UserPrAdmin(admin.ModelAdmin):
        list_display = ('user', 'peer')
    
    admin.site.register(UserProfile, UserPrAdmin)