| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {% extends "base_generic.html" %}
- {% load static %}
- {% load compress %}
- {% load crispy_forms_tags %}
- {% crispy product product.helper %}
- {% crispy credits credits.helper %}
- {% block content %}
- <link rel="stylesheet" href="{% static "ajaxuploader/css/fileuploader.css" %}">
- <style media="screen">
- </style>
- <div class="container-lg">
- <br><br>
- <span class=" active boldkur" >
- Was für ein Projekt magst du eintragen?
- </span>
- <br><br>
- <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>
- <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>
- <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>
- <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>
- </div>
- <div class="">
-
- </div>
- {% compress js %}
- <script src="{% static "ajaxuploader/js/fileuploader.js" %}"></script>
- <script src="{% static "file_form/file_form.js" %}"></script>
- {% endcompress %}
- <script>
- $(function() {
- initUploadFields($('#upload_mab'));
- });
- </script>
- {% endblock %}
|