team-3/src/c3nav/control/views/mesh.py

12 lines
313 B
Python
Raw Normal View History

2023-10-02 17:31:24 +02:00
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"