product_create_dispatch.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {% extends "base_generic.html" %}
  2. {% load static %}
  3. {% load compress %}
  4. {% load crispy_forms_tags %}
  5. {% crispy product product.helper %}
  6. {% crispy credits credits.helper %}
  7. {% block content %}
  8. <link rel="stylesheet" href="{% static "ajaxuploader/css/fileuploader.css" %}">
  9. <style media="screen">
  10. </style>
  11. <div class="container-lg">
  12. <br><br>
  13. <span class=" active boldkur" >
  14. Was für ein Projekt magst du eintragen?
  15. </span>
  16. <br><br>
  17. <button class="border-thin mybtn btn-toggle begleitet_true" style="margin-bottom: 2px; " onclick="window.location='{% url 'neues-projekt-type' type='WOHN' %}'" style="">Wohnprojekt</button><br><br>
  18. <button class="border-thin mybtn btn-toggle begleitet_true" style="margin-bottom: 2px; " onclick="window.location='{% url 'neues-projekt-type' type='MOBI' %}'" style="">Mobilitätsprojekt</button><br><br>
  19. <button class="border-thin mybtn btn-toggle begleitet_true" style="margin-bottom: 2px; " onclick="window.location='{% url 'neues-projekt-type' type='ERNA' %}'" style="">Ernährungsprojekt</button><br><br>
  20. <button class="border-thin mybtn btn-toggle begleitet_true" style="margin-bottom: 2px; " onclick="window.location='{% url 'neues-projekt-type' type='ENER' %}'" style="">Energieprojekt</button>
  21. </div>
  22. <div class="">
  23. &nbsp; &nbsp;
  24. </div>
  25. {% compress js %}
  26. <script src="{% static "ajaxuploader/js/fileuploader.js" %}"></script>
  27. <script src="{% static "file_form/file_form.js" %}"></script>
  28. {% endcompress %}
  29. <script>
  30. $(function() {
  31. initUploadFields($('#upload_mab'));
  32. });
  33. </script>
  34. {% endblock %}