Dieses Repository enthält Python-Dateien die im Rahmen des Wahlpflichtmoduls "Informationssysteme in der Medizintechnik" (Dozent: Prof. Dr. Oliver Hofmann) erstellt wurden und verwaltet deren Versionskontrolle.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

allMessages.html 704B

12345678910111213141516171819202122232425
  1. {% extends 'base.html' %}
  2. {% block title %}
  3. News
  4. {% endblock %}
  5. {% block content %}
  6. <div class="container">
  7. {% for curr_notice in notices %}
  8. <h3>{{ curr_notice.notice_title }}</h3>
  9. <p>{{ curr_notice.notice_text }}</p>
  10. <p><a href ="{% url 'delete' id=curr_notice.id %}" class="btn btn-info" role="button"> Löschen </a> </p>
  11. {% endfor %}
  12. <!--p><a href ="#" class="btn btn-info" role="button"> Neue Nachricht </a> </p-->
  13. <!-- alter Button -> kein Verweis auf die neue view-Funktion namens "new()" -->
  14. <p><a href ="{% url 'new' %}" class="btn btn-info" role="button"> Neue Nachricht </a> </p
  15. </div>
  16. {% endblock %}