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
from __future__ import unicode_literals | |
from modeltranslation.translator import translator, TranslationOptions | |
from naturnetz.models import Branch, Staffer, StickyNote | |
def translation_options(model, **options): | |
translator.register( | |
model, |
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
import io | |
import os | |
from django import template | |
from django.conf import settings | |
from django.utils.html import mark_safe | |
from webpack_loader import utils | |
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
from django import template | |
from django.template.base import Variable | |
register = template.Library() | |
@register.simple_tag(takes_context=True) | |
def safeimage(context, imagefile, spec): | |
""" |
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
import asyncio | |
from datetime import datetime | |
from channels.consumer import AsyncConsumer | |
# from channels.http import AsgiRequest | |
class AsyncHttpConsumer(AsyncConsumer): | |
async def __call__(self, receive, send): | |
self.send = send |
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
#!/usr/bin/env python3 | |
""" | |
Extract strings:: | |
python3 extract_gettext.py | |
Run tests:: | |
python3 -m doctest -v extract_gettext.py |
OlderNewer