search_results.html 1007 B

1234567891011121314151617181920212223242526272829303132
  1. {% extends "base.html" %}
  2. {% block title_extra%} | Ricerca | Pagina {{pagination.page}} {% endblock %}
  3. {% block content %}
  4. <style>
  5. .post-hidden { font-size: 70%; }
  6. .post-hidden a { color: gray; }
  7. .result .author { font-style: italic; font-size: 85%;}
  8. </style>
  9. <table class="table table-striped">
  10. <thead>
  11. <th>ID</th>
  12. <th>Data</th>
  13. <th>Titolo</th>
  14. <th>Autore</th>
  15. </thead>
  16. <tbody>
  17. {% for r in results %}
  18. <tr class="result post-display--{{r.display}} {% if r.display == 'f' %}post-hidden{%endif%}"
  19. >
  20. <td>
  21. <a href="{{url_for('news_by_nid', nid=r.nid)}}">{{r.nid}}</a>
  22. </td>
  23. <td> <time>{{r.published_datetime.strftime('%d/%m/%Y')}}</time> </td>
  24. <td> {{r.title}} </td>
  25. <td class="author">{{r.author}}</td>
  26. </tr>
  27. {% endfor %}
  28. </tbody>
  29. </table>
  30. {{pagination.links}}
  31. {% endblock content %}