Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU General Public License version 3 for # more details. # # You should have received a copy of the GNU General Public License version 3 # along with this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # # (c) 2015-2016 Valentin Samir
""" Bases: :class:`django.contrib.admin.TabularInline`
Base class for inlines in the admin interface. """ #: This controls the number of extra forms the formset will display in addition to #: the initial forms.
""" Bases: :class:`BaseInlines`
Base class for inlines in :class:`UserAdmin` interface """ #: The form :class:`TicketForm<cas_server.forms.TicketForm>` used to display tickets. #: Fields to display on a object that are read only (not editable). 'validate', 'service', 'service_pattern', 'creation', 'renew', 'single_log_out', 'value' ) #: Fields to display on a object. 'validate', 'service', 'service_pattern', 'creation', 'renew', 'single_log_out' )
""" Bases: :class:`UserAdminInlines`
:class:`ServiceTicket<cas_server.models.ServiceTicket>` in admin interface """ #: The model which the inline is using.
""" Bases: :class:`UserAdminInlines`
:class:`ProxyTicket<cas_server.models.ProxyTicket>` in admin interface """ #: The model which the inline is using.
""" Bases: :class:`UserAdminInlines`
:class:`ProxyGrantingTicket<cas_server.models.ProxyGrantingTicket>` in admin interface """ #: The model which the inline is using.
""" Bases: :class:`django.contrib.admin.ModelAdmin`
:class:`User<cas_server.models.User>` in admin interface """ #: See :class:`ServiceTicketInline`, :class:`ProxyTicketInline`, :class:`ProxyGrantingInline` #: objects below the :class:`UserAdmin` fields. #: Fields to display on a object that are read only (not editable). #: Fields to display on a object. #: Fields to display on the list of class:`UserAdmin` objects.
""" Bases: :class:`BaseInlines`
:class:`Username<cas_server.models.Username>` in admin interface """ #: The model which the inline is using.
""" Bases: :class:`BaseInlines`
:class:`ReplaceAttributName<cas_server.models.ReplaceAttributName>` in admin interface """ #: The model which the inline is using.
""" Bases: :class:`BaseInlines`
:class:`ReplaceAttributValue<cas_server.models.ReplaceAttributValue>` in admin interface """ #: The model which the inline is using.
""" Bases: :class:`BaseInlines`
:class:`FilterAttributValue<cas_server.models.FilterAttributValue>` in admin interface """ #: The model which the inline is using.
""" Bases: :class:`django.contrib.admin.ModelAdmin`
:class:`ServicePattern<cas_server.models.ServicePattern>` in admin interface """ #: See :class:`UsernamesInline`, :class:`ReplaceAttributNameInline`, #: :class:`ReplaceAttributValueInline`, :class:`FilterAttributValueInline` objects below #: the :class:`ServicePatternAdmin` fields. UsernamesInline, ReplaceAttributNameInline, ReplaceAttributValueInline, FilterAttributValueInline ) #: Fields to display on the list of class:`ServicePatternAdmin` objects. 'single_log_out', 'proxy_callback', 'restrict_users')
""" Bases: :class:`django.contrib.admin.ModelAdmin`
:class:`FederatedIendityProvider<cas_server.models.FederatedIendityProvider>` in admin interface """ #: Fields to display on a object. #: Fields to display on the list of class:`FederatedIendityProviderAdmin` objects.
""" Bases: :class:`django.contrib.admin.ModelAdmin`
:class:`FederatedUser<cas_server.models.FederatedUser>` in admin interface """ #: Fields to display on a object. #: Fields to display on the list of class:`FederatedUserAdmin` objects.
""" Bases: :class:`django.contrib.admin.ModelAdmin`
:class:`UserAttributes<cas_server.models.UserAttributes>` in admin interface """ #: Fields to display on a object.
|