12 lines
313 B
Python
12 lines
313 B
Python
![]() |
from django.views.generic import ListView
|
||
|
|
||
|
from c3nav.control.views import ControlPanelMixin
|
||
|
from c3nav.mesh.models import MeshNode
|
||
|
|
||
|
|
||
|
class MeshNodeListView(ControlPanelMixin, ListView):
|
||
|
model = MeshNode
|
||
|
template_name = "control/mesh_nodes.html"
|
||
|
ordering = "address"
|
||
|
context_object_name = "nodes"
|