Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
123456789101112131415161718192021222324252627282930313233
  1. {% extends 'base.html' %}
  2. {% block content %}
  3. <h1>{% block title %} Edit "{{ resource['name'] }}" {% endblock %}</h1>
  4. <form method="post">
  5. <div class="mb-3 mt-3">
  6. <label for="name">Name</label>
  7. <input type="text" name="name" placeholder="Name"
  8. class="form-control"
  9. value="{{ request.form['name'] or resource['name'] }}">
  10. </input>
  11. </div>
  12. <div class="mb-3 mt-3">
  13. <label for="description">Description</label>
  14. <textarea name="description" placeholder="Description"
  15. class="form-control">{{ request.form['description'] or resource['description'] }}</textarea>
  16. </div>
  17. <div class="mb-3 mt-3">
  18. <button type="submit" class="btn btn-primary">Submit</button>
  19. </div>
  20. </form>
  21. <hr>
  22. {% if resource['type'] == 'tool' %}
  23. <form action="{{ url_for('tool.delete_tool', tool_id=resource['id']) }}" method="POST">
  24. <input type="submit" value="Delete"
  25. class="btn btn-danger btn-sm"
  26. onclick="return confirm('Are you sure you want to delete this tool?')">
  27. </form>
  28. {% endif %}
  29. {% endblock %}