This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_filter('upload_mimes', 'wpopas_remove_custom_upload_mimes'); | |
| function wpopas_remove_custom_upload_mimes( $mimes = array() ) { | |
| //Poista tiedostotyyppi | |
| unset( $mimes['png'] ); | |
| return $mimes; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_filter('upload_mimes', 'wpopas_add_custom_upload_mimes'); | |
| function wpopas_add_custom_upload_mimes( $mimes = array() ) { | |
| // Lisää tiedostotyyppi | |
| $mimes['kmz'] = 'application/vnd.google-earth.kmz'; | |
| return $mimes; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @media screen and (min-width: 800px) and (max-width: 1200px) { | |
| .leftSidebar{ | |
| width: 40%; | |
| float: left; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| img{ | |
| max-width: 100 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| img{ | |
| width: 100% | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class GroupingSampleForm(forms.Form): | |
| username = forms.CharField() | |
| email = forms.EmailField() | |
| real_name = forms.CharField() | |
| favorite_color = forms.CharField() | |
| favorite_animal = forms.ChoiceField( | |
| choices=(('cat', 'Cat'), ('dog', 'Dog') | |
| )) | |
| favorite_food = forms.CharField() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% for field in form %} | |
| {% include "field.html" %} | |
| {% endfor %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% for field in form.hidden_fields %} | |
| {{ field }} | |
| {% endfor %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% hidden_fields %} |