Advertisement
Guest User

Untitled

a guest
Aug 20th, 2024
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <!-- templates/temp_update.html -->
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Update Task</title>
  8. <style>
  9. /* Your CSS styling here */
  10. </style>
  11. </head>
  12. <body>
  13. <div class="container">
  14. <h1>Update Task</h1>
  15.  
  16. <!-- Display task details -->
  17. <div class="task-details">
  18. <h2>Current Task Details:</h2>
  19. <p><strong>Name:</strong> {{ task.name }}</p>
  20. <p><strong>Description:</strong> {{ task.description }}</p>
  21. <p><strong>Custom:</strong> {{ task.is_custom|yesno:"Yes,No" }}</p>
  22. <p><strong>Created on:</strong> {{ task.task_created }}</p>
  23. </div>
  24.  
  25. <!-- Update form -->
  26. <form method="POST">
  27. {% csrf_token %}
  28. <p>{{ form.name.label_tag }} {{ form.name }}</p>
  29. <p>{{ form.description.label_tag }} {{ form.description }}</p>
  30. <p>{{ form.is_custom.label_tag }} {{ form.is_custom }}</p>
  31. <button type="submit">Update Task</button>
  32. </form>
  33.  
  34.  
  35. <a href="{% url 'crud-redirect' %}" class="back-link">Back to Task List</a>
  36. </div>
  37. </body>
  38. </html>
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement