Advertisement
Nicolas_Darksoul

new_entry.html/learning_logs/templates

Dec 19th, 2021
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. {% extends "learning_logs/base.html" %}
  2.  
  3. {%block content%}
  4. <p><a href="{% url 'learning_logs:topic' topic_id %}">{{'topic}}</a></p>
  5.  
  6. <form action="{% 'learning_logs:new_entry' topic_id %}" method="post">
  7.     {%csrf_token%}
  8.     {{form.as_p}}
  9.     <button name='submit'>add new entry</button>
  10. </form>
  11. {%endblock content%}
  12.  
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement