Files

318 lines
4.8 KiB
Markdown
Raw Permalink Normal View History

2023-02-15 09:55:01 +02:00
Generated from autocomplete_views.py on 2023-02-14 15:33:37.135106
2021-10-15 03:25:38 -05:00
# peeringdb_server.autocomplete_views
Autocomplete views.
Handle most autocomplete functionality found in peeringdb.
Note: Quick search behavior is specified in search.py
# Classes
---
## AutocompleteHTMLResponse
```
AutocompleteHTMLResponse(dal_select2.views.Select2QuerySetView)
```
List options for a Select2 widget.
### Methods
#### render_to_response
`def render_to_response(self, context)`
Return a JSON response in Select2 format.
---
## CommandLineToolHistoryAutocomplete
```
CommandLineToolHistoryAutocomplete(dal_select2.views.Select2QuerySetView)
```
Autocomplete for command line tools that were run via the admin ui.
### Methods
#### get_queryset
`def get_queryset(self)`
Filter the queryset with GET['q'].
---
#### get_result_label
`def get_result_label(self, item)`
Return the label of a result.
---
## DeletedVersionAutocomplete
```
DeletedVersionAutocomplete(dal_select2.views.Select2QuerySetView)
```
Autocomplete that will show reversion versions where an object
was set to deleted.
### Methods
#### get_queryset
`def get_queryset(self)`
Filter the queryset with GET['q'].
---
#### get_result_label
`def get_result_label(self, item)`
Return the label of a result.
---
## ExchangeAutocomplete
```
ExchangeAutocomplete(peeringdb_server.autocomplete_views.AutocompleteHTMLResponse)
```
List options for a Select2 widget.
### Methods
#### get_queryset
`def get_queryset(self)`
Filter the queryset with GET['q'].
---
#### get_result_label
`def get_result_label(self, item)`
Return the label of a result.
---
## ExchangeAutocompleteJSON
```
ExchangeAutocompleteJSON(dal_select2.views.Select2QuerySetView)
```
List options for a Select2 widget.
### Methods
#### get_queryset
`def get_queryset(self)`
Filter the queryset with GET['q'].
---
## FacilityAutocomplete
```
FacilityAutocomplete(peeringdb_server.autocomplete_views.AutocompleteHTMLResponse)
```
List options for a Select2 widget.
### Methods
#### get_queryset
`def get_queryset(self)`
Filter the queryset with GET['q'].
---
#### get_result_label
`def get_result_label(self, item)`
Return the label of a result.
---
## FacilityAutocompleteForExchange
```
FacilityAutocompleteForExchange(peeringdb_server.autocomplete_views.FacilityAutocomplete)
```
List options for a Select2 widget.
### Methods
#### get_queryset
`def get_queryset(self)`
Filter the queryset with GET['q'].
---
## FacilityAutocompleteForNetwork
```
FacilityAutocompleteForNetwork(peeringdb_server.autocomplete_views.FacilityAutocomplete)
```
List options for a Select2 widget.
2023-02-15 09:55:01 +02:00
### Methods
#### get_queryset
`def get_queryset(self)`
Filter the queryset with GET['q'].
---
## FacilityAutocompleteForOrganization
```
FacilityAutocompleteForOrganization(peeringdb_server.autocomplete_views.FacilityAutocomplete)
```
List of facilities under same organization ownership
2021-10-15 03:25:38 -05:00
### Methods
#### get_queryset
`def get_queryset(self)`
Filter the queryset with GET['q'].
---
## FacilityAutocompleteJSON
```
FacilityAutocompleteJSON(dal_select2.views.Select2QuerySetView)
```
List options for a Select2 widget.
### Methods
#### get_queryset
`def get_queryset(self)`
Filter the queryset with GET['q'].
---
## GrappelliHandlerefAutocomplete
```
2022-07-15 21:47:59 +03:00
GrappelliHandlerefAutocomplete(peeringdb_server.autocomplete_views.PDBAdminGrappelliAutocomplete)
2021-10-15 03:25:38 -05:00
```
Make sure that the auto-complete fields managed
by grappelli in django admin exclude soft-deleted
objects.
## IXLanAutocomplete
```
IXLanAutocomplete(peeringdb_server.autocomplete_views.AutocompleteHTMLResponse)
```
List options for a Select2 widget.
### Methods
#### get_queryset
`def get_queryset(self)`
Filter the queryset with GET['q'].
---
#### get_result_label
`def get_result_label(self, item)`
Return the label of a result.
---
## NetworkAutocomplete
```
NetworkAutocomplete(peeringdb_server.autocomplete_views.AutocompleteHTMLResponse)
```
List options for a Select2 widget.
### Methods
#### get_queryset
`def get_queryset(self)`
Filter the queryset with GET['q'].
---
#### get_result_label
`def get_result_label(self, item)`
Return the label of a result.
---
## OrganizationAutocomplete
```
OrganizationAutocomplete(peeringdb_server.autocomplete_views.AutocompleteHTMLResponse)
```
List options for a Select2 widget.
### Methods
#### get_queryset
`def get_queryset(self)`
Filter the queryset with GET['q'].
---
#### get_result_label
`def get_result_label(self, item)`
Return the label of a result.
---
2022-07-15 21:47:59 +03:00
## PDBAdminGrappelliAutocomplete
```
PDBAdminGrappelliAutocomplete(grappelli.views.related.AutocompleteLookup)
```
AutocompleteLookup
2021-10-15 03:25:38 -05:00
## ToolHistory
```
ToolHistory(peeringdb_server.autocomplete_views.CommandLineToolHistoryAutocomplete)
```
Autocomplete for command line tools that were run via the admin ui.