You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add `pinax.templates` to your `INSTALLED_APPS` setting:
76
+
77
+
```python
78
+
INSTALLED_APPS= [
79
+
# other apps
80
+
"pinax.templates",
81
+
]
82
+
```
83
+
84
+
85
+
### Usage
86
+
87
+
With pinax-templates installed, all default templates for supported apps are ready for use.
16
88
17
89
## Template Browser
18
90
19
-
These templates have been dressed up with Bootstrap 4 styling at http://templates.pinaxproject.com.
91
+
This project provides a template browser at http://templates.pinaxproject.com.
92
+
Browse there to see each Pinax application template collection, dressed up with Bootstrap 4 styling.
20
93
21
94
On this site, you can browse all the templates in various different states. In
22
95
addition there is a source toggle where you can view the template, see what blocks
23
96
are defined, and easily copy and paste into your project if you want to override
24
-
or customize.
97
+
or customize the template code.
25
98
26
99
## FAQs
27
100
@@ -36,48 +109,49 @@ or customize.
36
109
### How do I change the titles on my pages?
37
110
38
111
39
-
---
40
-
41
-
Pinax
42
-
------
112
+
## Change Log
43
113
44
-
Pinax is an open-source platform built on the Django Web Framework. It is an ecosystem of reusable Django apps, themes, and starter project templates.
114
+
### 1.0.1
45
115
46
-
This collection can be found at http://pinaxproject.com.
116
+
* Update django>=1.11 in requirements
117
+
* Remove pytest from CI
118
+
* Add PyPi-compatible docs in setup.py
119
+
* Revise trove classifiers
120
+
* Improve .gitignore
121
+
* Update CI configuration
47
122
123
+
### 1.0.0
48
124
49
-
Running the Tests
50
-
-------------------
51
-
52
-
```
53
-
$ pip install detox
54
-
$ detox
55
-
```
125
+
* Initial release
56
126
57
127
58
-
Documentation
59
-
---------------
128
+
## Contribute
60
129
61
-
The `pinax-templates` documentation is currently under construction. If you would like to help us write documentation, please join our Pinax Project Slack team and let us know! The Pinax documentation is available at http://pinaxproject.com/pinax/.
130
+
For an overview on how contributing to Pinax works read this [blog post](http://blog.pinaxproject.com/2016/02/26/recap-february-pinax-hangout/)
131
+
and watch the included video, or read our [How to Contribute](http://pinaxproject.com/pinax/how_to_contribute/) section.
132
+
For concrete contribution ideas, please see our
133
+
[Ways to Contribute/What We Need Help With](http://pinaxproject.com/pinax/ways_to_contribute/) section.
62
134
135
+
In case of any questions we recommend you join our [Pinax Slack team](http://slack.pinaxproject.com)
136
+
and ping us there instead of creating an issue on GitHub. Creating issues on GitHub is of course
137
+
also valid but we are usually able to help you faster if you ping us in Slack.
63
138
64
-
Contribute
65
-
----------------
139
+
We also highly recommend reading our blog post on [Open Source and Self-Care](http://blog.pinaxproject.com/2016/01/19/open-source-and-self-care/).
66
140
67
-
See this blog post http://blog.pinaxproject.com/2016/02/26/recap-february-pinax-hangout/ including a video, or our How to Contribute (http://pinaxproject.com/pinax/how_to_contribute/) section for an overview on how contributing to Pinax works. For concrete contribution ideas, please see our Ways to Contribute/What We Need Help With (http://pinaxproject.com/pinax/ways_to_contribute/) section.
68
141
69
-
In case of any questions we recommend you join our Pinax Slack team (http://slack.pinaxproject.com) and ping us there instead of creating an issue on GitHub. Creating issues on GitHub is of course also valid but we are usually able to help you faster if you ping us in Slack.
142
+
## Code of Conduct
70
143
71
-
We also highly recommend reading our Open Source and Self-Care blog post (http://blog.pinaxproject.com/2016/01/19/open-source-and-self-care/).
144
+
In order to foster a kind, inclusive, and harassment-free community, the Pinax Project
145
+
has a [code of conduct](http://pinaxproject.com/pinax/code_of_conduct/).
146
+
We ask you to treat everyone as a smart human programmer that shares an interest in Python, Django, and Pinax with you.
72
147
73
148
74
-
Code of Conduct
75
-
----------------
149
+
## Connect with Pinax
76
150
77
-
In order to foster a kind, inclusive, and harassment-free community, the Pinax Project has a code of conduct, which can be found here http://pinaxproject.com/pinax/code_of_conduct/. We ask you to treat everyone as a smart human programmer that shares an interest in Python, Django, and Pinax with you.
151
+
For updates and news regarding the Pinax Project, please follow us on Twitter [@pinaxproject](https://twitter.com/pinaxproject)
152
+
and check out our [Pinax Project blog](http://blog.pinaxproject.com).
78
153
79
154
80
-
Pinax Project Blog and Twitter
81
-
--------------------------------
155
+
## License
82
156
83
-
For updates and news regarding the Pinax Project, please follow us on Twitter at @pinaxprojectand check out our blog http://blog.pinaxproject.com.
157
+
Copyright (c) 2012-2018 James Tauber and contributors under the [MIT license](https://opensource.org/licenses/MIT).
0 commit comments