forked from enviPath/enviPy
16 lines
312 B
Python
16 lines
312 B
Python
import logging
|
|
|
|
from epdb.template_registry import register_template
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
register_template(
|
|
"epdb.actions.collections.compound",
|
|
"actions/collections/new_pes.html",
|
|
)
|
|
register_template(
|
|
"modals.collections.compound",
|
|
"modals/collections/new_pes_modal.html",
|
|
)
|
|
|