Changes between Version 1 and Version 2 of Ticket #36001


Ignore:
Timestamp:
Dec 11, 2024, 12:47:13 PM (7 days ago)
Author:
Alex
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36001 – Description

    v1 v2  
    2424}}}
    2525python manage.py shell `is correct`
    26 {{{
     26{{{#!python
    2727from osgeo import osr
    2828sk = osr.SpatialReference()
     
    3333}}}
    3434
    35 , but app always throws errors when fetch and create objects
     35but app always throws errors when fetch and create objects via API (in admin.site - ok)
    3636
    37 {{{
     37{{{#!python
    3838def create(self, validated_data):
    3939        if "SRID=300001;" in str(self.validated_data["geom"]):
     
    6060...
    6161}}}
    62 if request one object via api, Django send 8 email with this error. odd
     62if request one object via API, Django send 8 email with this error. odd
Back to Top