From ed0767ec25dfbb93dfa117342cf7c9248432b831 Mon Sep 17 00:00:00 2001 From: Daniel Gray Date: Wed, 17 Jul 2024 07:56:29 +0200 Subject: [PATCH] updating coding --- app/templates/app/search.html | 300 +++++++++++++++++----------------- 1 file changed, 150 insertions(+), 150 deletions(-) diff --git a/app/templates/app/search.html b/app/templates/app/search.html index aa2effb7..847c8f8c 100644 --- a/app/templates/app/search.html +++ b/app/templates/app/search.html @@ -3,171 +3,171 @@ {% load i18n %} {% block content %} -
-
-
-
-
{% trans "Search a term" %}
-
- -
- -
-
-
-
- {% for document in search_results %} -
-
    -
  • - {% trans "Project Name:" %} - {{ document.name }} -
  • -
  • - {% trans "Project description:" %} - {{ document.description }} -
  • -
  • - {% if document.logo %} - - {% endif %} - -
  • -
  • - {% trans "Title:" %} - {{ document.title }} -
  • -
  • - {% trans "Institution:" %} - {{ document.institution }} -
  • -
  • - {% trans "Headline:" %} - {{ document.search_headline|safe }} -
  • -
  • - {% trans "File:" %} - {{ document.uploaded_file }} -
  • -
  • - {% trans "License:" %} - {{ document.license }} -
  • -
  • - {% trans "License:" %} - {{ document.document_type }} -
  • -
  • - {% trans "Mime Type:" %} - {{ document.mime_type }} -
  • -
  • - {% trans "Rank:" %} - {{ document.rank }} -
  • -
-
- {% endfor %} -
-
-
-
- -
-
+
+
+
+
+
{% trans "Search a term" %}

-
-
-
- -
- {% for checkbox in filter.form.institution %} -
- {{ checkbox.tag }} - -
- {% endfor %} -
+ + +
+
+
+ {% for document in search_results %} +
+
    +
  • + {% trans "Project Name:" %} + {{ document.name }} +
  • +
  • + {% trans "Project description:" %} + {{ document.description }} +
  • +
  • + {% if document.logo %} + + {% endif %} + +
  • +
  • + {% trans "Title:" %} + {{ document.title }} +
  • +
  • + {% trans "Institution:" %} + {{ document.institution }} +
  • +
  • + {% trans "Headline:" %} + {{ document.search_headline|safe }} +
  • +
  • + {% trans "File:" %} + {{ document.uploaded_file }} +
  • +
  • + {% trans "License:" %} + {{ document.license }} +
  • +
  • + {% trans "License:" %} + {{ document.document_type }} +
  • +
  • + {% trans "Mime Type:" %} + {{ document.mime_type }} +
  • +
  • + {% trans "Rank:" %} + {{ document.rank }} +
  • +
+
+ {% endfor %} +
+
+
+
+ +
+
+
+ +
+
+
+
+ +
+ {% for checkbox in filter.form.institution %} +
+ {{ checkbox.tag }} + +
+ {% endfor %}
-
-
- -
- {% for checkbox in filter.form.document_type %} -
- {{ checkbox.tag }} - -
- {% endfor %} -
+
+
+
+ +
+ {% for checkbox in filter.form.document_type %} +
+ {{ checkbox.tag }} + +
+ {% endfor %}
-
-
- -
- {% for checkbox in filter.form.subjects %} -
- {{ checkbox.tag }} - -
- {% endfor %} -
+
+
+
+ +
+ {% for checkbox in filter.form.subjects %} +
+ {{ checkbox.tag }} + +
+ {% endfor %}
-
-
- -
- {% for checkbox in filter.form.languages %} -
- {{ checkbox.tag }} - -
- {% endfor %} -
+
+
+
+ +
+ {% for checkbox in filter.form.languages %} +
+ {{ checkbox.tag }} + +
+ {% endfor %}
-
- -
- -
-
+
+
+ +
+
+
+
{% endblock content %}