diff --git a/conntrackt/templates/conntrackt/search.html b/conntrackt/templates/conntrackt/search.html new file mode 100644 --- /dev/null +++ b/conntrackt/templates/conntrackt/search.html @@ -0,0 +1,50 @@ +{% extends "conntrackt/base.html" %} + +{% block content %} + +
+
+ {% if search_term %} +

Search results for: {{ search_term }}

+ {% else %} +

Search

+ {% endif %} +
+ +
+
+ +
+ + {% if projects %} +

Matched projects

+ +
+ {% elif search_term %} +

There are no projects matching your query.

+
+ {% endif %} + + {% if entities %} +

Matched Entities

+ +
+ {% elif search_term %} +

There are no entities matching your query.

+
+ {% endif %} + +
+
+{% endblock content %}