A web tip of Django
Project description
django-tctip
一个 Django 应用,用来在页面显示打赏弹框,效果可看我博客 https://tendcode.com/
step 1 安裝包
pip install django-tctip
step 2 配置中添加应用
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django_tctip',
]
step 3 生成数据表
python manage.py makemigrations
python manage.py migrate
step 4 在需要展示的页面添加引入标签函数{% load tctip_tags %},并添加标签函数{% load_tctip %}到html中,建议放在head标签末尾
{% load tctip_tags %}
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="referrer" content="origin">
<title>Title</title>
{% load_tctip %}
</head>
<body>
<div>django-tctip demo test !!!</div>
</body>
</html>
step 5 前往管理界面添加数据即可显示到前台(参数都是可以通过后台配置的,参数的作用可以查看前台注释中描述,比较简单故不做说明)
说明:django-tctip 是将tctip项目封装成了django的应用,感谢原项目 https://github.com/greedying/tctip 作者和删减版 https://github.com/HaddyYang/tctip 作者
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-tctip-1.4.7.tar.gz.
File metadata
- Download URL: django-tctip-1.4.7.tar.gz
- Upload date:
- Size: 24.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90996d9ac8514a8909ea20f09382b5f7d5f670fab184d9dc79b4d51d07c6aa12
|
|
| MD5 |
f42b49044a7b42f73191a5ab0ee37219
|
|
| BLAKE2b-256 |
c0ab61ebf2d96ef408f2f6d9ca0e277991e3f3bfbf426d86d9695235535b3e52
|
File details
Details for the file django_tctip-1.4.7-py3-none-any.whl.
File metadata
- Download URL: django_tctip-1.4.7-py3-none-any.whl
- Upload date:
- Size: 33.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06782fdb40764d9cd39a8df3f54141608729af969fc9de6424c777c3a46e25db
|
|
| MD5 |
7040fc834b3184a53652cc8a900ad3b1
|
|
| BLAKE2b-256 |
d1182f5a4a3bc72b35ca8274f8fd8a201dfb4608cafa3130c168e2956aaf6da4
|