Digital Rights Management für elektronische Patientenakten
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.

license_list.html 574B

1234567891011121314151617181920
  1. {% extends "base_generic.html" %}
  2. {% block content %}
  3. <h1>Licenses</h1>
  4. {% if license_list %}
  5. <ul>
  6. {% for license in license_list %}
  7. <li>
  8. {% if request.get_full_path == "/health_view/mylicenses/" %}
  9. <a href="{{ license.get_license_own }}">{{ license.patient }}</a> ({{license.justified}})
  10. {% else %}
  11. <a href="{{ license.get_license_given }}">{{ license.patient }}</a> ({{license.justified}})
  12. {% endif %}
  13. </li>
  14. {% endfor %}
  15. </ul>
  16. {% else %}
  17. <p>There are no Licenses.</p>
  18. {% endif %}
  19. {% endblock %}