In the models.py (it’s an extended ForeignKey field:
from cms.models.fields import PageField
faq_page_link = PageField()
How to use it in a template?
<a href="{{ instance.get_absolute_url }}">Demo Link to the FAQ Page</a>
Todo: What form widgets are available and how can they be configured on a PageField model field?