您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

60 行
2.5KB

  1. {% extends 'base.html' %}
  2. {% block content %}
  3. <div class="row">
  4. <div class="col-12 text-center">
  5. <h1>{% block title %}
  6. {% if (type == 'sensitivity') %}
  7. {{ type|capitalize|replace("ty", "ties") }}
  8. {% elif (type == 'typology') %}
  9. {{ type|capitalize|replace("gy", "gies") }}
  10. {% else %}
  11. {{ type|capitalize + 's' }}
  12. {% endif %}
  13. {% endblock %}
  14. </h1>
  15. </div>
  16. </div>
  17. <div class="row">
  18. <div class="col-12 text-center">
  19. <p>
  20. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eget viverra magna. Nam in ante ultricies purus feugiat vestibulum et ac erat. Donec in sagittis ante. Maecenas non mauris et eros commodo fringilla. Integer accumsan ullamcorper diam, non rhoncus tellus molestie ut. Maecenas finibus pretium dolor ac sagittis.
  21. </p>
  22. </div>
  23. </div>
  24. <div class="row">
  25. {% for resource in resources %}
  26. <div class="col-md-4 col-sm-6 py-3">
  27. <div class="card text-dark bg-{{type}} mb-3">
  28. <div class="card-body">
  29. {% if resource['type'] == 'tool' %}
  30. <a href="{{ url_for('tool.show_tool', tool_id=resource['id']) }}">
  31. <h3 class="card-title text-center text-dark">{{ resource['name'] }}</h3>
  32. </a>
  33. {% elif resource['type'] == 'practice' %}
  34. <a href="{{ url_for('practice.show_practice', practice_id=resource['id']) }}">
  35. <h3 class="card-title text-center text-dark">{{ resource['name'] }}</h3>
  36. </a>
  37. {% endif %}
  38. <p class="card-text">
  39. {{ resource['description']|truncate(100) }}
  40. </p>
  41. {% if current_user.is_authenticated %}
  42. {% if resource['type'] == 'tool' %}
  43. <a href="{{ url_for('tool.edit_tool', tool_id=resource['id']) }}">
  44. <span class="badge bg-dark">Edit</span>
  45. </a>
  46. {% endif %}
  47. {% if resource['type'] == 'practice' %}
  48. <a href="{{ url_for('practice.edit_practice', practice_id=resource['id']) }}">
  49. <span class="badge bg-dark">Edit</span>
  50. </a>
  51. {% endif %}
  52. {% endif %}
  53. </div>
  54. </div>
  55. </div>
  56. {% endfor %}
  57. </div>
  58. {% endblock %}