1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

[NEW] www/py-django-staticinline: Django template tag to load static files inline with your template

Similiar to Django's native static templatetag, but this includes the file
directly in the template, rather than a link to it.

WWW: https://github.com/bartTC/django-staticinline
This commit is contained in:
Kubilay Kocak 2019-09-06 07:39:45 +00:00
parent 3fe355a72d
commit e7b7132bb6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=511283
4 changed files with 28 additions and 0 deletions

View File

@ -1597,6 +1597,7 @@
SUBDIR += py-django-sortedm2m
SUBDIR += py-django-star-ratings
SUBDIR += py-django-statici18n
SUBDIR += py-django-staticinline
SUBDIR += py-django-storages
SUBDIR += py-django-subdomains
SUBDIR += py-django-sudo

View File

@ -0,0 +1,20 @@
# $FreeBSD$
PORTNAME= django-staticinline
PORTVERSION= 1.3.1
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= koobs@FreeBSD.org
COMMENT= Django template tag to load static files inline with your template
LICENSE= MIT
#LICENSE_FILE= Not yet packaged in sdist
USES= python
USE_PYTHON= autoplist distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1567752527
SHA256 (django-staticinline-1.3.1.tar.gz) = 4d936460e8173d3b131379e3af419c42eb3f956efba34ec00eb7972e904d45ce
SIZE (django-staticinline-1.3.1.tar.gz) = 20843

View File

@ -0,0 +1,4 @@
Similiar to Django's native static templatetag, but this includes the file
directly in the template, rather than a link to it.
WWW: https://github.com/bartTC/django-staticinline