Skip to content

Instantly share code, notes, and snippets.

View valbertovc's full-sized avatar
🏠
Working from home

valbertovc valbertovc

🏠
Working from home
  • IFPB - BR | Opeaz - FR
  • João Pessoa, Brasil
  • 23:28 (UTC -03:00)
View GitHub Profile
@valbertovc
valbertovc / admin.py
Created September 26, 2015 15:59
Django Semantic-ui admin filters on change_list
from django.contrib import admin
'''
QuestionAdmin is a example for active this resource in your admin object.
'''
class QuestionAdmin(admin.ModelAdmin):
...
list_filter = ['pub_date']
...
@valbertovc
valbertovc / base.html
Created September 26, 2015 15:53
Django Semantic-ui title and breadcrumbs for admin templates
{% block content_title %}
{% if title %}
<h1 class="ui header">
<div class="content">{{ title }}
<div class="sub header">
{% block breadcrumbs %}
<div class="ui small breadcrumb">
<a class="section" href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
{% if title %}
<i class="right angle icon divider"></i>
@valbertovc
valbertovc / fieldset.html
Created September 26, 2015 15:51
Django help_text as placeholder in admin form field
{% load placehold %}
...
{{ field.label_tag }}
{% if field.is_readonly %}
<p>{{ field.contents }}</p>
{% else %}
{{ field.field|help_text_as_placeholder }}
{% endif %}
@valbertovc
valbertovc / admin.py
Created September 26, 2015 15:45
Django Semantic-ui boolean fields with icons on list_display
from core.utils import SemanticIcons
from django.utils.translation import ugettext_lazy as _
from django.contrib import admin
'''
QuestionAdmin is a example. Use boolean icon in your admin objects.
Created method with boolean value used with SemanticIcons class and added in list_display items.
'''
class QuestionAdmin(admin.ModelAdmin):
@valbertovc
valbertovc / pagination.html
Last active August 26, 2021 16:48
Django Semantic-ui paginator templatetag with arrows
{% load i18n paginator %}
<div class="ui right floated pagination small menu">
{% first_link cl %}
{% previous_link cl %}
{% if pagination_required %}
{% for i in page_range %}
{% paginator_number cl i %}
{% endfor %}
@valbertovc
valbertovc / errorlist.py
Created September 26, 2015 15:28
Django Semantic-ui form field error messages
# -*- coding: utf-8 -*-
from django import template
from django.forms.utils import ErrorList
from core.utils import SemanticErrorList
register = template.Library()
@register.filter
def as_pointing_label(errors):
'''