Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Samir
django-cas-server
Commits
d099fe40
Commit
d099fe40
authored
Aug 02, 2016
by
Valentin Samir
Browse files
Document cas_server/templatetags
parent
ba590607
Changes
5
Hide whitespace changes
Inline
Side-by-side
cas_server/templatetags/cas_server.py
View file @
d099fe40
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License version 3 for
# more details.
#
# You should have received a copy of the GNU General Public License version 3
# along with this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# (c) 2015-2016 Valentin Samir
"""template tags for the app"""
from
django
import
template
from
django
import
forms
...
...
@@ -6,9 +17,23 @@ register = template.Library()
@
register
.
filter
(
name
=
'is_checkbox'
)
def
is_checkbox
(
field
):
"""
check is a form bound field is a checkbox
:param django.forms.boundfield.BoundField field: A bound field
:return: ``True`` if the field is a checkbox, ``False`` otherwise.
:rtype: bool
"""
return
isinstance
(
field
.
field
.
widget
,
forms
.
CheckboxInput
)
@
register
.
filter
(
name
=
'is_hidden'
)
def
is_hidden
(
field
):
"""
check is a form bound field is hidden
:param django.forms.boundfield.BoundField field: A bound field
:return: ``True`` if the field is hidden, ``False`` otherwise.
:rtype: bool
"""
return
isinstance
(
field
.
field
.
widget
,
forms
.
HiddenInput
)
docs/package/cas_server.rst
View file @
d099fe40
cas_server package
==================
Subpackages
-----------
.. toctree::
cas_server.templatetags
Submodules
----------
...
...
docs/package/cas_server.templatetags.cas_server.rst
0 → 100644
View file @
d099fe40
cas_server.templatetags.cas_server module
=========================================
.. automodule:: cas_server.templatetags.cas_server
:members:
:undoc-members:
:show-inheritance:
docs/package/cas_server.templatetags.rst
0 → 100644
View file @
d099fe40
cas_server.templatetags package
===============================
Submodules
----------
.. toctree::
cas_server.templatetags.cas_server
Module contents
---------------
.. automodule:: cas_server.templatetags
:members:
:undoc-members:
:show-inheritance:
docs/package/cas_server.urls.rst
0 → 100644
View file @
d099fe40
cas_server.urls module
======================
.. automodule:: cas_server.urls
:members:
:undoc-members:
:show-inheritance:
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment